Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
PIM Messagelib
Commits
4df70b9f
Commit
4df70b9f
authored
May 03, 2021
by
Laurent Montel
😁
Browse files
Start to implement filter menu
parent
8eaa0f5e
Pipeline
#60589
passed with stage
in 39 minutes and 47 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
messagelist/src/CMakeLists.txt
View file @
4df70b9f
...
...
@@ -32,6 +32,7 @@ set(libmessagelist_SRCS
core/widgets/searchlinestatus.cpp
core/widgets/searchcollectionindexingwarning.cpp
core/widgets/tablockedwarning.cpp
core/widgets/filtersavedmenu.cpp
utils/aggregationcombobox.cpp
...
...
messagelist/src/core/widgets/filtersavedmenu.cpp
0 → 100644
View file @
4df70b9f
/*
SPDX-FileCopyrightText: 2021 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "filtersavedmenu.h"
using
namespace
MessageList
::
Core
;
FilterSavedMenu
::
FilterSavedMenu
(
QWidget
*
parent
)
:
QMenu
(
parent
)
{
connect
(
this
,
&
FilterSavedMenu
::
aboutToShow
,
this
,
&
FilterSavedMenu
::
slotShowMenu
);
}
FilterSavedMenu
::~
FilterSavedMenu
()
{
}
void
FilterSavedMenu
::
slotShowMenu
()
{
// TODO
}
messagelist/src/core/widgets/filtersavedmenu.h
0 → 100644
View file @
4df70b9f
/*
SPDX-FileCopyrightText: 2021 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <QMenu>
#include <QObject>
namespace
MessageList
{
namespace
Core
{
class
FilterSavedMenu
:
public
QMenu
{
Q_OBJECT
public:
explicit
FilterSavedMenu
(
QWidget
*
parent
=
nullptr
);
~
FilterSavedMenu
()
override
;
private:
void
slotShowMenu
();
};
}
}
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