Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-02-11 | Removed many pointless comparisons with NULL | Bjørn Lindeijer | 1 | -1/+1 | |
Sometimes it's nice for clarity, but most of the time this is just clutter. C++ != Java. :) | |||||
2009-02-10 | Whitespace fixes | Bjørn Lindeijer | 1 | -5/+5 | |
Mainly removed trailing whitespace. Also small fix in header of recorder.cpp. | |||||
2009-02-10 | Fixed some accidental capitalization errors | Philipp Sehmisch | 1 | -1/+1 | |
2009-02-10 | fixed capitalization of color member functions. | Philipp Sehmisch | 1 | -1/+1 | |
2009-02-10 | Changed spelling from colour to color. | Philipp Sehmisch | 1 | -3/+3 | |
2009-02-04 | Went through the gui folder and revised the include statements to not | Ira Rice | 4 | -11/+2 | |
include anything not needed by that specific widget or window. This appears to have cleaned up system performance a bit on my current setup, where it went from idling on 45% in game with opengl down to 30% now. Also moved iptostring to the tostring header, as importing all of network.h is a little overkill to use that function, and it goes along with the basic functions that are in that header file anyways. TODO: find out a way to get rid of warnings when a class doesn't use this function. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-02-03 | Modified the dropdown class to handle opacity. | Ira Rice | 2 | -13/+67 | |
Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-01-30 | Added highlighting ability to tabs. | David Athay | 2 | -8/+29 | |
2009-01-30 | Exposed most gui elements to take alpha values. There are still a few | Ira Rice | 4 | -0/+24 | |
spots that could also be fixed up as well, but require other methods to fix them (the filled color rectangles on the progress bars, as well as the text on them as well, as an example). Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-01-28 | Added channel highlighting upon activity. Added /kick command to get rid of ↵ | David Athay | 2 | -8/+30 | |
users from a channel | |||||
2009-01-25 | Removed the TMW branding from header guards | Bjørn Lindeijer | 4 | -9/+9 | |
2009-01-23 | Removed unnecessary references to The Mana World in code headers | Bjørn Lindeijer | 10 | -40/+40 | |
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-18 | Fixed layout of video setup page when translated | Bjørn Lindeijer | 3 | -1/+148 | |
Introduced a LayoutHelper class which can be used for any non-Window container where you want to use a layout to place child widgets. | |||||
2009-01-15 | Merged Tab and TabbedArea from mainline | Bjørn Lindeijer | 4 | -0/+442 | |
Changes mostly done by David Athay. Currently these widgets are only used in the setup window, where they replace the previously used TabbedContainer. | |||||
2009-01-15 | Style cleanups throughout most of the code. Splitting function type from | Ira Rice | 1 | -2/+1 | |
the function names should no longer be around. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2009-01-06 | Merged layout handler from mainline | Bjørn Lindeijer | 2 | -0/+647 | |
Also fixed login dialog layout. This is the layout handler by Guillaume Melquiond, which he started in commit 59472ef68fdef3f7e8858a81a46e28c127119c58. | |||||
2009-01-06 | Fixed the windows cbp file, deleted some files which we don't use, and | Ira Rice | 2 | -514/+0 | |
fixed a few compiler warnings noticed from building in windows. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2008-12-29 | Added support for True Type Fonts using GUIChan's inbuilt SDLTrueType | Ira Rice | 2 | -0/+514 | |
class. NOTE: This commit adds a brand new dependency (SDL_TTF). Make sure to install it, regenerate your config files, reconfigure, and then install before attempting to compile. Signed-off-by: Ira Rice <irarice@gmail.com> | |||||
2008-12-17 | Code reformatting | Bjørn Lindeijer | 2 | -15/+9 | |
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-25 | Miscellaneous TMW change commits. Missed these changes before because of | Ira Rice | 2 | -3/+3 | |
a confusion on git. | |||||
2008-11-18 | Pedantic fixes to the client, where I alphabetized all of the include | Ira Rice | 4 | -11/+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-16 | Got rid of CVS/Subversion $Id$ markers | Bjørn Lindeijer | 12 | -24/+0 | |
I don't know why we dealt with these things for so long. Did we ever get anything out of it? | |||||
2008-11-13 | Added avatars to party window | David Athay | 2 | -0/+122 | |
2008-10-03 | Made a new Windows binary, as well as fix some files to make the Windows | Ira Rice | 2 | -0/+3 | |
build work (although there might be a bit too many guichanfwd.h references. But that's ok. I'm too lazy to track down which ones are necessary and which ones aren't at the moment). | |||||
2008-09-25 | Merged the Tametomo branch into trunk. | Ira Rice | 1 | -1/+1 | |
2008-09-14 | fix for guichan bug in tabbedareas | Roderic Morris | 2 | -0/+10 | |
2008-08-21 | fix svn properties and id tags | Roderic Morris | 2 | -2/+2 | |
2008-07-18 | Import of client tree | Lloyd Bryant | 4 | -2/+256 | |
2008-05-22 | Fix compile errors when compiling with GCC 4.3 (patch by rodge) | Bjørn Lindeijer | 1 | -0/+2 | |
2008-05-15 | Added tab with image based on button | David Athay | 4 | -11/+246 | |
2008-05-09 | Changed the tabbedarea to be transparant as before. Changed setup | David Athay | 2 | -2/+1 | |
window and skills dialog to use the new tabbed area. Removed tabbed container as it is no longer used. Fixed a crash with the chat window. | |||||
2008-04-22 | Added more support for parties | David Athay | 2 | -23/+0 | |
2008-04-21 | Fixed chat window size issue | David Athay | 2 | -12/+24 | |
2008-04-18 | Fixed numerous crashes with chat and guild windows using new tabbed area. | David Athay | 2 | -1/+61 | |
2008-04-17 | Fixed a crash when clicking on 'Quit Guild' Button. Also disabled the ↵ | Yohann Ferreira | 1 | -0/+1 | |
'Invite user' and 'Quit Guild' buttons when no Guild is created. | |||||
2008-04-16 | Fixed online status so that users are shown as online | David Athay | 1 | -4/+6 | |
2008-04-15 | Added online status of guild members | David Athay | 2 | -1/+20 | |
2008-04-14 | Added new TabbedArea which extends gui::TabbedArea. Changed Guild and | David Athay | 2 | -0/+133 | |
Chat windows to use new TabbedArea. Added private messaging. | |||||
2008-04-11 | Ported trunk over to Guichan 0.8.0. Based on merge from 0.0 branch, but because | Bjørn Lindeijer | 2 | -9/+8 | |
of quite a bit of GUI differences there were additional changes and probably additional issues. You have been warned. ;) Merged revisions 4045-4049,4051-4059 via svnmerge from https://themanaworld.svn.sourceforge.net/svnroot/themanaworld/tmw/branches/0.0 ........ r4045 | b_lindeijer | 2008-04-07 17:23:07 +0200 (Mon, 07 Apr 2008) | 3 lines Upgraded to Guichan 0.8.0 (merge from guichan-0.8 branch, except for gcn::TabbedArea usage) ........ r4059 | b_lindeijer | 2008-04-09 16:25:42 +0200 (Wed, 09 Apr 2008) | 2 lines Fixed problem with row height in shop list box. ........ | |||||
2008-04-10 | Fixed some compiler warnings and don't try to load particle effects when no | Bjørn Lindeijer | 1 | -1/+1 | |
file is set. | |||||
2007-10-28 | Separated auto-resizing into two categories: "set" and "add". Removed ↵ | Guillaume Melquiond | 2 | -19/+49 | |
useless code. | |||||
2007-10-27 | Improved layout handler to support trees of nested arrays. Needed for ↵ | Guillaume Melquiond | 2 | -143/+364 | |
converting and fixing the trade window. | |||||
2007-10-27 | Made it compile with GCC 4.3 | Guillaume Melquiond | 1 | -0/+2 | |
2007-10-21 | Made visible the resizable grip on inventory window. | Guillaume Melquiond | 2 | -27/+51 | |
2007-10-21 | Allowed for decreasing sizes in layout. | Guillaume Melquiond | 1 | -2/+3 | |
2007-10-20 | Set FILL as default size in layout. Converted server selection dialog to ↵ | Guillaume Melquiond | 2 | -9/+20 | |
layout handler. | |||||
2007-10-20 | Improved layout manager. Reworked layout of character selection dialog box. | Guillaume Melquiond | 2 | -63/+138 | |
2007-10-20 | Added a few comments. | Guillaume Melquiond | 1 | -6/+20 | |
2007-10-20 | Added a layout handler for automatically positioning widgets in a window. ↵ | Guillaume Melquiond | 2 | -0/+275 | |
Fixed layout of login dialog box when native language is not English. | |||||
2007-09-20 | Merged a bunch of small changes from trunk to 0.0 and set svn:eol-style | Bjørn Lindeijer | 1 | -1/+1 | |
to native for some files that were still missing this property. This is a feeble attempt to reduce the amount of conflicts for future merges. |