1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/toplevel.h
3 // Purpose: wxTopLevelWindow
4 // Author: William Osborne
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PALMOS_TOPLEVEL_H_
13 #define _WX_PALMOS_TOPLEVEL_H_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "toplevel.h"
19 // ----------------------------------------------------------------------------
20 // wxTopLevelWindowPalm
21 // ----------------------------------------------------------------------------
23 class WXDLLEXPORT wxTopLevelWindowPalm
: public wxTopLevelWindowBase
26 // constructors and such
27 wxTopLevelWindowPalm() { Init(); }
29 wxTopLevelWindowPalm(wxWindow
*parent
,
31 const wxString
& title
,
32 const wxPoint
& pos
= wxDefaultPosition
,
33 const wxSize
& size
= wxDefaultSize
,
34 long style
= wxDEFAULT_FRAME_STYLE
,
35 const wxString
& name
= wxFrameNameStr
)
39 (void)Create(parent
, id
, title
, pos
, size
, style
, name
);
42 bool Create(wxWindow
*parent
,
44 const wxString
& title
,
45 const wxPoint
& pos
= wxDefaultPosition
,
46 const wxSize
& size
= wxDefaultSize
,
47 long style
= wxDEFAULT_FRAME_STYLE
,
48 const wxString
& name
= wxFrameNameStr
);
50 bool Create(wxWindow
*parent
,
52 const wxString
& title
,
59 virtual ~wxTopLevelWindowPalm();
61 // implement base class pure virtuals
62 virtual void Maximize(bool maximize
= true);
63 virtual bool IsMaximized() const;
64 virtual void Iconize(bool iconize
= true);
65 virtual bool IsIconized() const;
66 virtual void SetIcon(const wxIcon
& icon
);
67 virtual void SetIcons(const wxIconBundle
& icons
);
68 virtual void Restore();
71 virtual bool SetShape(const wxRegion
& region
);
74 virtual bool Show(bool show
= true);
76 virtual bool ShowFullScreen(bool show
, long style
= wxFULLSCREEN_ALL
);
77 virtual bool IsFullScreen() const { return m_fsIsShowing
; }
79 // wxPalm only: EnableCloseButton(false) may be used to remove the "Close"
80 // button from the title bar
81 bool EnableCloseButton(bool enable
= true);
83 // implementation from now on
84 // --------------------------
87 void OnActivate(wxActivateEvent
& event
);
89 // called by wxWindow whenever it gets focus
90 void SetLastFocus(wxWindow
*win
) { m_winLastFocused
= win
; }
91 wxWindow
*GetLastFocus() const { return m_winLastFocused
; }
94 // common part of all ctors
97 // create a new frame, return false if it couldn't be created
98 bool CreateFrame(const wxString
& title
,
102 // create a new dialog using the given dialog template from resources,
103 // return false if it couldn't be created
104 bool CreateDialog(const void *dlgTemplate
,
105 const wxString
& title
,
109 // common part of Iconize(), Maximize() and Restore()
110 void DoShowWindow(int nShowCmd
);
112 // translate wxWidgets flags to Windows ones
113 virtual WXDWORD
PalmGetStyle(long flags
, WXDWORD
*exstyle
) const;
115 // choose the right parent to use with CreateWindow()
116 virtual WXHWND
PalmGetParent() const;
118 // is the window currently iconized?
121 // should the frame be maximized when it will be shown? set by Maximize()
122 // when it is called while the frame is hidden
123 bool m_maximizeOnShow
;
125 // Data to save/restore when calling ShowFullScreen
126 long m_fsStyle
; // Passed to ShowFullScreen
128 long m_fsOldWindowStyle
;
129 bool m_fsIsMaximized
;
132 // the last focused child: we restore focus to it on activation
133 wxWindow
*m_winLastFocused
;
135 DECLARE_EVENT_TABLE()
136 DECLARE_NO_COPY_CLASS(wxTopLevelWindowPalm
)
139 static Boolean
FrameFormHandleEvent(EventType
* pEvent
);
141 #endif // _WX_PALMOS_TOPLEVEL_H_