]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/app.h
argh, really, really fix Darwin build
[wxWidgets.git] / include / wx / msw / app.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: app.h
3// Purpose: wxApp class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_APP_H_
13#define _WX_APP_H_
14
15#include "wx/event.h"
16#include "wx/icon.h"
17
18class WXDLLIMPEXP_FWD_CORE wxFrame;
19class WXDLLIMPEXP_FWD_CORE wxWindow;
20class WXDLLIMPEXP_FWD_CORE wxApp;
21class WXDLLIMPEXP_FWD_CORE wxKeyEvent;
22class WXDLLIMPEXP_FWD_BASE wxLog;
23
24// Represents the application. Derive OnInit and declare
25// a new App object to start application
26class WXDLLIMPEXP_CORE wxApp : public wxAppBase
27{
28 DECLARE_DYNAMIC_CLASS(wxApp)
29
30public:
31 wxApp();
32 virtual ~wxApp();
33
34 // override base class (pure) virtuals
35 virtual bool Initialize(int& argc, wxChar **argv);
36 virtual void CleanUp();
37
38 virtual bool Yield(bool onlyIfNeeded = false);
39 virtual void WakeUpIdle();
40
41 virtual void SetPrintMode(int mode) { m_printMode = mode; }
42 virtual int GetPrintMode() const { return m_printMode; }
43
44 // implementation only
45 void OnIdle(wxIdleEvent& event);
46 void OnEndSession(wxCloseEvent& event);
47 void OnQueryEndSession(wxCloseEvent& event);
48
49#if wxUSE_EXCEPTIONS
50 virtual bool OnExceptionInMainLoop();
51#endif // wxUSE_EXCEPTIONS
52
53protected:
54 int m_printMode; // wxPRINT_WINDOWS, wxPRINT_POSTSCRIPT
55
56public:
57 // Implementation
58 static bool RegisterWindowClasses();
59 static bool UnregisterWindowClasses();
60
61#if wxUSE_RICHEDIT
62 // initialize the richedit DLL of (at least) given version, return true if
63 // ok (Win95 has version 1, Win98/NT4 has 1 and 2, W2K has 3)
64 static bool InitRichEdit(int version = 2);
65#endif // wxUSE_RICHEDIT
66
67 // returns 400, 470, 471 for comctl32.dll 4.00, 4.70, 4.71 or 0 if it
68 // wasn't found at all
69 static int GetComCtl32Version();
70
71 // the same for shell32.dll: returns 400, 471, 500, 600, ... (4.70 not
72 // currently detected)
73 static int GetShell32Version();
74
75 // the SW_XXX value to be used for the frames opened by the application
76 // (currently seems unused which is a bug -- TODO)
77 static int m_nCmdShow;
78
79protected:
80 DECLARE_EVENT_TABLE()
81 DECLARE_NO_COPY_CLASS(wxApp)
82};
83
84#ifdef __WXWINCE__
85
86// under CE provide a dummy implementation of GetComCtl32Version() returning
87// the value passing all ">= 470" tests (which are the only ones used in our
88// code currently) as commctrl.dll under CE 2.0 and later support comctl32.dll
89// functionality
90inline int wxApp::GetComCtl32Version()
91{
92 return 471;
93}
94
95// this is not currently used at all under CE so it's not really clear what do
96// we need to return from here
97inline int wxApp::GetShell32Version()
98{
99 return 0;
100}
101
102#endif // __WXWINCE__
103
104// ----------------------------------------------------------------------------
105// MSW-specific wxEntry() overload and IMPLEMENT_WXWIN_MAIN definition
106// ----------------------------------------------------------------------------
107
108// we need HINSTANCE declaration to define WinMain()
109#include "wx/msw/wrapwin.h"
110
111#ifndef SW_SHOWNORMAL
112 #define SW_SHOWNORMAL 1
113#endif
114
115// WinMain() is always ANSI, even in Unicode build, under normal Windows
116// but is always Unicode under CE
117#ifdef __WXWINCE__
118 typedef wchar_t *wxCmdLineArgType;
119#else
120 typedef char *wxCmdLineArgType;
121#endif
122
123// wxMSW-only overloads of wxEntry() and wxEntryStart() which take the
124// parameters passed to WinMain() instead of those passed to main()
125extern WXDLLIMPEXP_CORE bool
126 wxEntryStart(HINSTANCE hInstance,
127 HINSTANCE hPrevInstance = NULL,
128 wxCmdLineArgType pCmdLine = NULL,
129 int nCmdShow = SW_SHOWNORMAL);
130
131extern WXDLLIMPEXP_CORE int
132 wxEntry(HINSTANCE hInstance,
133 HINSTANCE hPrevInstance = NULL,
134 wxCmdLineArgType pCmdLine = NULL,
135 int nCmdShow = SW_SHOWNORMAL);
136
137#define IMPLEMENT_WXWIN_MAIN \
138 extern "C" int WINAPI WinMain(HINSTANCE hInstance, \
139 HINSTANCE hPrevInstance, \
140 wxCmdLineArgType lpCmdLine, \
141 int nCmdShow) \
142 { \
143 return wxEntry(hInstance, hPrevInstance, lpCmdLine, nCmdShow); \
144 }
145
146#endif // _WX_APP_H_
147