Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KDE PIM Add-ons
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PIM
KDE PIM Add-ons
Commits
193d58ed
Commit
193d58ed
authored
Jun 12, 2017
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prepare templateparser plugin
parent
207ff65a
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
69 additions
and
1 deletion
+69
-1
CMakeLists.txt
CMakeLists.txt
+1
-1
plugins/CMakeLists.txt
plugins/CMakeLists.txt
+1
-0
plugins/templateparser/CMakeLists.txt
plugins/templateparser/CMakeLists.txt
+0
-0
plugins/templateparser/autotests/CMakeLists.txt
plugins/templateparser/autotests/CMakeLists.txt
+0
-0
plugins/templateparser/templateparseremailaddressrequesterakonadi.cpp
...lateparser/templateparseremailaddressrequesterakonadi.cpp
+34
-0
plugins/templateparser/templateparseremailaddressrequesterakonadi.h
...mplateparser/templateparseremailaddressrequesterakonadi.h
+33
-0
No files found.
CMakeLists.txt
View file @
193d58ed
...
...
@@ -70,7 +70,7 @@ set(LIBKLEO_LIB_VERSION "5.5.40")
set
(
AKONADI_LIB_VERSION
"5.5.40"
)
set
(
INCIDENCEEDITOR_LIB_VERSION
"5.5.40"
)
set
(
KTNEF_LIB_VERSION
"5.5.40"
)
set
(
MESSAGELIB_LIB_VERSION
"5.5.4
4
"
)
set
(
MESSAGELIB_LIB_VERSION
"5.5.4
9
"
)
set
(
AKONADICALENDAR_LIB_VERSION
"5.5.40"
)
set
(
CALENDAR_UTILS_VERSION
"5.5.40"
)
set
(
KPIMTEXTEDIT_LIB_VERSION
"5.5.40"
)
...
...
plugins/CMakeLists.txt
View file @
193d58ed
...
...
@@ -5,3 +5,4 @@ add_subdirectory(messageviewer)
add_subdirectory
(
plasma
)
add_subdirectory
(
webengineurlinterceptor
)
add_subdirectory
(
templateparser
)
plugins/templateparser/CMakeLists.txt
0 → 100644
View file @
193d58ed
plugins/templateparser/autotests/CMakeLists.txt
0 → 100644
View file @
193d58ed
plugins/templateparser/templateparseremailaddressrequesterakonadi.cpp
0 → 100644
View file @
193d58ed
/*
Copyright (C) 2017 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "templateparseremailaddressrequesterakonadi.h"
#include <QHBoxLayout>
TemplateParserEmailAddressRequesterAkonadi
::
TemplateParserEmailAddressRequesterAkonadi
(
QWidget
*
parent
)
:
TemplateParser
::
TemplateParserEmailAddressRequesterBase
(
parent
)
{
QHBoxLayout
*
mainLayout
=
new
QHBoxLayout
(
this
);
mainLayout
->
setMargin
(
0
);
}
TemplateParserEmailAddressRequesterAkonadi
::~
TemplateParserEmailAddressRequesterAkonadi
()
{
}
plugins/templateparser/templateparseremailaddressrequesterakonadi.h
0 → 100644
View file @
193d58ed
/*
Copyright (C) 2017 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef TEMPLATEPARSEREMAILADDRESSREQUESTERAKONADI_H
#define TEMPLATEPARSEREMAILADDRESSREQUESTERAKONADI_H
#include <TemplateParser/TemplateParserEmailAddressRequesterBase>
class
TemplateParserEmailAddressRequesterAkonadi
:
public
TemplateParser
::
TemplateParserEmailAddressRequesterBase
{
Q_OBJECT
public:
explicit
TemplateParserEmailAddressRequesterAkonadi
(
QWidget
*
parent
=
nullptr
);
~
TemplateParserEmailAddressRequesterAkonadi
();
};
#endif // TEMPLATEPARSEREMAILADDRESSREQUESTERAKONADI_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment