summaryrefslogtreecommitdiff
path: root/src/gui/chat.cpp
AgeCommit message (Collapse)AuthorFilesLines
2009-01-08Made remaining dialogs translatableBjørn Lindeijer1-93/+99
Most strings are now translatable. Please do report any missing ones. Strings excluded from translation are anything that gets written to the log file or is otherwise not shown in the GUI. Signed-off-by: Bjørn Lindeijer <bjorn@lindeijer.nl>
2009-01-06Fixed up and down arrows in chat box.Guillaume Melquiond1-5/+9
(cherry picked from commit cb04d148c9aed572fe6e66313100e2cd9b66f5d5) Conflicts: src/gui/chat.cpp
2008-12-09Fixed two issues with the chat message parsingBjørn Lindeijer1-6/+17
Don't treat anything starting with "Welcome" as a server message, for example messages starting with a name that starts with "Welcome" shouldn't belong in that category. Put the nick in the right place for global announcements. Signed-off-by: Bjørn Lindeijer <bjorn@lindeijer.nl>
2008-12-07Fixed inconsistency in default window sizesBjørn Lindeijer1-3/+4
The default window sizes were all too small, since they were specified in content size. On pressing "Reset Windows", the sizes would be interpreted as such and apply alright. The inconsistency is now removed, and the default window sizes are always the size of the whole widget now, not just the contents. Signed-off-by: Bjørn Lindeijer <bjorn@lindeijer.nl>
2008-12-07Merge commit 'a7c21e6f8add37af7412449742ec55c8daa8571a'Ira Rice1-22/+36
Conflicts: AUTHORS CMakeLists.txt ChangeLog INSTALL README aethyra.cbp configure.ac data/help/changes.txt data/help/commands.txt data/help/header.txt data/help/support.txt src/Makefile.am src/aethyra.rc src/being.cpp src/being.h src/equipment.cpp src/equipment.h src/floor_item.h src/game.cpp src/gui/buddywindow.cpp src/gui/char_select.cpp src/gui/char_server.cpp src/gui/chat.cpp src/gui/chat.h src/gui/equipmentwindow.cpp src/gui/equipmentwindow.h src/gui/gui.cpp src/gui/inventorywindow.cpp src/gui/inventorywindow.h src/gui/itemcontainer.cpp src/gui/itemcontainer.h src/gui/minimap.cpp src/gui/ministatus.cpp src/gui/newskill.cpp src/gui/npc_text.cpp src/gui/npclistdialog.h src/gui/ok_dialog.cpp src/gui/setup_video.cpp src/gui/skill.cpp src/gui/skill.h src/gui/status.h src/gui/table_model.h src/gui/updatewindow.cpp src/gui/viewport.cpp src/inventory.cpp src/inventory.h src/keyboardconfig.cpp src/keyboardconfig.h src/localplayer.cpp src/localplayer.h src/logindata.h src/main.cpp src/map.cpp src/monster.cpp src/monster.h src/net/beinghandler.cpp src/net/beinghandler.h src/net/buysellhandler.cpp src/net/equipmenthandler.cpp src/net/loginhandler.cpp src/net/loginhandler.h src/net/network.h src/net/npchandler.cpp src/net/playerhandler.cpp src/net/protocol.h src/net/tradehandler.cpp src/npc.cpp src/npc.h src/particleemitter.cpp src/particleemitterprop.h src/player.cpp src/player.h src/player_relations.cpp src/resources/imageset.cpp src/resources/imageset.h src/resources/itemdb.cpp src/resources/mapreader.cpp src/resources/monsterinfo.h src/text.cpp src/text.h src/textmanager.cpp src/textmanager.h src/tileset.h src/utils/fastsqrt.h src/utils/strprintf.cpp src/winver.h tools/tmxcopy/Makefile tools/tmxcopy/base64.cpp tools/tmxcopy/base64.h tools/tmxcopy/tostring.h Signed-off-by: Ira Rice <irarice@gmail.com>
2008-12-06Minor punctuation fix, merged earlier /whisper fix/help update with separate ↵Fate1-2/+2
fix for same issue
2008-12-06Merge branch 'master' of git@gitorious.org:tmw/eathenaFate1-3/+6
2008-12-06Fixes to the /w commandFate1-2/+4
2008-12-06Made /where response include position informationBjørn Lindeijer1-1/+4
Change ported from Aethyra.
2008-12-06Fix whisperingJared Adams1-2/+2
2008-12-05added /w shortcut for whisperingFate1-29/+35
2008-11-18Pedantic fixes to the client, where I alphabetized all of the include Ira Rice1-7/+5
statements, as well as removing the new skill dialog, which we do not, nor will we use (if we do, it'd be a new one that we'd make). WARNING!!! This, and all other previous builds have a linker error for the Gnome libraries version 4.3.2 on my setup. It's assumed that this is also the case for other users of this library as well. I'm currently assuming that there's a bug in the compiler itself, and will look into reporting this, but in the mean time, it doesn't build for these users, unfortunately. Sorry about this.
2008-11-16Got rid of CVS/Subversion $Id$ markersBjørn Lindeijer1-2/+0
I don't know why we dealt with these things for so long. Did we ever get anything out of it?
2008-11-03Added a /w alias for whispering. Suggested by Kyron.Ira Rice1-2/+2
2008-09-26Made /msg an alias for /whisper.Ira Rice1-2/+2
2008-09-12Fixed /where, added /cast for heal and gather, some changes to inventory to ↵Lloyd Bryant1-538/+485
support storage
2008-09-04Added code to change text colouringDouglas Boffey1-456/+539
2008-08-22Added config option to honor stop-walking packet, added X and Y to /where, ↵Lloyd Bryant1-539/+456
reformatted src/chat.cpp
2008-07-18Import of client treeLloyd Bryant1-227/+531
2008-07-08#359 patch by ScraggyDavid Athay1-7/+83
2008-05-08Allow page up and page down to scroll the chat window, based on patch by fate.Dennis Friis1-6/+21
2008-04-29* Fixed issue with determining whether chat input is focused (method no longerBjørn Lindeijer1-1/+1
virtual). * Fixed sometimes rendering with the wrong font. * Fixed warnings about hiding virtual method, Window now always deletes its children (the option not to do so was never used anyway).
2008-04-14Tweaked /whisper command to allow quoting of nicks with spaces in them.Dennis Friis1-4/+15
2008-04-10I guess I messed this up a bit.Bjørn Lindeijer1-1/+1
2008-04-10Implemented support for whispering to other players (patch by peavey).Bjørn Lindeijer1-5/+25
2008-04-07Upgraded to Guichan 0.8.0 (merge from guichan-0.8 branch, except forBjørn Lindeijer1-6/+6
gcn::TabbedArea usage)
2008-03-09Applied some patches by peavey related to chatlog and the quit dialog.Philipp Sehmisch1-6/+14
2007-12-10Added an option to show log messages in the chat console.Philipp Sehmisch1-0/+3
2007-11-20Merged revisions 3692 via svnmerge from Bjørn Lindeijer1-2/+3
https://themanaworld.svn.sourceforge.net/svnroot/themanaworld/tmw/trunk ........ r3692 | gmelquio | 2007-10-27 11:03:13 +0200 (Sat, 27 Oct 2007) | 1 line Made it compile with GCC 4.3 ........
2007-10-26Removed some completely useless code from the chat class.Philipp Sehmisch1-6/+0
2007-10-26Added possibility of length limitation to browserbox and used it for the ↵Philipp Sehmisch1-0/+2
chatlog (length set by the config option "ChatLogLength").
2007-09-11Fixed admin commands.Eugenio Favalli1-2/+3
2007-08-24Added trimming of name for new character creation and of chat messagesBjørn Lindeijer1-1/+1
appearing above players. Also improved resize mouse cursor indication, removing duplicated code and fixing indicator above resize grip.
2007-08-22Added trimming of chat messages.Bjørn Lindeijer1-2/+7
2007-06-02Changed color of chat messages in OpenGL mode from orange to black.Bjørn Lindeijer1-2/+2
2007-01-14Upgraded to Guichan 0.6.0 (merge from guichan-0.6.0 branch).Bjørn Lindeijer1-7/+8
2006-08-24Added support for sticky windows as discussed with doener. Patch by AHarrisonEugenio Favalli1-1/+1
2006-08-13Merged Guichan 0.5.0 support from guichan-0.5.0 branch, plus several updatesBjørn Lindeijer1-14/+13
from the 0.1.0 branch.
2006-08-07A bunch of cleanups.Björn Steinbrink1-46/+35
2006-03-18Use the window container instead of the graphics class to calculate window ↵Björn Steinbrink1-4/+2
positions.
2006-03-16A bunch of cosmetic changes.Björn Steinbrink1-7/+5
2006-03-09Made all class members named like mClassMember.Björn Steinbrink1-49/+49
2006-02-24Another bunch of cosmetic cleanups, ie mostly typedefs...Björn Steinbrink1-13/+13
2006-01-22Merged NETWORK branch (includes BEING_OVERHAUL).Björn Steinbrink1-6/+7
2006-01-03Enabled some /commands.Eugenio Favalli1-12/+42
2006-01-03Really disabled /commands and added proper message when logging in and banned.Eugenio Favalli1-18/+12
2005-12-30Applied pcloud's patch that enhances chat window functionality while hidden.Bjørn Lindeijer1-21/+62
2005-10-20Added garbage collection to the ScrollArea class. Fixed slider not being ↵Björn Steinbrink1-2/+0
updated in the item amount box when the buttons are used.
2005-10-18Added automatic widget cleanup to the window class.Björn Steinbrink1-2/+0
2005-10-16Rename {read,write}{Byte,Short,Long} to {read,write}Int{8,16,32}.Björn Steinbrink1-2/+2