X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..23b4f32040409166e2ee53314c5b27c593982c0a:/include/wx/palmos/window.h?ds=sidebyside diff --git a/include/wx/palmos/window.h b/include/wx/palmos/window.h index 698bf7a181..09c8d5dd9f 100644 --- a/include/wx/palmos/window.h +++ b/include/wx/palmos/window.h @@ -27,7 +27,7 @@ // wxWindow declaration for Palm // --------------------------------------------------------------------------- -class WXDLLEXPORT wxWindowPalm : public wxWindowBase +class WXDLLIMPEXP_CORE wxWindowPalm : public wxWindowBase { public: wxWindowPalm() { Init(); } @@ -53,8 +53,9 @@ public: const wxString& name = wxPanelNameStr); // implement base class pure virtuals - virtual void SetTitle( const wxString& title); - virtual wxString GetTitle() const; + + virtual void SetLabel( const wxString& label); + virtual wxString GetLabel() const; virtual void Raise(); virtual void Lower(); @@ -72,8 +73,6 @@ public: virtual void Refresh( bool eraseBackground = true, const wxRect *rect = NULL ); virtual void Update(); - virtual void Freeze(); - virtual void Thaw(); virtual bool SetCursor( const wxCursor &cursor ); virtual bool SetFont( const wxFont &font ); @@ -131,8 +130,9 @@ public: // simple accessors // ---------------- - virtual WXWINHANDLE GetWinHandle() const { return m_handle; } - virtual WXWidget GetHandle() const { return GetWinHandle(); } + WXHWND GetHWND() const { return m_hWnd; } + void SetHWND(WXHWND hWnd) { m_hWnd = hWnd; } + virtual WXWidget GetHandle() const { return GetHWND(); } // event handlers // -------------- @@ -207,7 +207,7 @@ public: protected: // the window handle - WXWINHANDLE m_handle; + WXHWND m_hWnd; WXFORMPTR FrameForm; WXFORMPTR GetFormPtr(); @@ -269,12 +269,6 @@ private: bool HandleMoving(wxRect& rect); bool HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags); - // list of disabled children before last call to our Disable() - wxWindowList *m_childrenDisabled; - - // number of calls to Freeze() minus number of calls to Thaw() - unsigned int m_frozenness; - DECLARE_DYNAMIC_CLASS(wxWindowPalm) DECLARE_NO_COPY_CLASS(wxWindowPalm) DECLARE_EVENT_TABLE()