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