mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
50b22e9478
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@4 0fc631ac-6414-0410-93d0-97cfa31319b6
51 lines
1.6 KiB
C++
51 lines
1.6 KiB
C++
//+----------------------------------------------------------------------------+
|
|
//| Description: Magic Set Editor - Program to make Magic (tm) cards |
|
|
//| Copyright: (C) 2001 - 2006 Twan van Laarhoven |
|
|
//| License: GNU General Public License 2 or later (see file COPYING) |
|
|
//+----------------------------------------------------------------------------+
|
|
|
|
// ----------------------------------------------------------------------------- : Includes
|
|
|
|
#include "util/prec.hpp"
|
|
#include <gui/symbol/window.hpp>
|
|
|
|
// ----------------------------------------------------------------------------- : Main function/class
|
|
|
|
/// The application class for MSE.
|
|
/** This class is used by wxWidgets as a kind of 'main function'
|
|
*/
|
|
class MSE : public wxApp {
|
|
public:
|
|
/// Main startup function of the program
|
|
bool OnInit();
|
|
/// On exit: write the settings to the config file
|
|
int OnExit();
|
|
/// On exception: display error message
|
|
bool OnExceptionInMainLoop();
|
|
};
|
|
|
|
IMPLEMENT_APP(MSE)
|
|
|
|
// ----------------------------------------------------------------------------- : Initialization
|
|
|
|
bool MSE::OnInit() {
|
|
wxInitAllImageHandlers();
|
|
//initFileFilters()
|
|
Window* wnd = new SymbolWindow(0);
|
|
wnd->Show();
|
|
return true;
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Exit
|
|
|
|
int MSE::OnExit() {
|
|
// settings.write();
|
|
return 0;
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Exception handling
|
|
|
|
bool MSE::OnExceptionInMainLoop() {
|
|
return true;
|
|
}
|