summaryrefslogtreecommitdiff
path: root/src/gui/widgets/avatar.cpp
AgeCommit message (Collapse)AuthorFilesLines
2010-01-11Cleanup GUI classesJared Adams1-0/+1
Moved remaining widgets into widgets folder, standardized include order, moved TextRenderer out.
2009-12-02Simplify PartyMember by moving fields into AvatarJared Adams1-0/+1
2009-05-30Move the name label a few pixels.Dennis Friis1-1/+1
2009-05-30Fix offsets on party window status indicator buttons.Dennis Friis1-2/+2
Patch by QOAL
2009-05-21Display the party leaders name in bold fontFreeyorp1-1/+5
2009-05-13Fix how the PartyWindow lays out AvatarsJared Adams1-4/+8
Also fix the height of Avatars
2009-05-13Modify PartyWindow sizing againFreeyorp1-2/+3
Rather than expanding PartyWindow again, call mLabel->adjustSize(); and let players resize the window if they need to. Also shrink the minimum size of the PartyWindow.
2009-05-12Don't show Hp and maxHp for the local player in the party windowFreeyorp1-7/+1
It's already being displayed elsewhere, and it's partly broken anyway.
2009-05-10Removed the ???/??? for party members of which health isn't knownBjørn Lindeijer1-24/+29
Not very useful. :P
2009-05-10Fixed the resize grip of the party windowBjørn Lindeijer1-10/+4
It wasn't re-added after doing a clear. Also, don't leak all the PartyMember and Avatar instances.
2009-05-10Add support for viewing the health and maximum health of other nearby ↵Freeyorp1-3/+43
members of your party.
2009-05-10Expand the label in the party window to stop names being cut off.Freeyorp1-3/+3
Lots of space has been left to compensate for planned additon of hp/maxhp to the same line.
2009-04-07Moved basic widgets into the gui/widgets directoryBjørn Lindeijer1-2/+2
In an attempt to make the GUI code a little more structured, basic widgets are now put in gui/widgets. Many includes were also cleaned up.
2009-04-07Used custom widgets where appropriate and some cleanupBjørn Lindeijer1-3/+2
Replaced many gcn::Label with Label, gcn::Slider with Slider in character creation dialog. Also cleaned up includes.
2009-03-29Fix up eAthena party handling some moreJared Adams1-12/+36
2009-03-26First batch of include cleanupBjørn Lindeijer1-4/+6
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-03-26Fixes to file headers and header guardsBjørn Lindeijer1-4/+4
Mostly removal of branding for tmwserv related files, as was done for the eAthena client before.
2008-12-17Code reformattingBjørn Lindeijer1-11/+5
Mainly making sure 'const std::string &' is used everywhere instead of 'std::string const &'. The former has always been the preferred order in this project.
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-13Added avatars to party windowDavid Athay1-0/+61