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/CMakeLists.txt | 1 + src/Makefile.am | 1 + src/enums/simpletypes/allowquit.h | 33 +++++++++++++++++++++++++++++++++ src/gui/windows/textselectdialog.cpp | 24 ++++++++++++++++++------ src/gui/windows/textselectdialog.h | 6 +++++- src/net/eathena/skillrecv.cpp | 3 ++- 6 files changed, 60 insertions(+), 8 deletions(-) create mode 100644 src/enums/simpletypes/allowquit.h (limited to 'src') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a4fb9bed4..114a793ad 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1163,6 +1163,7 @@ SET(SRCS enums/state.h enums/textcommandtype.h enums/simpletypes/advanced.h + enums/simpletypes/allowquit.h enums/simpletypes/allowsort.h enums/simpletypes/allplayers.h enums/simpletypes/append.h diff --git a/src/Makefile.am b/src/Makefile.am index 1884936ea..bb54a285c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -612,6 +612,7 @@ SRC += events/actionevent.h \ enums/state.h \ enums/textcommandtype.h \ enums/simpletypes/advanced.h \ + enums/simpletypes/allowquit.h \ enums/simpletypes/allowsort.h \ enums/simpletypes/allplayers.h \ enums/simpletypes/append.h \ diff --git a/src/enums/simpletypes/allowquit.h b/src/enums/simpletypes/allowquit.h new file mode 100644 index 000000000..22663b1c4 --- /dev/null +++ b/src/enums/simpletypes/allowquit.h @@ -0,0 +1,33 @@ +/* + * The ManaPlus Client + * Copyright (C) 2015-2016 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef ENUMS_SIMPLETYPES_ALLOWQUIT_H +#define ENUMS_SIMPLETYPES_ALLOWQUIT_H + +#include "enums/simpletypes/booldefines.h" + +PRAGMA6("GCC diagnostic push") +PRAGMA6("GCC diagnostic ignored \"-Wunused-const-variable\"") + +defBoolEnum(AllowQuit); + +PRAGMA6("GCC diagnostic pop") + +#endif // ENUMS_SIMPLETYPES_ALLOWQUIT_H 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; }; diff --git a/src/net/eathena/skillrecv.cpp b/src/net/eathena/skillrecv.cpp index 4aac4907e..35d36f866 100644 --- a/src/net/eathena/skillrecv.cpp +++ b/src/net/eathena/skillrecv.cpp @@ -361,7 +361,8 @@ void SkillRecv::processSkillWarpPoint(Net::MessageIn &msg) // TRANSLATORS: warp select window name _("Select warp target"), // TRANSLATORS: warp select button - _("Warp")); + _("Warp"), + AllowQuit_false); skillWarpListener.setDialog(dialog); skillWarpListener.setSkill(skillId); dialog->addActionListener(&skillWarpListener); -- cgit v1.2.3-70-g09d2