]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/toplevel.h
Removed WXWIN_COMPATIBILITY_2_2 together with code guarded by it.
[wxWidgets.git] / include / wx / palmos / toplevel.h
index 3db01b1fcd985ff792517641c0f761e0ea778e28..cb2680acfde197d1c2412a6c9d32effc2ba49d80 100644 (file)
 #ifndef _WX_PALMOS_TOPLEVEL_H_
 #define _WX_PALMOS_TOPLEVEL_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-    #pragma interface "toplevel.h"
-#endif
-
 // ----------------------------------------------------------------------------
 // wxTopLevelWindowPalm
 // ----------------------------------------------------------------------------
@@ -82,10 +78,14 @@ public:
     wxWindow *GetLastFocus() const { return m_winLastFocused; }
 
     // interface to native frame structure
-    FormType *GetForm() const;
+    WXFORMPTR GetForm() const;
+
+    // handle native events
+    bool HandleControlSelect(WXEVENTPTR event);
+    bool HandleControlRepeat(WXEVENTPTR event);
+    bool HandleSize(WXEVENTPTR event);
 
-    // handle controls
-    bool HandleControlSelect(EventType* event);
+    virtual WXWINHANDLE GetWinHandle() const;
 
 protected:
     // common part of all ctors
@@ -100,9 +100,6 @@ protected:
     // 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;
 
@@ -124,7 +121,5 @@ protected:
     DECLARE_NO_COPY_CLASS(wxTopLevelWindowPalm)
 };
 
-static Boolean FrameFormHandleEvent(EventType* pEvent);
-
 #endif // _WX_PALMOS_TOPLEVEL_H_