summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabs/chat/chattab.cpp
AgeCommit message (Collapse)AuthorFilesLines
2025-06-30Fixing windows supportMeway1-1/+1
Changes to be committed: modified: CMake/Modules/FindLibIntl.cmake modified: CMakeLists.txt modified: src/CMakeLists.txt modified: src/Makefile.am modified: src/chatlogger.cpp modified: src/configmanager.cpp modified: src/debug/nvwa/debug_new.cpp modified: src/debug/nvwa/fast_mutex.h modified: src/defaults.cpp modified: src/dirs.cpp modified: src/enums/input/inputaction.h modified: src/enums/state.h modified: src/fs/files.cpp modified: src/fs/mkdir.cpp modified: src/fs/paths.cpp modified: src/fs/specialfolder.cpp modified: src/fs/specialfolder.h modified: src/fs/virtfs/fs.cpp modified: src/fs/virtfs/fsdir.cpp modified: src/game.cpp modified: src/graphicsmanager.cpp modified: src/gui/dialogsmanager.cpp modified: src/gui/palette.cpp modified: src/gui/widgets/tabs/chat/chattab.cpp modified: src/gui/widgets/tabs/setup_misc.cpp modified: src/gui/widgets/tabs/setup_video.cpp modified: src/gui/widgets/tabs/setup_visual.cpp modified: src/gui/windowmanager.cpp modified: src/gui/windows/killstats.cpp modified: src/gui/windows/serverdialog.cpp modified: src/gui/windows/updaterwindow.cpp modified: src/logger.cpp modified: src/main.cpp modified: src/main.h modified: src/maingui.cpp modified: src/mumblemanager.cpp modified: src/particle/particleemitterprop.h modified: src/progs/dyecmd/client.cpp modified: src/progs/manaverse/client.cpp modified: src/render/opengl/mgl.hpp modified: src/render/opengl/mglfunctions.h modified: src/render/opengl/mgltypes.h modified: src/resources/wallpaper.cpp modified: src/sdl2gfx/SDL2_rotozoom.cpp modified: src/sdl2gfx/SDL2_rotozoom.h modified: src/test/testlauncher.cpp modified: src/test/testlauncher.h modified: src/unittests/fs/files.cc modified: src/utils/copynpaste.cpp modified: src/utils/env.cpp modified: src/utils/gettexthelper.cpp modified: src/utils/process.cpp modified: src/utils/stringutils.cpp modified: src/utils/xml/libxml.cpp
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-10-11Remove redundant nullptr checkFedja Beader1-1/+1
Curiously, this increases -g -O2 exe size by 96 bytes, but disassembly dump around this code is the same (redundant check was already optimised out?) **** mana/plus!106
2024-05-29Switch "show chat history" into a line limit field and considerablyFedja Beader1-4/+6
raise default (5->100).
2024-05-16Refactor loadFromLogFile calls into ChatTab contructorFedja Beader1-0/+3
This has the side effect that now #Debug history is also loaded. **** mana/plus!84
2024-02-09Update copyright headers up to 2023Jesusalva Jesusalva1-1/+2
2023-10-13Allow users to set their own timestamp formats.Fedja Beader1-1/+3
2023-10-13Use strftime to format timestamps.Fedja Beader1-4/+18
+Provide visible fallbacks if either strftime or gmtime/localtime failed. Appease mplint
2023-10-12Use gmtime() for non-local-time chat timestampsFedja Beader1-22/+9
2019-01-01Update copyright year.Andrei Karas1-1/+1
2018-11-27Remove extra ; from different code.Andrei Karas1-2/+2
2018-02-15Remove unused channel parameter from talk methods.Andrei Karas1-2/+1
2018-01-04Update copyrights year.Andrei Karas1-1/+1
2017-12-24Remove default parameters from browserbox.Andrei Karas1-1/+2
2017-12-24Remove default parameters from scrollarea.Andrei Karas1-1/+2
2017-12-11Remove default parameters from ChatTab::chatLog.Andrei Karas1-2/+6
2017-09-09Add workaround for fix alt-tab issue in SDL2.Andrei Karas1-1/+2
Also add option to enable/disable this workaround.
2017-09-05Fix crash if enter simple text into chat window before connecting to server.Andrei Karas1-2/+5
2017-06-21Remove browserboxmode.Andrei Karas1-1/+1
2017-06-19Add function updateSize into browserbox.Andrei Karas1-1/+1
2017-06-18Fix asserts in browserbox on resize.Andrei Karas1-0/+1
2017-06-07Fix clang-tidy check readability-implicit-bool-cast.Andrei Karas1-16/+20
2017-05-02Remove extra includes.Andrei Karas1-1/+0
2017-05-01Remove ServerFeatures::haveNativeGuilds and ServerFeatures::haveChatChannels.Andrei Karas1-1/+2
2017-01-27Move browserboxmode into separate file.Andrei Karas1-1/+1
Also convert it to strong typed enum.
2017-01-03Update copyright year.Andrei Karas1-1/+1
2016-09-23Add missing comments into defines.Andrei Karas1-1/+1
2016-09-17Add strong typed bool Opaque.Andrei Karas1-3/+3
2016-06-04Show hightlighted messages in chat also if tab active but window minimized ↵Andrei Karas1-6/+8
or no input focus.
2016-04-21Convert chattabtype into strong typed enum.Andrei Karas1-1/+1
2016-03-12Dont highlight server messages in chat channels.Andrei Karas1-2/+4
2016-02-27Add exception to seach chat command. It not run search for special chars.Andrei Karas1-1/+10
2016-02-08Add some missing const.Andrei Karas1-1/+1
2016-02-07Replace most static_cast<Type> to shorter versions from defines.Andrei Karas1-2/+2
2016-01-29Fix code style.Andrei Karas1-4/+0
2016-01-25Move help window to top on first time open it from chat with commands like ↵Andrei Karas1-0/+3
"?key"
2016-01-16Add function for replace item links in chat.Andrei Karas1-36/+1
2016-01-02Update copyrights year.Andrei Karas1-1/+1
2015-12-14Move soundconsts.h into const directory.Andrei Karas1-1/+2
2015-06-06Fix code style.Andrei Karas1-0/+2
2015-05-30Convert ChatMsgType enum into strong typed enum.Andrei Karas1-2/+2
2015-05-24From ChatTab::chatLog removed default parameter for message owner type.Andrei Karas1-2/+4
2015-05-24Add strong typed bool type TryRemoveColors.Andrei Karas1-3/+4
2015-05-24Add strong typed bool type IgnoreRecord.Andrei Karas1-3/+8
2015-05-24Add strong typed bool type Online.Andrei Karas1-2/+2
2015-03-17Remove useless includes from .h files.Andrei Karas1-0/+4
2015-02-19Fix virtual overload function handleCommand.Andrei Karas1-2/+2
2015-01-01Update copyrights year.Andrei Karas1-1/+1
2014-10-13eathena: show channel messages in channel tab.Andrei Karas1-1/+3
2014-10-12Add log file name into chattab.Andrei Karas1-4/+10