diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-18 18:37:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-18 18:37:10 +0300 |
commit | 2b4110a217110dfe9919fa3cc70e41c6920ac597 (patch) | |
tree | c74a6708f184a3866b58d40dd79c00ba327d37ac /src/gui | |
parent | be7d563ba1e0b20cfe397f2cf4da6f7e3df78d22 (diff) | |
download | plus-2b4110a217110dfe9919fa3cc70e41c6920ac597.tar.gz plus-2b4110a217110dfe9919fa3cc70e41c6920ac597.tar.bz2 plus-2b4110a217110dfe9919fa3cc70e41c6920ac597.tar.xz plus-2b4110a217110dfe9919fa3cc70e41c6920ac597.zip |
Fix ok dialog resize issue.
Also allow set from ouside preferred width.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/okdialog.cpp | 9 | ||||
-rw-r--r-- | src/gui/okdialog.h | 3 |
2 files changed, 7 insertions, 5 deletions
diff --git a/src/gui/okdialog.cpp b/src/gui/okdialog.cpp index 22ae9d41a..5a2e39022 100644 --- a/src/gui/okdialog.cpp +++ b/src/gui/okdialog.cpp @@ -37,14 +37,15 @@ OkDialog::OkDialog(const std::string &title, const std::string &msg, const int soundEvent, const bool modal, - const bool showCenter, Window *const parent): + const bool showCenter, Window *const parent, + const int minWidth) : Window(title, modal, parent, "ok.xml"), ActionListener(), mTextBox(new TextBox) { mTextBox->setEditable(false); mTextBox->setOpaque(false); - mTextBox->setTextWrapped(msg, 260); + mTextBox->setTextWrapped(msg, minWidth); Button *const okButton = new Button(_("OK"), "ok", this); @@ -58,8 +59,8 @@ OkDialog::OkDialog(const std::string &title, const std::string &msg, if (width < okButton->getWidth()) width = okButton->getWidth(); - setContentSize(mTextBox->getMinWidth() + fontHeight, height + - fontHeight + okButton->getHeight()); + width = mTextBox->getWidth() + fontHeight; + setContentSize(width, height + fontHeight + okButton->getHeight()); mTextBox->setPosition(getPadding(), getPadding()); // 8 is the padding that GUIChan adds to button widgets diff --git a/src/gui/okdialog.h b/src/gui/okdialog.h index be6d73c49..7c03b8a93 100644 --- a/src/gui/okdialog.h +++ b/src/gui/okdialog.h @@ -53,7 +53,8 @@ class OkDialog final : public Window, public gcn::ActionListener */ OkDialog(const std::string &title, const std::string &msg, const int soundEvent = DIALOG_OK, const bool modal = true, - const bool showCenter = true, Window *const parent = nullptr); + const bool showCenter = true, Window *const parent = nullptr, + const int minWidth = 260); A_DELETE_COPY(OkDialog) |