]>
Commit | Line | Data |
---|---|---|
32b8ec41 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: app.h | |
3 | // Purpose: | |
4 | // Author: Vaclav Slavik | |
5 | // Id: $Id$ | |
8f7b34a8 | 6 | // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) |
32b8ec41 VZ |
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 | ||
7bdc1879 VS |
24 | class WXDLLEXPORT wxApp; |
25 | class WXDLLEXPORT wxLog; | |
ef344ff8 | 26 | class WXDLLEXPORT wxEventLoop; |
58061670 | 27 | class WXDLLEXPORT wxDesktopWindow; |
32b8ec41 VZ |
28 | |
29 | //----------------------------------------------------------------------------- | |
30 | // wxApp | |
31 | //----------------------------------------------------------------------------- | |
32 | ||
33 | class WXDLLEXPORT wxApp: public wxAppBase | |
34 | { | |
35 | public: | |
7bdc1879 VS |
36 | wxApp(); |
37 | ~wxApp(); | |
32b8ec41 VZ |
38 | |
39 | /* override for altering the way wxGTK intializes the GUI | |
40 | * (palette/visual/colorcube). under wxMSW, OnInitGui() does nothing by | |
41 | * default. when overriding this method, the code in it is likely to be | |
42 | * platform dependent, otherwise use OnInit(). */ | |
7bdc1879 | 43 | virtual bool OnInitGui(); |
32b8ec41 VZ |
44 | |
45 | // override base class (pure) virtuals | |
7bdc1879 VS |
46 | virtual int MainLoop(); |
47 | virtual void ExitMainLoop(); | |
48 | virtual bool Initialized(); | |
49 | virtual bool Pending(); | |
50 | virtual void Dispatch(); | |
32b8ec41 | 51 | |
7bdc1879 | 52 | virtual wxIcon GetStdIcon(int which) const; |
32b8ec41 VZ |
53 | |
54 | // implementation only from now on | |
7bdc1879 VS |
55 | void OnIdle(wxIdleEvent &event); |
56 | bool SendIdleEvents(); | |
57 | bool SendIdleEvents(wxWindow* win); | |
32b8ec41 | 58 | |
7bdc1879 VS |
59 | static bool Initialize(); |
60 | static void CleanUp(); | |
32b8ec41 | 61 | |
7bdc1879 VS |
62 | bool ProcessIdle(); |
63 | void DeletePendingObjects(); | |
32b8ec41 | 64 | |
e1218bd6 VS |
65 | virtual bool Yield(bool onlyIfNeeded = FALSE); |
66 | ||
32b8ec41 VZ |
67 | private: |
68 | DECLARE_DYNAMIC_CLASS(wxApp) | |
69 | DECLARE_EVENT_TABLE() | |
ef344ff8 VS |
70 | |
71 | wxEventLoop *m_mainLoop; | |
32b8ec41 VZ |
72 | }; |
73 | ||
7bdc1879 | 74 | int WXDLLEXPORT wxEntry(int argc, char *argv[]); |
32b8ec41 VZ |
75 | |
76 | #endif // __WX_APP_H__ |