summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabbedarea.h
AgeCommit message (Collapse)AuthorFilesLines
2024-01-26Apply C++11 fixitsThorbjørn Lindeijer1-10/+10
modernize-use-auto modernize-use-nullptr modernize-use-override modernize-use-using
2012-05-05Fixed compilation errors and warnings with GCC 4.7Thorbjørn Lindeijer1-1/+2
Also, since GCC 4.7 there is a binary compatibility issue when linking with a Guichan that was not compiled in C++11 mode. This commit also allows compiling with GCC 4.7 with C++11 mode turned off. Reviewed-by: Erik Schilling
2012-02-10Arbitrary small code cleanupsThorbjørn Lindeijer1-2/+0
Reviewed-by: Erik Schilling
2012-01-26Updated copyrights to 2012Thorbjørn Lindeijer1-1/+1
2011-08-11Added true arrows graphics to tab area buttons.Yohann Ferreira1-1/+1
2011-04-09Removed a lot of useless "documentation"Thorbjørn Lindeijer1-3/+0
I have to admit I contributed a large part of these. Sorry for that. Less empty space, more attention to the code. Acked-by: Jared Adams
2011-03-08Added a tab scrolling system in tabarea.Yohann Ferreira1-0/+43
Currently working on the chat window. Resolves: Mana-Mantis #308. Reviewed-by: Thorbjorn.
2010-02-22Modify copyright headersFreeyorp1-1/+2
2010-02-20License header update for The Mana ClientThorbjørn Lindeijer1-4/+3
2010-02-14Fixed TabbedAreas stealing click focus from their children widgets.Tametomo1-0/+3
Signed-off-by: Tametomo <irarice@gmail.com>
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 )
2009-08-23Fix some layout issues with TabbedAreasJared Adams1-2/+1
2009-08-10Remove layout code from ChatWindowJared Adams1-0/+8
2009-08-10Fix TabbedArea and ScrollArea to resize contentsJared Adams1-1/+4
Also remove that code from SkillDialog. I tried to do the same with ChatWindow, but it kept segfaulting. Will try again later.
2009-07-07Use tmw-skills.xml instead of hardcodingJared Adams1-0/+5
2009-04-16Some more cleanupsBjørn Lindeijer1-16/+16
Nothing in particular worth mentioning.
2009-03-30Hilight chat tabs when appropriateJared Adams1-0/+5
2009-03-26Move ChatWindow over to ChatTabsJared Adams1-0/+4
TMWServ compilation is likely not functional after this, I didn't check. THe next commit will address that.
2009-03-26First batch of include cleanupBjørn Lindeijer1-2/+0
Since the relative includes are getting ugly and somewhat inconvenient, we'll switch to includes relative to the project root. We've done this for a while already with tmwserv. Another rule which we've always had but was never written down, is that each source file first includes its own header. This is common practice and ensures each header compiles without needing other stuff to be included first. Somebody using Code::Blocks might want to fix the project file by adding the 'src' directory to the list of include paths.
2009-01-25Removed the TMW branding from header guardsBjørn Lindeijer1-2/+2
2009-01-23Removed unnecessary references to The Mana World in code headersBjørn Lindeijer1-4/+4
This dates back to the old days of TMW, but the usage instructions of GPLv2 don't mention this being necessary. Since it doesn't add anything, avoid the branding in these sections.
2009-01-13Merged Tab and TabbedArea from mainlineBjørn Lindeijer1-0/+92
Changes mostly done by David Athay. Currently these widgets are only used in the setup window, where they replace the previously used TabbedContainer.