]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/app.h
Fix for the undocumented holes in spiner sizes.
[wxWidgets.git] / include / wx / msw / app.h
CommitLineData
2bda0e17
KB
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$
bbcdf8bc 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_APP_H_
13#define _WX_APP_H_
2bda0e17 14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
2bda0e17
KB
16#pragma interface "app.h"
17#endif
18
a3ef5bf5 19#include "wx/event.h"
ebea0891 20#include "wx/icon.h"
2bda0e17 21
62a9d04c
VS
22class WXDLLIMPEXP_CORE wxFrame;
23class WXDLLIMPEXP_CORE wxWindow;
24class WXDLLIMPEXP_CORE wxApp;
25class WXDLLIMPEXP_CORE wxKeyEvent;
26class WXDLLIMPEXP_BASE wxLog;
2bda0e17 27
2bda0e17
KB
28// Represents the application. Derive OnInit and declare
29// a new App object to start application
094637f6 30class WXDLLEXPORT wxApp : public wxAppBase
2bda0e17 31{
094637f6 32 DECLARE_DYNAMIC_CLASS(wxApp)
c085e333 33
094637f6
VZ
34public:
35 wxApp();
36 virtual ~wxApp();
580c10e3 37
094637f6 38 // override base class (pure) virtuals
05e2b077 39 virtual bool Initialize(int& argc, wxChar **argv);
94826170
VZ
40 virtual void CleanUp();
41
8461e4c2 42 virtual bool Yield(bool onlyIfNeeded = FALSE);
e2478fde 43 virtual void WakeUpIdle();
2bda0e17 44
094637f6
VZ
45 virtual void SetPrintMode(int mode) { m_printMode = mode; }
46 virtual int GetPrintMode() const { return m_printMode; }
2bda0e17 47
094637f6
VZ
48 // implementation only
49 void OnIdle(wxIdleEvent& event);
50 void OnEndSession(wxCloseEvent& event);
51 void OnQueryEndSession(wxCloseEvent& event);
2bda0e17 52
6046e57a
VZ
53#if wxUSE_EXCEPTIONS
54 virtual bool OnExceptionInMainLoop();
55#endif // wxUSE_EXCEPTIONS
56
2bda0e17 57protected:
1e6feb95 58 int m_printMode; // wxPRINT_WINDOWS, wxPRINT_POSTSCRIPT
094637f6 59
2bda0e17 60public:
094637f6 61 // Implementation
094637f6 62 static bool RegisterWindowClasses();
9787a4b6 63 static bool UnregisterWindowClasses();
ed45e263 64
6d167489
VZ
65#if wxUSE_RICHEDIT
66 // initialize the richedit DLL of (at least) given version, return TRUE if
67 // ok (Win95 has version 1, Win98/NT4 has 1 and 2, W2K has 3)
68 static bool InitRichEdit(int version = 2);
69#endif // wxUSE_RICHEDIT
70
71 // returns 400, 470, 471 for comctl32.dll 4.00, 4.70, 4.71 or 0 if it
72 // wasn't found at all
73 static int GetComCtl32Version();
2bda0e17 74
94826170
VZ
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;
2bda0e17
KB
78
79protected:
094637f6 80 DECLARE_EVENT_TABLE()
fc7a2a60 81 DECLARE_NO_COPY_CLASS(wxApp)
2bda0e17
KB
82};
83
956495ca
VZ
84// ----------------------------------------------------------------------------
85// MSW-specific wxEntry() overload and IMPLEMENT_WXWIN_MAIN definition
86// ----------------------------------------------------------------------------
87
88// we need HINSTANCE declaration to define WinMain()
89#include "wx/msw/wrapwin.h"
90
91#ifndef SW_SHOWNORMAL
92 #define SW_SHOWNORMAL 1
93#endif
94
95// WinMain() is always ANSI, even in Unicode build, under normal Windows
96// but is always Unicode under CE
97#ifdef __WXWINCE__
98 typedef wchar_t *wxCmdLineArgType;
99#else
100 typedef char *wxCmdLineArgType;
101#endif
102
103extern int WXDLLEXPORT
104wxEntry(HINSTANCE hInstance,
105 HINSTANCE hPrevInstance = NULL,
106 wxCmdLineArgType pCmdLine = NULL,
107 int nCmdShow = SW_SHOWNORMAL);
108
109#define IMPLEMENT_WXWIN_MAIN \
110 extern "C" int WINAPI WinMain(HINSTANCE hInstance, \
111 HINSTANCE hPrevInstance, \
112 wxCmdLineArgType lpCmdLine, \
113 int nCmdShow) \
114 { \
115 return wxEntry(hInstance, hPrevInstance, lpCmdLine, nCmdShow); \
116 }
2bda0e17 117
94826170 118#endif // _WX_APP_H_
2bda0e17 119