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