]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/toplevel.h
removed wxUSE_PENWINDOWS (and its misspellings), it didn't work and wasn't used/defined
[wxWidgets.git] / include / wx / palmos / toplevel.h
index 9783f91ad6e8486d9b621096ae0811e25e01d479..f87488145d2c8a3859986503ca613139aefcbcbc 100644 (file)
@@ -81,19 +81,29 @@ public:
     void SetLastFocus(wxWindow *win) { m_winLastFocused = win; }
     wxWindow *GetLastFocus() const { return m_winLastFocused; }
 
+    // interface to native frame structure
+    WXFORMPTR GetForm() const;
+
+    // handle native events
+    bool HandleControlSelect(WXEVENTPTR event);
+    bool HandleControlRepeat(WXEVENTPTR event);
+    bool HandleSize(WXEVENTPTR event);
+
+    virtual WXWINHANDLE GetWinHandle() const;
+
 protected:
     // common part of all ctors
     void Init();
 
+    // getting and setting sizes
+    virtual void DoGetSize( int *width, int *height ) const;
+
     // common part of Iconize(), Maximize() and Restore()
     void DoShowWindow(int nShowCmd);
 
     // translate wxWidgets flags to Windows ones
     virtual WXDWORD PalmGetStyle(long flags, WXDWORD *exstyle) const;
 
-    // choose the right parent to use with CreateWindow()
-    virtual WXHWND PalmGetParent() const;
-
     // is the window currently iconized?
     bool m_iconized;
 
@@ -115,7 +125,5 @@ protected:
     DECLARE_NO_COPY_CLASS(wxTopLevelWindowPalm)
 };
 
-static Boolean FrameFormHandleEvent(EventType* pEvent);
-
 #endif // _WX_PALMOS_TOPLEVEL_H_