]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/toplevel.h
added GetHimagelist()
[wxWidgets.git] / include / wx / palmos / toplevel.h
index f53a646cff2b78ef5a2714cf8a68acf2129ef538..9d2faa765574450277ac034380c0e5c5d9570b37 100644 (file)
@@ -82,21 +82,28 @@ public:
     wxWindow *GetLastFocus() const { return m_winLastFocused; }
 
     // interface to native frame structure
-    FormType *GetForm();
+    FormType *GetForm() const;
+
+    // handle native events
+    bool HandleControlSelect(EventType* event);
+    bool HandleControlRepeat(EventType* event);
+    bool HandleSize(EventType* 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;