aboutsummaryrefslogtreecommitdiff
path: root/gui/launcher.cpp
AgeCommit message (Collapse)Author
2003-11-01merged detectGames() into LauncherDialog::handleCommand()Max Horn
svn-id: r11043
2003-11-01amiga checkbox is obsolete (will be replaced by a platform popupMax Horn
svn-id: r11038
2003-10-28cleanup: removed version/id from GameSettingsMax Horn
svn-id: r10995
2003-10-17findGame is static class method nowMax Horn
svn-id: r10864
2003-10-17factored out the game detection code into the Plugin class; this is the ↵Max Horn
first step towards allowing more powerful, plugin specific detection code; also, moved the Plugin GameSettings APIs to a slightly higher level svn-id: r10858
2003-10-16cleanupMax Horn
svn-id: r10839
2003-10-12some renaming for more consistent terminology (although we might want to ↵Max Horn
reevaluate this): 'target' is what is in your config file; 'game' is what a frontend provide. E.g. the scumm frontend provides the game 'monkeyvga', and my config file has target 'monkeyvga-ger' configured to use that game svn-id: r10766
2003-10-11fix for bug #821502 (GUI: Launcher crashes with unexisting targets)Max Horn
svn-id: r10738
2003-10-08turned PluginManager into a proper singletonMax Horn
svn-id: r10688
2003-10-08new config manager. not everything is completed, and some things will still ↵Max Horn
be changed, but it seems to work well enough to put it into CVS svn-id: r10687
2003-10-05Make use of new List iteratorMax Horn
svn-id: r10609
2003-10-02renamed namespace ScummVM to CommonMax Horn
svn-id: r10544
2003-09-18moved engine.* to base; this fixes some linking issues when building a ↵Max Horn
barebone ScummVM (or maybe I just want to increase our CVS stats? <g>) svn-id: r10287
2003-09-17new module 'base'; moved gameDetector.*, main.cpp and base/plugins.* there ↵Max Horn
(this removes the need for an ugly hack in the build system, and is also conceptionally cleaner) svn-id: r10282
2003-09-08added About dialog to launcherMax Horn
svn-id: r10107
2003-09-08got rid of version_settingsMax Horn
svn-id: r10101
2003-09-08added a FIXME commentMax Horn
svn-id: r10093
2003-09-08renamed VersionSettings -> TargetSettings and also renamed some of its ↵Max Horn
members; added GameDetector::findTarget; made launcher use that new method; some initial preparations for Plugin code svn-id: r10092
2003-08-20Change Amiga palette option to Amiga versionTravis Howell
svn-id: r9800
2003-08-12Show Amiga option only for scumm gamesTravis Howell
svn-id: r9643
2003-07-15replaced SCUMMVM_VERSION/SCUMMVM_CVS by ↵Max Horn
gScummVMVersion/gScummVMBuildDate/gScummVMFullVersion; made engine.o depend on all other .o files, so that the build date in it is always up-to-date svn-id: r9032
2003-06-15remove scumm.h dependencyJonathan Gray
svn-id: r8498
2003-06-15moved GameId declaration to common/engine.h (more logical); moved scumm ↵Max Horn
specific stuff from gameDetector.h to scumm.h; cleaned up some #includes (ideally, never #include something in a header file if you can avoid it - this cuts down interdepencies) svn-id: r8496
2003-06-07use _versionMax Horn
svn-id: r8370
2003-04-30PalmOS changes: allow 8 bit GUI modeMax Horn
svn-id: r7226
2003-04-29update launcher for recent changesJonathan Gray
svn-id: r7191
2003-03-25added some meat to the global options dialog (no prefs are stored yet, though)Max Horn
svn-id: r6862
2003-03-06updated copyrights headersPaweł Kołodziejski
svn-id: r6726
2003-03-06and more cleanup .... LastPaweł Kołodziejski
svn-id: r6721
2002-12-20don't show amiga checkbox for simon gamesMax Horn
svn-id: r6031
2002-12-14cleanupMax Horn
svn-id: r5947
2002-12-12added a dummy global options dialog; PopUpWidget tweaksMax Horn
svn-id: r5919
2002-12-12added PopUpWidget; hacked it into the edit game dialog just to show how to ↵Max Horn
use it; note: this is NOT finished by any means, the look will change, the code will change, this is just an early preview :-) svn-id: r5914
2002-12-01fixed launcher buttons againMax Horn
svn-id: r5770
2002-12-01fix for bug #646218 (Start button in launcher was not getting disabled)Max Horn
svn-id: r5766
2002-11-25Add a few EditGame options. Honor game-specific fullScreen from the LauncherJames Brown
svn-id: r5715
2002-11-21cleanupMax Horn
svn-id: r5674
2002-11-21enhanced Config::rename_domain; added the ability to change the domain name ↵Max Horn
in EditGameDialog svn-id: r5673
2002-11-21some fixes; hooked up the EditGameDialog (so changes to 'name' there ↵Max Horn
actually take effect) svn-id: r5670
2002-11-21changed comments slightlyMax Horn
svn-id: r5667
2002-11-21Implemented EditTextWidget; fixed Add Game/Remove Game in launcher; make use ↵Max Horn
of EditTextWidget in EditGameDialog; various other tweaks svn-id: r5665
2002-11-21implemented remove buttons; added EditGameDialog stub (it only displays some ↵Max Horn
info, no edit possible yet); except for that, the 'Add Game' and 'Edit Game' buttons should be complete now svn-id: r5663
2002-11-21enhanced launcher: added 'Remove' button, renamed 'Configure...' to 'Edit ↵Max Horn
Game...'; display warning dialog if 'Add Game...' can't find any game in the selected directory; show warnings dialogs for stuff that is NYI svn-id: r5660
2002-11-21factored out ChooserDialog into it's own header/source file, and made the ↵Max Horn
title adjustable; added a dummy file for EditFieldWidget (not implemented yet); some other cleanup svn-id: r5658
2002-11-21added _configureButton stubMax Horn
svn-id: r5652
2002-11-21added a chooser sub dialog used by 'Add Game'Max Horn
svn-id: r5651
2002-11-21lo and behold - the 'Add Game' button now works, at least in some cases! ↵Max Horn
More to come... svn-id: r5646
2002-11-19added some preliminary game auto detect code to the launcher; this required ↵Max Horn
a small change to the FS API, Windows/Morphos code will have to be adapted slightly I fear. Also, not all games are detected correctly, and some probably never will be, so we still have to add a dialog for cases where auto detect doesn't work svn-id: r5600
2002-11-14added completly useless non functional browser dialog skeleton. Just to show ↵Max Horn
Endy I really have started working on it finally <g> svn-id: r5547
2002-11-13cleaned up Config::get_domain; fixed sorting in launcherMax Horn
svn-id: r5541