]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/app.h
GTK+ doesn't like slider with min=max values
[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
a3ef5bf5 15#include "wx/event.h"
ebea0891 16#include "wx/icon.h"
2bda0e17 17
b5dbe15d
VS
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;
2bda0e17 23
2bda0e17
KB
24// Represents the application. Derive OnInit and declare
25// a new App object to start application
094637f6 26class WXDLLEXPORT wxApp : public wxAppBase
2bda0e17 27{
094637f6 28 DECLARE_DYNAMIC_CLASS(wxApp)
c085e333 29
094637f6
VZ
30public:
31 wxApp();
32 virtual ~wxApp();
580c10e3 33
094637f6 34 // override base class (pure) virtuals
05e2b077 35 virtual bool Initialize(int& argc, wxChar **argv);
94826170
VZ
36 virtual void CleanUp();
37
77c46f00 38 virtual bool Yield(bool onlyIfNeeded = false);
e2478fde 39 virtual void WakeUpIdle();
2bda0e17 40
094637f6
VZ
41 virtual void SetPrintMode(int mode) { m_printMode = mode; }
42 virtual int GetPrintMode() const { return m_printMode; }
2bda0e17 43
094637f6
VZ
44 // implementation only
45 void OnIdle(wxIdleEvent& event);
46 void OnEndSession(wxCloseEvent& event);
47 void OnQueryEndSession(wxCloseEvent& event);
2bda0e17 48
6046e57a
VZ
49#if wxUSE_EXCEPTIONS
50 virtual bool OnExceptionInMainLoop();
51#endif // wxUSE_EXCEPTIONS
52
2bda0e17 53protected:
1e6feb95 54 int m_printMode; // wxPRINT_WINDOWS, wxPRINT_POSTSCRIPT
094637f6 55
2bda0e17 56public:
094637f6 57 // Implementation
094637f6 58 static bool RegisterWindowClasses();
9787a4b6 59 static bool UnregisterWindowClasses();
ed45e263 60
6d167489 61#if wxUSE_RICHEDIT
77c46f00 62 // initialize the richedit DLL of (at least) given version, return true if
6d167489
VZ
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();
2bda0e17 70
94826170
VZ
71 // the SW_XXX value to be used for the frames opened by the application
72 // (currently seems unused which is a bug -- TODO)
73 static int m_nCmdShow;
2bda0e17
KB
74
75protected:
094637f6 76 DECLARE_EVENT_TABLE()
fc7a2a60 77 DECLARE_NO_COPY_CLASS(wxApp)
2bda0e17
KB
78};
79
956495ca
VZ
80// ----------------------------------------------------------------------------
81// MSW-specific wxEntry() overload and IMPLEMENT_WXWIN_MAIN definition
82// ----------------------------------------------------------------------------
83
84// we need HINSTANCE declaration to define WinMain()
85#include "wx/msw/wrapwin.h"
86
87#ifndef SW_SHOWNORMAL
88 #define SW_SHOWNORMAL 1
89#endif
90
91// WinMain() is always ANSI, even in Unicode build, under normal Windows
92// but is always Unicode under CE
93#ifdef __WXWINCE__
94 typedef wchar_t *wxCmdLineArgType;
95#else
96 typedef char *wxCmdLineArgType;
97#endif
98
d76a558d
VZ
99// wxMSW-only overloads of wxEntry() and wxEntryStart() which take the
100// parameters passed to WinMain() instead of those passed to main()
101extern bool WXDLLEXPORT
102wxEntryStart(HINSTANCE hInstance,
103 HINSTANCE hPrevInstance = NULL,
104 wxCmdLineArgType pCmdLine = NULL,
105 int nCmdShow = SW_SHOWNORMAL);
106
956495ca
VZ
107extern int WXDLLEXPORT
108wxEntry(HINSTANCE hInstance,
109 HINSTANCE hPrevInstance = NULL,
110 wxCmdLineArgType pCmdLine = NULL,
111 int nCmdShow = SW_SHOWNORMAL);
112
113#define IMPLEMENT_WXWIN_MAIN \
114 extern "C" int WINAPI WinMain(HINSTANCE hInstance, \
115 HINSTANCE hPrevInstance, \
116 wxCmdLineArgType lpCmdLine, \
117 int nCmdShow) \
118 { \
119 return wxEntry(hInstance, hPrevInstance, lpCmdLine, nCmdShow); \
120 }
2bda0e17 121
94826170 122#endif // _WX_APP_H_
2bda0e17 123