summaryrefslogtreecommitdiff
path: root/src/gui/login.h
AgeCommit message (Collapse)AuthorFilesLines
2009-04-16Fixed TMWServ compilationPhilipp Sehmisch1-4/+0
2009-04-15Clean up some more memory leaksJared Adams1-0/+2
And remove an unneeded variable
2009-04-15Have the DropDown create its ScrollArea and ListBoxBjørn Lindeijer1-7/+1
And also clean them up again. Fixes some memory leaks and simplifies the code. Also got rid of the basically unused "opaque" setting of DropDown.
2009-04-07Moved basic widgets into the gui/widgets directoryBjørn Lindeijer1-3/+3
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-03-22Merged the tmwserv client with the eAthena clientBjørn Lindeijer1-2/+12
This merge involved major changes on both sides, and as such took several weeks. Lots of things are expected to be broken now, however, we now have a single code base to improve and extend, which can be compiled to support either eAthena or tmwserv. In the coming months, the plan is to work towards a client that supports both eAthena and tmwserv, without needing to be recompiled. Conflicts: Everywhere!
2009-02-15Merge branch 'aethyra/master'Bjørn Lindeijer1-5/+0
2009-02-15Deleted some unneeded delete statements.Ira Rice1-5/+0
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-02-10Fixed header files, as well as removed the unused buddy list class (notIra Rice1-2/+3
useful since buddy lists are tracked through the player relation interface instead) Signed-off-by: Ira Rice <irarice@gmail.com>
2009-02-09Mostly whitespace fixesBjørn Lindeijer1-24/+23
Removed tab characters and trailing spaces and added spaces between "if(", "for(", "while(" and "switch(".
2009-02-09Merged with Aethyra master as of 2009-02-09Bjørn Lindeijer1-7/+4
Conflicts: A lot of files...
2009-02-09Mostly whitespace fixesBjørn Lindeijer1-24/+23
Removed tab characters and trailing spaces and added spaces between "if(", "for(", "while(" and "switch(".
2009-02-04Cleaned up some login includes that I missed earlier.Ira Rice1-6/+4
Signed-off-by: Ira Rice <irarice@gmail.com>
2009-02-04Went through the gui folder and revised the include statements to notIra Rice1-1/+0
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-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-15Style cleanups throughout most of the code. Splitting function type fromIra Rice1-6/+3
the function names should no longer be around. Signed-off-by: Ira Rice <irarice@gmail.com>
2008-11-18Pedantic fixes to the client, where I alphabetized all of the include Ira Rice1-5/+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-09-29Modified the client so that it displays both servers as server choices, Ira Rice1-2/+2
as well as changing the default server to point to www.aethyra.org instead of Slinker's IP address now.
2008-07-18Import of client treeLloyd Bryant1-1/+57
2007-03-24Merged 0.0 changes from revision 3177 to 3234 to trunk.Bjørn Lindeijer1-14/+16
2007-03-24Make sure that when a network error occurs, the error message is available andBjørn Lindeijer1-1/+1
shown to the user. Also, only enable Register button when all necessary fields are filled in.
2007-03-22Only enable login button when a username, password and server are filled in.Bjørn Lindeijer1-14/+16
Pass username, password and server on to the register dialog. Go back to login dialog when canceling registration. Fixed a crash caused by deleting an OkDialog twice (it also deletes itself). Made the register dialog a bit wider. Register dialog no longer clears username field when it is invalid.
2007-01-14Merged 0.0 changes from revision 2988 to 3035 to trunk.Bjørn Lindeijer1-2/+2
2007-01-14Upgraded to Guichan 0.6.0 (merge from guichan-0.6.0 branch).Bjørn Lindeijer1-2/+2
2006-08-27Got rid of server input field since connecting to the account server nowBjørn Lindeijer1-1/+0
happens before the login and register dialogs.
2006-08-13Merged Guichan 0.5.0 support from guichan-0.5.0 branch, plus several updatesBjørn Lindeijer1-2/+2
from the 0.1.0 branch.
2006-07-30Updated TMW to be compatible with Guichan 0.5.0 (merged from guichan-0.5.0Bjørn Lindeijer1-2/+2
branch).
2006-03-09Made all class members named like mClassMember.Björn Steinbrink1-12/+9
2006-02-03Made the login dialog work on LoginData only, without playing with the ↵Björn Steinbrink1-5/+2
config, it's not its job to do so.
2006-02-01Made the OkDialog and ConfirmDialog classes proxies for their buttons' ↵Björn Steinbrink1-0/+5
events. Removed the RequestTradeWindow class, replaced with a plain ConfirmDialog. Fixed a memory leak along the way.
2006-01-22Merged NETWORK branch (includes BEING_OVERHAUL).Björn Steinbrink1-23/+4
2006-01-14Removed unused var.Björn Steinbrink1-1/+0
2006-01-01Fix crash in Login with empty name.Björn Steinbrink1-3/+2
2005-12-30Added a new item, improved smooth login sequence, added a registration ↵Eugenio Favalli1-23/+22
window (a lot of duplicated code to be removed).
2005-12-29Restored Dev-Cpp default execution options, updated walkmap in snow map, ↵Eugenio Favalli1-15/+1
smoothed login sequence.
2005-10-18Added automatic widget cleanup to the window class.Björn Steinbrink1-6/+1
2005-10-16The connection should be non-blocking now and fixed the problem with sound ↵Eugenio Favalli1-17/+12
not being played at startup.
2005-09-23Merged most of the changes in biggeruniverse's second memory cleanup patch.Bjørn Lindeijer1-2/+1
2005-09-13Unified the loops for the various dialogs that are shown before the actual ↵Björn Steinbrink1-2/+10
game starts.
2005-08-24Simply don't show equipped items in sell dialog since it's annoying. Code ↵Yohann Ferreira1-6/+24
cleanups and improvements to the login sequence.
2005-08-22Improved the login sequence a bit.Yohann Ferreira1-1/+25
2005-08-13Huge header cleanup to reduce dependencies and compile time.Björn Steinbrink1-2/+6
2005-05-14Mainly separating core GUI classes from game interface.Bjørn Lindeijer1-1/+1
2005-05-05Now the server can be set in the login window.Yohann Ferreira1-0/+2
2005-04-09Fixed the previous errorEugenio Favalli1-0/+1
Added "register" button
2005-01-17Got stuff to work with Dev-C++Bjørn Lindeijer1-10/+2
2005-01-16Removed a lot of allegro.h includes.Bjørn Lindeijer1-4/+0
2005-01-08Well improved window container and window widgets a bit, and made a startBjørn Lindeijer1-1/+1
on support for modal dialogs. Still some issues to work out. Tell me if you experience something unsettling.
2004-12-27Added AUTHORS.txt file, $Id$ tags to gui source files and added OkButtonBjørn Lindeijer1-0/+2
modules to file lists.