summaryrefslogtreecommitdiff
path: root/src/gui/widgets/popuplist.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-05-05 19:09:02 +0300
committerAndrei Karas <akaras@inbox.ru>2015-05-05 19:09:02 +0300
commit92c019dad798f1a84c5d3e8e8331a885f6458133 (patch)
tree078d58c3b78ed37d23e7292460f4443f5ef799dd /src/gui/widgets/popuplist.h
parente6d251345a48108495d39d82b0ec79deac63d86d (diff)
downloadplus-92c019dad798f1a84c5d3e8e8331a885f6458133.tar.gz
plus-92c019dad798f1a84c5d3e8e8331a885f6458133.tar.bz2
plus-92c019dad798f1a84c5d3e8e8331a885f6458133.tar.xz
plus-92c019dad798f1a84c5d3e8e8331a885f6458133.zip
Add to left classes stong typed Modal enum.
Diffstat (limited to 'src/gui/widgets/popuplist.h')
-rw-r--r--src/gui/widgets/popuplist.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gui/widgets/popuplist.h b/src/gui/widgets/popuplist.h
index db38585d9..a15701d57 100644
--- a/src/gui/widgets/popuplist.h
+++ b/src/gui/widgets/popuplist.h
@@ -21,6 +21,8 @@
#ifndef GUI_WIDGETS_POPUPLIST_H
#define GUI_WIDGETS_POPUPLIST_H
+#include "enums/simpletypes.h"
+
#include "gui/widgets/popup.h"
#include "listeners/focuslistener.h"
@@ -37,8 +39,9 @@ class PopupList final : public Popup,
{
public:
PopupList(DropDown *const widget,
- ListModel *const listModel, bool extended,
- bool modal = false);
+ ListModel *const listModel,
+ const bool extended,
+ const Modal modal = Modal_false);
~PopupList();
@@ -75,7 +78,7 @@ class PopupList final : public Popup,
ScrollArea *mScrollArea;
DropDown *mDropDown;
int mPressedIndex;
- bool mModal;
+ Modal mModal;
};
#endif // GUI_WIDGETS_POPUPLIST_H