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 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) (limited to 'src/gui/windows/textselectdialog.cpp') 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); -- cgit v1.2.3-70-g09d2