summaryrefslogtreecommitdiff
path: root/LiteEditor/app.h
diff options
context:
space:
mode:
authorChow Loong Jin <hyperair@gmail.com>2009-03-18 01:38:42 +0800
committerChow Loong Jin <hyperair@gmail.com>2009-03-18 01:38:42 +0800
commit88bf04fce19ef94891d54e11c3604ad31bd1d46e (patch)
tree34fa3ad4f9768f63d86273468fd60c84fa05f553 /LiteEditor/app.h
parent3d717c7047ccf0181289325da69e555556d759b3 (diff)
Imported Upstream version 1.0.2785
Diffstat (limited to 'LiteEditor/app.h')
-rw-r--r--LiteEditor/app.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/LiteEditor/app.h b/LiteEditor/app.h
new file mode 100644
index 00000000..8f14ffbd
--- /dev/null
+++ b/LiteEditor/app.h
@@ -0,0 +1,62 @@
+//////////////////////////////////////////////////////////////////////////////
+//////////////////////////////////////////////////////////////////////////////
+//
+// copyright : (C) 2008 by Eran Ifrah
+// file name : app.h
+//
+// -------------------------------------------------------------------------
+// A
+// _____ _ _ _ _
+// / __ \ | | | | (_) |
+// | / \/ ___ __| | ___| | _| |_ ___
+// | | / _ \ / _ |/ _ \ | | | __/ _ )
+// | \__/\ (_) | (_| | __/ |___| | || __/
+// \____/\___/ \__,_|\___\_____/_|\__\___|
+//
+// F i l e
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+//////////////////////////////////////////////////////////////////////////////
+//////////////////////////////////////////////////////////////////////////////
+ #ifndef LITEEDITOR_APP_H
+#define LITEEDITOR_APP_H
+
+#include "frame.h"
+class SplashScreen;
+class wxSingleInstanceChecker;
+
+class App : public wxApp
+{
+ SplashScreen* m_splash;
+ Frame *m_pMainFrame;
+ wxSingleInstanceChecker *m_singleInstance;
+
+private: // Methods
+ bool CopySettings(const wxString &destDir, wxString& installPath);
+ bool CheckRevision(const wxString &fileName);
+ bool CheckSingularity(const wxCmdLineParser &parser, const wxString &curdir);
+
+#ifdef __WXMSW__
+ HINSTANCE m_handler;
+#endif
+
+public:
+ App(void);
+ virtual ~App(void);
+
+protected:
+ virtual bool OnInit();
+ virtual int OnExit();
+ virtual void OnFatalException();
+
+private:
+ DECLARE_EVENT_TABLE()
+ void OnIdle(wxIdleEvent &e);
+ void OnHideSplash(wxCommandEvent &e);
+};
+
+#endif // LITEEDITOR_APP_H