X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8c5907cea3231c246b879c586a7140b6dc12413f..6e264973e636cc41915d166cb7eddf2a7e72cf9b:/include/wx/os2/app.h diff --git a/include/wx/os2/app.h b/include/wx/os2/app.h index 4a5422a4df..35a8cc9440 100644 --- a/include/wx/os2/app.h +++ b/include/wx/os2/app.h @@ -12,12 +12,24 @@ #ifndef _WX_APP_H_ #define _WX_APP_H_ +#include +#include + +#ifdef __EMX__ +#include +#else +#include +#undef BYTE_ORDER +#include +#define INCL_ORDERS +#endif + #include "wx/event.h" #include "wx/icon.h" class WXDLLEXPORT wxFrame; class WXDLLEXPORT wxWindow; -class WXDLLEXPORT wxApp ; +class WXDLLEXPORT wxApp; class WXDLLEXPORT wxKeyEvent; class WXDLLEXPORT wxLog; @@ -36,6 +48,7 @@ extern MRESULT EXPENTRY wxWndProc( HWND ,MPARAM ); + // Represents the application. Derive OnInit and declare // a new App object to start application class WXDLLEXPORT wxApp : public wxAppBase @@ -76,6 +89,11 @@ public: void SetAuto3D(bool bFlag) { m_bAuto3D = bFlag; } bool GetAuto3D(void) const { return m_bAuto3D; } + int AddSocketHandler(int handle, int mask, + void (*callback)(void*), void * gsock); + void RemoveSocketHandler(int handle); + void HandleSockets(); + protected: bool m_bShowOnInit; int m_nPrintMode; // wxPRINT_WINDOWS, wxPRINT_POSTSCRIPT @@ -84,6 +102,14 @@ protected: // // PM-specific wxApp definitions */ // +private: + int m_maxSocketHandles; + int m_maxSocketNr; + int m_lastUsedHandle; + fd_set m_readfds; + fd_set m_writefds; + void* m_sockCallbackInfo; + public: // Implementation @@ -91,6 +117,7 @@ public: static void CleanUp(void); static bool RegisterWindowClasses(HAB vHab); + virtual void DoMessage(WXMSG *pMsg); virtual bool DoMessage(void); virtual bool ProcessMessage(WXMSG* pMsg); void DeletePendingObjects(void); @@ -98,13 +125,12 @@ public: public: int m_nCmdShow; + HMQ m_hMq; protected: bool m_bKeepGoing ; DECLARE_EVENT_TABLE() -private: - HMQ m_hMq; }; int WXDLLEXPORT wxEntry( int argc, char *argv[] );