]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/os2/app.h
compilation fixes (I wonder how did you people ever compile it...)
[wxWidgets.git] / include / wx / os2 / app.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: app.h
3// Purpose: wxApp class
4// Author: David Webster
5// Modified by:
6// Created: 10/13/99
7// RCS-ID: $Id$
8// Copyright: (c) David Webster
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_APP_H_
13#define _WX_APP_H_
14
15#ifdef __WATCOMC__
16
17#include <sys/ioctl.h>
18#include <sys/select.h>
19
20#else
21
22#include <sys/time.h>
23#include <sys/types.h>
24
25#ifdef __EMX__
26#include <unistd.h>
27#else
28#include <utils.h>
29#undef BYTE_ORDER
30#include <types.h>
31#define INCL_ORDERS
32#endif
33
34#endif
35
36#include "wx/event.h"
37#include "wx/icon.h"
38
39class WXDLLEXPORT wxFrame;
40class WXDLLEXPORT wxWindow;
41class WXDLLEXPORT wxApp;
42class WXDLLEXPORT wxKeyEvent;
43class WXDLLEXPORT wxLog;
44
45WXDLLEXPORT_DATA(extern wxApp*) wxTheApp;
46WXDLLEXPORT_DATA(extern HAB) vHabmain;
47
48// Force an exit from main loop
49void WXDLLEXPORT wxExit(void);
50
51// Yield to other apps/messages
52bool WXDLLEXPORT wxYield(void);
53
54extern MRESULT EXPENTRY wxWndProc( HWND
55 ,ULONG
56 ,MPARAM
57 ,MPARAM
58 );
59
60
61// Represents the application. Derive OnInit and declare
62// a new App object to start application
63class WXDLLEXPORT wxApp : public wxAppBase
64{
65 DECLARE_DYNAMIC_CLASS(wxApp)
66
67public:
68 wxApp();
69 virtual ~wxApp();
70
71 virtual bool OnInitGui(void);
72
73 // override base class (pure) virtuals
74 virtual int MainLoop(void);
75 virtual void ExitMainLoop(void);
76 virtual bool Initialized(void);
77 virtual bool Pending(void) ;
78 virtual void Dispatch(void);
79 virtual bool Yield(bool onlyIfNeeded = FALSE);
80
81 virtual wxIcon GetStdIcon(int which) const;
82
83 virtual void SetPrintMode(int mode) { m_nPrintMode = mode; }
84 virtual int GetPrintMode(void) const { return m_nPrintMode; }
85
86 // implementation only
87 void OnIdle(wxIdleEvent& rEvent);
88 void OnEndSession(wxCloseEvent& rEvent);
89 void OnQueryEndSession(wxCloseEvent& rEvent);
90
91 // Send idle event to all top-level windows.
92 // Returns TRUE if more idle time is requested.
93 bool SendIdleEvents(void);
94
95 // Send idle event to window and all subwindows
96 // Returns TRUE if more idle time is requested.
97 bool SendIdleEvents(wxWindow* pWin);
98
99 void SetAuto3D(bool bFlag) { m_bAuto3D = bFlag; }
100 bool GetAuto3D(void) const { return m_bAuto3D; }
101
102 int AddSocketHandler(int handle, int mask,
103 void (*callback)(void*), void * gsock);
104 void RemoveSocketHandler(int handle);
105 void HandleSockets();
106
107protected:
108 bool m_bShowOnInit;
109 int m_nPrintMode; // wxPRINT_WINDOWS, wxPRINT_POSTSCRIPT
110 bool m_bAuto3D ; // Always use 3D controls, except where overriden
111
112 //
113 // PM-specific wxApp definitions */
114 //
115private:
116 int m_maxSocketHandles;
117 int m_maxSocketNr;
118 int m_lastUsedHandle;
119 fd_set m_readfds;
120 fd_set m_writefds;
121 void* m_sockCallbackInfo;
122
123public:
124
125 // Implementation
126 static bool Initialize(HAB vHab);
127 static void CleanUp(void);
128
129 static bool RegisterWindowClasses(HAB vHab);
130 virtual void DoMessage(WXMSG *pMsg);
131 virtual bool DoMessage(void);
132 virtual bool ProcessMessage(WXMSG* pMsg);
133 void DeletePendingObjects(void);
134 bool ProcessIdle(void);
135
136public:
137 int m_nCmdShow;
138 HMQ m_hMq;
139
140protected:
141 bool m_bKeepGoing ;
142
143 DECLARE_EVENT_TABLE()
144};
145
146int WXDLLEXPORT wxEntry( int argc, char *argv[] );
147#endif
148 // _WX_APP_H_
149