]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/app.h
Getting rid of odd control characters at EOL in source.
[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);
8461e4c2 79 virtual bool Yield(bool onlyIfNeeded = FALSE);
0e320a79 80
d88de032 81 virtual wxIcon GetStdIcon(int which) const;
0e320a79 82
9ed0fac8
DW
83 virtual void SetPrintMode(int mode) { m_nPrintMode = mode; }
84 virtual int GetPrintMode(void) const { return m_nPrintMode; }
0e320a79 85
d88de032 86 // implementation only
9ed0fac8
DW
87 void OnIdle(wxIdleEvent& rEvent);
88 void OnEndSession(wxCloseEvent& rEvent);
89 void OnQueryEndSession(wxCloseEvent& rEvent);
0e320a79 90
d88de032
DW
91 // Send idle event to all top-level windows.
92 // Returns TRUE if more idle time is requested.
9ed0fac8 93 bool SendIdleEvents(void);
0e320a79 94
d88de032
DW
95 // Send idle event to window and all subwindows
96 // Returns TRUE if more idle time is requested.
9ed0fac8 97 bool SendIdleEvents(wxWindow* pWin);
0e320a79 98
9ed0fac8
DW
99 void SetAuto3D(bool bFlag) { m_bAuto3D = bFlag; }
100 bool GetAuto3D(void) const { return m_bAuto3D; }
0e320a79 101
3958ae62
SN
102 int AddSocketHandler(int handle, int mask,
103 void (*callback)(void*), void * gsock);
104 void RemoveSocketHandler(int handle);
105 void HandleSockets();
106
0e320a79 107protected:
9ed0fac8
DW
108 bool m_bShowOnInit;
109 int m_nPrintMode; // wxPRINT_WINDOWS, wxPRINT_POSTSCRIPT
110 bool m_bAuto3D ; // Always use 3D controls, except where overriden
0e320a79 111
9ed0fac8
DW
112 //
113 // PM-specific wxApp definitions */
114 //
3958ae62 115private:
29108552
DW
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;
3958ae62 122
d88de032 123public:
0e320a79 124
d88de032 125 // Implementation
9ed0fac8
DW
126 static bool Initialize(HAB vHab);
127 static void CleanUp(void);
d88de032 128
9ed0fac8 129 static bool RegisterWindowClasses(HAB vHab);
153b1416 130 virtual void DoMessage(WXMSG *pMsg);
9ed0fac8 131 virtual bool DoMessage(void);
d88de032 132 virtual bool ProcessMessage(WXMSG* pMsg);
9ed0fac8
DW
133 void DeletePendingObjects(void);
134 bool ProcessIdle(void);
0e320a79
DW
135
136public:
9ed0fac8 137 int m_nCmdShow;
3958ae62 138 HMQ m_hMq;
0e320a79
DW
139
140protected:
9ed0fac8 141 bool m_bKeepGoing ;
0e320a79 142
d88de032 143 DECLARE_EVENT_TABLE()
0e320a79
DW
144};
145
9ed0fac8 146int WXDLLEXPORT wxEntry( int argc, char *argv[] );
0e320a79
DW
147#endif
148 // _WX_APP_H_
149