From 92c019dad798f1a84c5d3e8e8331a885f6458133 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 5 May 2015 19:09:02 +0300 Subject: Add to left classes stong typed Modal enum. --- src/gui/widgets/popuplist.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/gui/widgets/popuplist.cpp') diff --git a/src/gui/widgets/popuplist.cpp b/src/gui/widgets/popuplist.cpp index e695c734b..c459fe351 100644 --- a/src/gui/widgets/popuplist.cpp +++ b/src/gui/widgets/popuplist.cpp @@ -30,7 +30,8 @@ PopupList::PopupList(DropDown *const widget, ListModel *const listModel, - bool extended, bool modal) : + const bool extended, + const Modal modal) : Popup("PopupList", "popuplist.xml"), FocusListener(), mListModel(listModel), @@ -88,7 +89,7 @@ void PopupList::show(int x, int y) setPosition(x, y); setVisible(true); requestMoveToTop(); - if (mModal) + if (mModal == Modal_true) requestModalFocus(); } @@ -153,7 +154,7 @@ void PopupList::mouseReleased(MouseEvent& event) if (mDropDown) mDropDown->updateSelection(); setVisible(false); - if (mModal) + if (mModal == Modal_true) releaseModalFocus(); } @@ -169,7 +170,7 @@ void PopupList::focusGained(const Event& event) if (mDropDown) mDropDown->updateSelection(); setVisible(false); - if (mModal) + if (mModal == Modal_true) releaseModalFocus(); } -- cgit v1.2.3-70-g09d2