X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/324eeecb3cdc9522e136af6670443148772b412a..85b1997c095b18cd5e9e54e9d39feaa71c5ffa06:/include/wx/palmos/toplevel.h diff --git a/include/wx/palmos/toplevel.h b/include/wx/palmos/toplevel.h index 9d2faa7655..3879c63bae 100644 --- a/include/wx/palmos/toplevel.h +++ b/include/wx/palmos/toplevel.h @@ -12,15 +12,11 @@ #ifndef _WX_PALMOS_TOPLEVEL_H_ #define _WX_PALMOS_TOPLEVEL_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "toplevel.h" -#endif - // ---------------------------------------------------------------------------- // wxTopLevelWindowPalm // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxTopLevelWindowPalm : public wxTopLevelWindowBase +class WXDLLIMPEXP_CORE wxTopLevelWindowPalm : public wxTopLevelWindowBase { public: // constructors and such @@ -50,12 +46,15 @@ public: virtual ~wxTopLevelWindowPalm(); // implement base class pure virtuals + + virtual void SetTitle( const wxString& title); + virtual wxString GetTitle() const; + virtual void Maximize(bool maximize = true); virtual bool IsMaximized() const; virtual void Iconize(bool iconize = true); virtual bool IsIconized() const; - virtual void SetIcon(const wxIcon& icon); - virtual void SetIcons(const wxIconBundle& icons ); + virtual void SetIcons(const wxIconBundle& icons); virtual void Restore(); #ifndef __WXWINCE__ @@ -82,12 +81,12 @@ public: wxWindow *GetLastFocus() const { return m_winLastFocused; } // interface to native frame structure - FormType *GetForm() const; + WXFORMPTR GetForm() const; // handle native events - bool HandleControlSelect(EventType* event); - bool HandleControlRepeat(EventType* event); - bool HandleSize(EventType* event); + bool HandleControlSelect(WXEVENTPTR event); + bool HandleControlRepeat(WXEVENTPTR event); + bool HandleSize(WXEVENTPTR event); virtual WXWINHANDLE GetWinHandle() const; @@ -122,10 +121,7 @@ protected: wxWindow *m_winLastFocused; DECLARE_EVENT_TABLE() - DECLARE_NO_COPY_CLASS(wxTopLevelWindowPalm) + wxDECLARE_NO_COPY_CLASS(wxTopLevelWindowPalm); }; -static Boolean FrameFormHandleEvent(EventType* pEvent); - #endif // _WX_PALMOS_TOPLEVEL_H_ -