From 39f265e503e11f2e48e7a54129f216b55e288ac3 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 20 Mar 2016 23:31:01 +0300 Subject: Not allow close warp dialog until select warp target. --- src/gui/windows/textselectdialog.cpp | 24 ++++++++++++++++++------ src/gui/windows/textselectdialog.h | 6 +++++- 2 files changed, 23 insertions(+), 7 deletions(-) (limited to 'src/gui') diff --git a/src/gui/windows/textselectdialog.cpp b/src/gui/windows/textselectdialog.cpp index dbc34bfaf..ebbee9528 100644 --- a/src/gui/windows/textselectdialog.cpp +++ b/src/gui/windows/textselectdialog.cpp @@ -40,7 +40,8 @@ #include "debug.h" TextSelectDialog::TextSelectDialog(const std::string &name, - const std::string &selectButton) : + const std::string &selectButton, + const AllowQuit allowQuit) : // TRANSLATORS: sell dialog name Window(name, Modal_false, nullptr, "sell.xml"), ActionListener(), @@ -52,6 +53,7 @@ TextSelectDialog::TextSelectDialog(const std::string &name, mItemList(nullptr), mScrollArea(nullptr), mModel(nullptr), + mAllowQuit(allowQuit), mTag(0) { } @@ -60,7 +62,7 @@ void TextSelectDialog::postInit() { setWindowName("TextSelectDialog"); setResizable(true); - setCloseButton(true); + setCloseButton(mAllowQuit == AllowQuit_true); setStickyButtonLock(true); setMinWidth(260); setMinHeight(220); @@ -83,8 +85,11 @@ void TextSelectDialog::postInit() mSelectButtonName, "select", this); - // TRANSLATORS: sell dialog button - mQuitButton = new Button(this, _("Quit"), "quit", this); + if (mAllowQuit == AllowQuit_true) + { + // TRANSLATORS: sell dialog button + mQuitButton = new Button(this, _("Quit"), "quit", this); + } mSelectButton->setEnabled(false); @@ -97,8 +102,15 @@ void TextSelectDialog::postInit() placer = getPlacer(0, 0); placer(0, 0, mScrollArea, 8, 5).setPadding(3); - placer(6, 5, mSelectButton); - placer(7, 5, mQuitButton); + if (mQuitButton) + { + placer(6, 5, mSelectButton); + placer(7, 5, mQuitButton); + } + else + { + placer(7, 5, mSelectButton); + } Layout &layout = getLayout(); layout.setRowHeight(0, LayoutType::SET); diff --git a/src/gui/windows/textselectdialog.h b/src/gui/windows/textselectdialog.h index 800f7cee4..70da4ad5e 100644 --- a/src/gui/windows/textselectdialog.h +++ b/src/gui/windows/textselectdialog.h @@ -25,6 +25,8 @@ #include "gui/widgets/window.h" +#include "enums/simpletypes/allowquit.h" + #include "listeners/actionlistener.h" #include "listeners/selectionlistener.h" @@ -42,7 +44,8 @@ class TextSelectDialog notfinal : public Window, * Constructor. */ TextSelectDialog(const std::string &name, - const std::string &selectButton); + const std::string &selectButton, + const AllowQuit allowQuit); A_DELETE_COPY(TextSelectDialog) @@ -94,6 +97,7 @@ class TextSelectDialog notfinal : public Window, ListBox *mItemList A_NONNULLPOINTER; ScrollArea *mScrollArea A_NONNULLPOINTER; NamesModel *mModel A_NONNULLPOINTER; + AllowQuit mAllowQuit; int mTag; }; -- cgit v1.2.3-60-g2f50