summaryrefslogtreecommitdiff
path: root/src/gui/windows/chatwindow.cpp
AgeCommit message (Collapse)AuthorFilesLines
2025-06-25Split #include "utils/performance.h" out of localconsts.hFedja Beader1-0/+1
only about 160 out of 1500 files that include localconsts.h need to include performance.h Saves 12% from compile times (with profiler ON) and 0.1% with profiler OFF. **** mana/plus!189
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-05-16Refactor loadFromLogFile calls into ChatTab contructorFedja Beader1-4/+0
This has the side effect that now #Debug history is also loaded. **** mana/plus!84
2024-02-16Client rebranding: Partly import changes from !28Jesusalva Jesusalva1-1/+5
Co-Authored-By: jak1 <jak1@themanaworld.org> Co-Authored-By: jesusalva <jesusalva@themanaworld.org> Co-Authored-By: Fedja Beader <fedja@protonmail.ch>
2021-03-12fix manaplus2/manaplus#9 : limited the check to tmwa, not needed for evol/hercJesusaves1-2/+5
2020-05-07Fix code style after merged switch port codeAndrei Karas1-2/+3
2020-04-26switch: actually send "chatinput" action on new software keyboard textcpasjuste1-0/+11
switch: toggle software keyboard on textfield focus change
2020-02-23Fix some code style issuesAndrei Karas1-3/+3
2019-10-16Fix code style, ignore some warning in clang-tidyAndrei Karas1-2/+2
2019-09-30Add missing static keywordsAndrei Karas1-1/+1
2019-01-01Update copyright year.Andrei Karas1-1/+1
2018-11-27Remove extra ; from different code.Andrei Karas1-4/+4
2018-10-29Fix code style.Andrei Karas1-1/+1
2018-04-02Add some missing brackets in macroses.Andrei Karas1-1/+1
2018-03-09Add skin parameter to all button constructors.Andrei Karas1-1/+1
2018-02-16Replace file type from stream to FILE in logger.Andrei Karas1-0/+1
This will allow log data from C libs.
2018-01-16Fix code style.Andrei Karas1-1/+1
2018-01-04Update copyrights year.Andrei Karas1-1/+1
2017-12-27Remove default parameters from window.Andrei Karas1-1/+1
2017-12-26Remove default parameters from dropdown.Andrei Karas1-1/+2
2017-12-22Remove default parameters from chatwindow.hAndrei Karas1-3/+5
2017-12-11Remove default parameters from ChatTab::chatLog.Andrei Karas1-12/+44
2017-09-27Change player job level, exp from stat object to attribute.Andrei Karas1-23/+19
2017-09-27Rename Attributes::PLAYER_LEVEL to Attributes::PLAYER_BASE_LEVEL.Andrei Karas1-1/+1
2017-09-27Change attributes value type to int64.Andrei Karas1-5/+7
2017-09-05Fix drawing emotes button in chat input field.Andrei Karas1-5/+12
2017-08-30Move some variables to better scope.Andrei Karas1-7/+9
2017-08-24Fix duplicating assert message created after connected to server for some ↵Andrei Karas1-0/+6
seconds.
2017-08-21Remove useless else.Andrei Karas1-8/+3
2017-08-14Fix some pointer to bool conversions.Andrei Karas1-1/+1
2017-07-12Rename gm level into group id in localplayer.cppAndrei Karas1-1/+1
2017-06-30Allow open chat window with debug tab before connecting to game.Andrei Karas1-3/+5
2017-06-29Move foreach macroses into separate file.Andrei Karas1-0/+1
2017-06-11Rename player_relations into playerRelations.Andrei Karas1-3/+3
2017-06-08Replace ext.compare to direct string comparison.Andrei Karas1-3/+3
2017-06-08Remove useless string initialisations.Andrei Karas1-1/+1
2017-06-07Fix clang-tidy check readability-implicit-bool-cast.Andrei Karas1-100/+108
2017-05-08Fix wrong checks after removing some server features.Andrei Karas1-2/+2
2017-05-05Rename virtfstools into tools.Andrei Karas1-1/+1
2017-05-02Remove extra includes.Andrei Karas1-1/+0
2017-05-01Remove ServerFeatures::haveNativeGuilds and ServerFeatures::haveChatChannels.Andrei Karas1-3/+5
2017-04-06Add quick messages with translation from current server language to default.Andrei Karas1-0/+18
For use it open emotes/fonts in chat and select T tab.
2017-04-04Reserve some characters sequence for future usage in chat messages.Andrei Karas1-0/+4
2017-03-28Move virtfstools into virtfs directory.Andrei Karas1-1/+1
2017-02-21Move virt fs related files into fs directory.Andrei Karas1-1/+2
2017-02-14Move some virtfs replated functions from files.cpp into virtfstools.cppAndrei Karas1-2/+2
2017-01-03Update copyright year.Andrei Karas1-1/+1
2016-12-23Fix style issues.Andrei Karas1-6/+3
2016-12-10Fix some issues found by automatic checks.Andrei Karas1-5/+5
2016-09-23Add missing comments into defines.Andrei Karas1-3/+5