summaryrefslogtreecommitdiff
path: root/src/gui/widgets/chattab.h
AgeCommit message (Collapse)AuthorFilesLines
2010-02-22Modify copyright headersFreeyorp1-1/+2
2010-02-20License header update for The Mana ClientThorbjørn Lindeijer1-4/+3
2010-02-07Updated Copyright year to 2010!Bertram1-1/+1
Also added the update copyright tool from the Wormux Team. ( And not forgetting credit's due. :P )
2010-01-12Standardize header orderJared Adams1-1/+2
Also remove some extra new lines and fix eAthena's PartyTab define guards.
2010-01-12Improve chat speed.Andrei Karas1-0/+2
For improve chat speed this patch add some hacks to BrowserBox class, split big words in ChatTab. Also fix DoS in chat.
2010-01-07Chat auto completingAndrei Karas1-0/+13
2009-05-24Made some parameters const references like they should beBjørn Lindeijer1-1/+1
2009-04-16Some more cleanupsBjørn Lindeijer1-7/+0
Nothing in particular worth mentioning.
2009-04-16Some cleanupsBjørn Lindeijer1-2/+3
* std::string arguments to 'const std::string &' * findMember2 renamed to findOrCreateMember * Made some functions const
2009-04-16Rehash CommandHandler a bit, it's now fully mergedJared Adams1-0/+19
Tabs can now interract with CommandHandler and define their own commands in a seemless way. Most channel-related commands have been moved into ChannelTab, the close command is now in the WhisperTab, and eAthena's party tab now shows all standard commands.
2009-04-09Made BeingManager methods const where appropriateBjørn Lindeijer1-1/+0
2009-04-07Used custom widgets where appropriate and some cleanupBjørn Lindeijer1-8/+0
Replaced many gcn::Label with Label, gcn::Slider with Slider in character creation dialog. Also cleaned up includes.
2009-03-30Hilight chat tabs when appropriateJared Adams1-0/+2
2009-03-29Fix up eAthena party handling some moreJared Adams1-4/+1
2009-03-27Clean up chat and chat tabs some moreJared Adams1-7/+14
2009-03-27Add some const to the chat tabsJared Adams1-1/+1
2009-03-27Add a close command to WhisperTabJared Adams1-0/+2
2009-03-26Major clean up of ChatTab handlingJared Adams1-1/+19
ChatTabs now manage their own adding/removal from the chat window, which lost most of it's chat related messages. Whisper handling is stil done by the ChatWindow, but it no longer manages any other tabs. ChannelTab handling is now the sole responsability of the Channels they are attached to. The general tab is handled by Game.
2009-03-26Add WhisperTabsJared Adams1-1/+1
2009-03-26Add ChannelTab for chat channelsJared Adams1-0/+11
This fixes TMWServ compilation form the previous commit.
2009-03-26Move ChatWindow over to ChatTabsJared Adams1-0/+89
TMWServ compilation is likely not functional after this, I didn't check. THe next commit will address that.