#ifndef _WX_PALMOS_TOPLEVEL_H_
#define _WX_PALMOS_TOPLEVEL_H_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma interface "toplevel.h"
-#endif
-
// ----------------------------------------------------------------------------
// wxTopLevelWindowPalm
// ----------------------------------------------------------------------------
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__
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);
+
+ virtual WXWINHANDLE GetWinHandle() const;
protected:
// common part of all ctors
// 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;
DECLARE_NO_COPY_CLASS(wxTopLevelWindowPalm)
};
-static Boolean FrameFormHandleEvent(EventType* pEvent);
-
#endif // _WX_PALMOS_TOPLEVEL_H_
-