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
L
libksieve
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
libksieve
Commits
15304ade
Commit
15304ade
authored
May 19, 2017
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new regexpeditorlineedit
parent
f22daca5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
81 additions
and
0 deletions
+81
-0
src/ksieveui/CMakeLists.txt
src/ksieveui/CMakeLists.txt
+1
-0
src/ksieveui/autocreatescripts/sieveconditions/widgets/regexpeditorlineedit.cpp
...escripts/sieveconditions/widgets/regexpeditorlineedit.cpp
+40
-0
src/ksieveui/autocreatescripts/sieveconditions/widgets/regexpeditorlineedit.h
...atescripts/sieveconditions/widgets/regexpeditorlineedit.h
+40
-0
No files found.
src/ksieveui/CMakeLists.txt
View file @
15304ade
...
...
@@ -156,6 +156,7 @@ set(ksieveui_autocreatescripts_LIB_SRCS
autocreatescripts/sieveconditions/widgets/selectsizetypecombobox.cpp
autocreatescripts/sieveconditions/widgets/selectsizewidget.cpp
autocreatescripts/sieveconditions/widgets/sievedatespinbox.cpp
autocreatescripts/sieveconditions/widgets/regexpeditorlineedit.cpp
)
set
(
ksieveui_scriptsparsing_LIB_SRCS
...
...
src/ksieveui/autocreatescripts/sieveconditions/widgets/regexpeditorlineedit.cpp
0 → 100644
View file @
15304ade
/*
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 "regexpeditorlineedit.h"
#include <QHBoxLayout>
#include <QLineEdit>
using
namespace
KSieveUi
;
RegexpEditorLineEdit
::
RegexpEditorLineEdit
(
QWidget
*
parent
)
:
KSieveUi
::
AbstractRegexpEditorLineEdit
(
parent
)
{
}
RegexpEditorLineEdit
::~
RegexpEditorLineEdit
()
{
}
void
RegexpEditorLineEdit
::
switchToRegexpEditorLineEdit
()
{
//TODO
}
src/ksieveui/autocreatescripts/sieveconditions/widgets/regexpeditorlineedit.h
0 → 100644
View file @
15304ade
/*
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 REGEXPEDITORLINEEDIT_H
#define REGEXPEDITORLINEEDIT_H
#include <KSieveUi/AbstractRegexpEditorLineEdit>
class
QLineEdit
;
namespace
KSieveUi
{
class
RegexpEditorLineEdit
:
public
KSieveUi
::
AbstractRegexpEditorLineEdit
{
Q_OBJECT
public:
explicit
RegexpEditorLineEdit
(
QWidget
*
parent
=
nullptr
);
~
RegexpEditorLineEdit
();
void
switchToRegexpEditorLineEdit
()
Q_DECL_OVERRIDE
;
private:
QLineEdit
*
mLineEdit
;
};
}
#endif // REGEXPEDITORLINEEDIT_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