]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/app.h
compilation fix
[wxWidgets.git] / include / wx / os2 / app.h
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: app.h
3// Purpose: wxApp class
d88de032 4// Author: David Webster
0e320a79 5// Modified by:
d88de032 6// Created: 10/13/99
0e320a79 7// RCS-ID: $Id$
d88de032 8// Copyright: (c) David Webster
0e320a79
DW
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_APP_H_
13#define _WX_APP_H_
14
19193a2c
KB
15#ifdef __WATCOMC__
16
17#include <sys/ioctl.h>
18#include <sys/select.h>
19
20#else
21
3958ae62
SN
22#include <sys/time.h>
23#include <sys/types.h>
29108552
DW
24
25#ifdef __EMX__
3958ae62 26#include <unistd.h>
29108552
DW
27#else
28#include <utils.h>
29#undef BYTE_ORDER
30#include <types.h>
29108552
DW
31#define INCL_ORDERS
32#endif
3958ae62 33
19193a2c
KB
34#endif
35
0e320a79 36#include "wx/event.h"
d88de032 37#include "wx/icon.h"
0e320a79
DW
38
39class WXDLLEXPORT wxFrame;
40class WXDLLEXPORT wxWindow;
3958ae62 41class WXDLLEXPORT wxApp;
0e320a79
DW
42class WXDLLEXPORT wxKeyEvent;
43class WXDLLEXPORT wxLog;
44
0e320a79 45WXDLLEXPORT_DATA(extern wxApp*) wxTheApp;
43543d98 46WXDLLEXPORT_DATA(extern HAB) vHabmain;
0e320a79
DW
47
48// Force an exit from main loop
9ed0fac8 49void WXDLLEXPORT wxExit(void);
0e320a79
DW
50
51// Yield to other apps/messages
9ed0fac8 52bool WXDLLEXPORT wxYield(void);
0e320a79 53
8c5907ce
DW
54extern MRESULT EXPENTRY wxWndProc( HWND
55 ,ULONG
56 ,MPARAM
57 ,MPARAM
58 );
59
3958ae62 60
0e320a79
DW
61// Represents the application. Derive OnInit and declare
62// a new App object to start application
d88de032 63class WXDLLEXPORT wxApp : public wxAppBase
0e320a79 64{
d88de032 65 DECLARE_DYNAMIC_CLASS(wxApp)
0e320a79 66
d88de032
DW
67public:
68 wxApp();
69 virtual ~wxApp();
0e320a79 70
9ed0fac8
DW
71 virtual bool OnInitGui(void);
72
d88de032 73 // override base class (pure) virtuals
9ed0fac8
DW
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);
e2478fde
VZ
79
80 virtual void Exit();
81
8461e4c2 82 virtual bool Yield(bool onlyIfNeeded = FALSE);
e2478fde 83 virtual void WakeUpIdle(void);
0e320a79 84
9ed0fac8
DW
85 virtual void SetPrintMode(int mode) { m_nPrintMode = mode; }
86 virtual int GetPrintMode(void) const { return m_nPrintMode; }
0e320a79 87
d88de032 88 // implementation only
9ed0fac8
DW
89 void OnIdle(wxIdleEvent& rEvent);
90 void OnEndSession(wxCloseEvent& rEvent);
91 void OnQueryEndSession(wxCloseEvent& rEvent);
0e320a79 92
3958ae62
SN
93 int AddSocketHandler(int handle, int mask,
94 void (*callback)(void*), void * gsock);
95 void RemoveSocketHandler(int handle);
96 void HandleSockets();
97
0e320a79 98protected:
9ed0fac8
DW
99 bool m_bShowOnInit;
100 int m_nPrintMode; // wxPRINT_WINDOWS, wxPRINT_POSTSCRIPT
0e320a79 101
9ed0fac8
DW
102 //
103 // PM-specific wxApp definitions */
104 //
3958ae62 105private:
29108552
DW
106 int m_maxSocketHandles;
107 int m_maxSocketNr;
108 int m_lastUsedHandle;
109 fd_set m_readfds;
110 fd_set m_writefds;
111 void* m_sockCallbackInfo;
3958ae62 112
d88de032 113public:
0e320a79 114
d88de032 115 // Implementation
05e2b077 116 virtual bool Initialize(int& argc, wxChar **argv);
94826170 117 virtual void CleanUp(void);
d88de032 118
9ed0fac8 119 static bool RegisterWindowClasses(HAB vHab);
153b1416 120 virtual void DoMessage(WXMSG *pMsg);
9ed0fac8 121 virtual bool DoMessage(void);
d88de032 122 virtual bool ProcessMessage(WXMSG* pMsg);
0e320a79
DW
123
124public:
9ed0fac8 125 int m_nCmdShow;
3958ae62 126 HMQ m_hMq;
0e320a79
DW
127
128protected:
9ed0fac8 129 bool m_bKeepGoing ;
0e320a79 130
d88de032 131 DECLARE_EVENT_TABLE()
0e320a79 132};
0e320a79
DW
133#endif
134 // _WX_APP_H_
135