summaryrefslogtreecommitdiff
path: root/src/gui/dialogsmanager.cpp
AgeCommit message (Collapse)AuthorFilesLines
2025-07-01Change the wrong, but mostly supported WIN32 macro to the correct _WIN32Fedja Beader1-2/+2
ManaPlus was apparently forked before Mana 8954a7ca0f70bbf1. However, running a bulk sed replace was easier than cherry-picking, resolving 14 years of conflicts and then still having to do a bulk sed to catch the rest. Special thanks to Meway (for attempting to build on windows) and Bjorn (for pointing to that commit) **** mana/verse!211
2025-06-05Change overweight notification from widget to speech bubble.asuratva1-0/+18
Having the widget pop up in the middle of a fight when shooting arrows makes you go below 50% weight is kinda annoying. This changes the notification to a speech bubble on player which is less intrusive. Squashed with: * Move messages to top of branch (so they can be integrated to dialog with fewer changes). * Adjust overweight message. * Fix linter issue. Shortened long line **** mana/plus!184 Co-authored-by: Fedja Beader <fedja@protonmail.ch>
2025-05-24Switch source code headers to ManaVerse & update copyrights to 2025Fedja Beader1-3/+3
.. instead of manaplus's header. & update copyrights to 2025. Open problem: should it be "The ManaVerse Client", "the ManaVerse client" or something in between in "This file is part of ..." line? All caps is current situation. Squashed with: * update copyright dates for 2025 * Revert "Switch to branch of mplint that checks for manaverse copyright headers" * Change back to uppercase The Why? This line was changed 3 times in history and all had an uppercase The. PS: ManaVerse has no endorsment from the parent project, ManaPlus. * Change to "This file is part of the ManaVerse Client" poppet says 'the' instead of 'The' find . \( -name "*.h" -o -name "*.cpp" -o -name "*.cc" -o -name "*.inc" \) -execdir sed -i -e 's/This file is part of The ManaPlus Client/This file is part of the ManaVerse Client/' {} \+ * Change 'The ManaPlus Client' to 'The ManaVerse Client' in headers find . \( -name "*.h" -o -name "*.cpp" -o -name "*.cc" -o -name "*.inc" \) -execdir sed -i -e '2s/ManaPlus/ManaVerse/' {} \+ * Switch to branch of mplint that checks for manaverse copyright headers .. instead of manaplus's **** mana/plus!179
2024-02-09Update copyright headers up to 2023Jesusalva Jesusalva1-1/+2
2019-01-01Update copyright year.Andrei Karas1-1/+1
2018-06-01Remove caption "Message" from message related dialogs.Andrei Karas1-8/+4
2018-05-20Show gm revive button in death dialog if player have rights for @alive command.Andrei Karas1-12/+31
2018-01-04Update copyrights year.Andrei Karas1-1/+1
2017-12-28Remove extra includes.Andrei Karas1-0/+2
2017-12-22Remove default parameters from confirmdialog.hAndrei Karas1-1/+2
2017-09-27Fix some issues with int64 to int32 implicit conversions.Andrei Karas1-1/+1
2017-09-27Change attributes value type to int64.Andrei Karas1-4/+4
2017-08-21Remove useless else.Andrei Karas1-12/+9
2017-06-07Fix clang-tidy check readability-implicit-bool-cast.Andrei Karas1-4/+4
2017-02-28Add paths.xml option overweightPercent for show overweight message.Andrei Karas1-1/+4
Default value: 50
2017-01-03Update copyright year.Andrei Karas1-1/+1
2016-09-23Add missing comments into defines.Andrei Karas1-8/+10
2016-08-29Use time_t for time values.Andrei Karas1-1/+1
2016-01-04Add missing TRANSLATORS comments to translation strings.Andrei Karas1-1/+1
2016-01-02Update copyrights year.Andrei Karas1-1/+1
2015-08-03Add gui mode for dyecmd. Now only basic code added.Andrei Karas1-1/+22
2015-06-14Rename CREATEWIDGET* macroses.Andrei Karas1-6/+6
2015-06-14Use CREATEWIDGET macro in dialogsmanager.Andrei Karas1-16/+20
2015-06-06Fix code style.Andrei Karas1-4/+0
2015-06-03Fix compilation without C++11 flag.Andrei Karas1-1/+1
2015-06-03Convert UpdateType enum into strong typed enum.Andrei Karas1-1/+1
2015-05-29Convert Attributes enum into strong typed enum.Andrei Karas1-1/+1
2015-05-21Call postInit after each window creation.Andrei Karas1-1/+6
2015-05-05Add strong typed bool type in OkDialog.Andrei Karas1-4/+10
2015-05-05Add strong typed bool type for modal bool flag.Andrei Karas1-4/+10
2015-03-17Remove useless includes from .h files.Andrei Karas1-0/+2
2015-03-16Remove useless includes from cpp filesAndrei Karas1-2/+0
2015-02-19Fix virtual overload function closeStorage.Andrei Karas1-1/+1
2015-01-14Prevent from show multiply death dialogs.Andrei Karas1-9/+11
This can happend if server update player health in wrong way.
2015-01-06Move attributes.h into enums directory.Andrei Karas1-1/+1
2015-01-06Move dialogtype.h into enums directory.Andrei Karas1-1/+1
2015-01-01Update copyrights year.Andrei Karas1-1/+1
2014-12-02Move weight notification from playerhander.Andrei Karas1-1/+55
2014-12-02Move death dialog showing from playerhandler.Andrei Karas1-1/+29
2014-09-26Fix code style.Andrei Karas1-1/+0
2014-09-22Move selldialog from window into widgets.Andrei Karas1-1/+2
2014-09-17Remove getter for inventoryHandler.Andrei Karas1-2/+2
2014-08-28Fix code style.Andrei Karas1-0/+4
2014-08-28Removed unused includes.Andrei Karas1-0/+2
2014-08-18Rename buttons in error dialogs from OK to Close.Andrei Karas1-1/+1
2014-08-18Add parameter for button name in okdialog.Andrei Karas1-1/+4
2014-08-18Remove default values from okdialog constructor.Andrei Karas1-1/+2
2014-05-29Move openErrorDialog into DialogsManager.Andrei Karas1-0/+24
2014-05-29Move many variables from client into settings.Andrei Karas1-3/+3
2014-05-28Move dialogs related function into separate file.Andrei Karas1-0/+64