]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/mgl/app.h
Removed semi-colons off the end of two macro statement lines so that compilation...
[wxWidgets.git] / include / wx / mgl / app.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: app.h
3// Purpose:
4// Author: Vaclav Slavik
5// Id: $Id$
6// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef __WX_APP_H__
11#define __WX_APP_H__
12
13#ifdef __GNUG__
14#pragma interface "app.h"
15#endif
16
17#include "wx/frame.h"
18#include "wx/icon.h"
19
20//-----------------------------------------------------------------------------
21// classes
22//-----------------------------------------------------------------------------
23
24class WXDLLEXPORT wxApp;
25class WXDLLEXPORT wxLog;
26
27//-----------------------------------------------------------------------------
28// wxApp
29//-----------------------------------------------------------------------------
30
31class WXDLLEXPORT wxApp: public wxAppBase
32{
33public:
34 wxApp();
35 ~wxApp();
36
37 /* override for altering the way wxGTK intializes the GUI
38 * (palette/visual/colorcube). under wxMSW, OnInitGui() does nothing by
39 * default. when overriding this method, the code in it is likely to be
40 * platform dependent, otherwise use OnInit(). */
41 virtual bool OnInitGui();
42
43 // override base class (pure) virtuals
44 virtual int MainLoop();
45 virtual void ExitMainLoop();
46 virtual bool Initialized();
47 virtual bool Pending();
48 virtual void Dispatch();
49
50 virtual wxIcon GetStdIcon(int which) const;
51
52 // implementation only from now on
53 void OnIdle(wxIdleEvent &event);
54 bool SendIdleEvents();
55 bool SendIdleEvents(wxWindow* win);
56
57 static bool Initialize();
58 static void CleanUp();
59
60 bool ProcessIdle();
61 void DeletePendingObjects();
62
63private:
64 DECLARE_DYNAMIC_CLASS(wxApp)
65 DECLARE_EVENT_TABLE()
66};
67
68int WXDLLEXPORT wxEntry(int argc, char *argv[]);
69
70#endif // __WX_APP_H__