X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b9b1d6c8ddc0e923c368529efb0e011edeec44e6..d11e8786ed13b72766eea18cb577cc00f9f08f41:/include/wx/os2/toplevel.h?ds=inline diff --git a/include/wx/os2/toplevel.h b/include/wx/os2/toplevel.h index c52efb6642..4e056f9da4 100644 --- a/include/wx/os2/toplevel.h +++ b/include/wx/os2/toplevel.h @@ -16,7 +16,7 @@ #pragma interface "toplevel.h" #endif -enum ETemplateID { kResizeableDialog = 127 +enum ETemplateID { kResizeableDialog = 130 ,kCaptionDialog ,kNoCaptionDialog }; @@ -67,6 +67,8 @@ public: virtual void Restore(void); virtual void SendSizeEvent(void); virtual void SetIcon(const wxIcon& rIcon); + virtual void SetIcons(const wxIconBundle& rIcons); + virtual bool Show(bool bShow = TRUE); virtual bool ShowFullScreen( bool bShow ,long lStyle = wxFULLSCREEN_ALL @@ -84,6 +86,11 @@ public: // -------------------------- // PSWP GetSwpClient(void) { return &m_vSwpClient; } + + void OnActivate(wxActivateEvent& rEvent); + + void SetLastFocus(wxWindow *pWin) { m_pWinLastFocused = pWin; } + wxWindow* GetLastFocus(void) const { return m_pWinLastFocused; } protected: // // Common part of all ctors @@ -124,11 +131,17 @@ protected: ) const; // - // Translate wxWindows flags into OS flags + // Translate wxWidgets flags into OS flags // virtual WXDWORD OS2GetStyle( long lFlag ,WXDWORD* pdwExstyle ) const; + + // + // Choose the right parent to use with CreateWindow() + // + virtual WXHWND OS2GetParent(void) const; + // // Is the frame currently iconized? // @@ -149,16 +162,16 @@ protected: bool m_bFsIsMaximized; bool m_bFsIsShowing; + wxWindow* m_pWinLastFocused; + WXHWND m_hFrame; SWP m_vSwp; SWP m_vSwpClient; static bool m_sbInitialized; -}; // end of CLASS wxTopLevelWindowOS2 + static wxWindow* m_spHiddenParent; -// -// List of all frames and modeless dialogs -// -extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows; + DECLARE_EVENT_TABLE() +}; // end of CLASS wxTopLevelWindowOS2 #endif // _WX_MSW_TOPLEVEL_H_