]> git.saurik.com Git - wxWidgets.git/blob - include/wx/palmos/toplevel.h
wxButton, wxCheckBox, wxSlider, wxToggleButton native implementations for PalmOS.
[wxWidgets.git] / include / wx / palmos / toplevel.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/toplevel.h
3 // Purpose: wxTopLevelWindow
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by: Wlodzimierz ABX Skiba - more than minimal functionality
6 // Created: 10/13/04
7 // RCS-ID: $Id$
8 // Copyright: (c) William Osborne, Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_PALMOS_TOPLEVEL_H_
13 #define _WX_PALMOS_TOPLEVEL_H_
14
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "toplevel.h"
17 #endif
18
19 // ----------------------------------------------------------------------------
20 // wxTopLevelWindowPalm
21 // ----------------------------------------------------------------------------
22
23 class WXDLLEXPORT wxTopLevelWindowPalm : public wxTopLevelWindowBase
24 {
25 public:
26 // constructors and such
27 wxTopLevelWindowPalm() { Init(); }
28
29 wxTopLevelWindowPalm(wxWindow *parent,
30 wxWindowID id,
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)
36 {
37 Init();
38
39 (void)Create(parent, id, title, pos, size, style, name);
40 }
41
42 bool Create(wxWindow *parent,
43 wxWindowID id,
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);
49
50 virtual ~wxTopLevelWindowPalm();
51
52 // implement base class pure virtuals
53 virtual void Maximize(bool maximize = true);
54 virtual bool IsMaximized() const;
55 virtual void Iconize(bool iconize = true);
56 virtual bool IsIconized() const;
57 virtual void SetIcon(const wxIcon& icon);
58 virtual void SetIcons(const wxIconBundle& icons );
59 virtual void Restore();
60
61 #ifndef __WXWINCE__
62 virtual bool SetShape(const wxRegion& region);
63 #endif // __WXWINCE__
64
65 virtual bool Show(bool show = true);
66
67 virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
68 virtual bool IsFullScreen() const { return m_fsIsShowing; }
69
70 // wxPalm only: EnableCloseButton(false) may be used to remove the "Close"
71 // button from the title bar
72 bool EnableCloseButton(bool enable = true);
73
74 // implementation from now on
75 // --------------------------
76
77 // event handlers
78 void OnActivate(wxActivateEvent& event);
79
80 // called by wxWindow whenever it gets focus
81 void SetLastFocus(wxWindow *win) { m_winLastFocused = win; }
82 wxWindow *GetLastFocus() const { return m_winLastFocused; }
83
84 // interface to native frame structure
85 FormType *GetForm();
86
87 protected:
88 // common part of all ctors
89 void Init();
90
91 // common part of Iconize(), Maximize() and Restore()
92 void DoShowWindow(int nShowCmd);
93
94 // translate wxWidgets flags to Windows ones
95 virtual WXDWORD PalmGetStyle(long flags, WXDWORD *exstyle) const;
96
97 // choose the right parent to use with CreateWindow()
98 virtual WXHWND PalmGetParent() const;
99
100 // is the window currently iconized?
101 bool m_iconized;
102
103 // should the frame be maximized when it will be shown? set by Maximize()
104 // when it is called while the frame is hidden
105 bool m_maximizeOnShow;
106
107 // Data to save/restore when calling ShowFullScreen
108 long m_fsStyle; // Passed to ShowFullScreen
109 wxRect m_fsOldSize;
110 long m_fsOldWindowStyle;
111 bool m_fsIsMaximized;
112 bool m_fsIsShowing;
113
114 // the last focused child: we restore focus to it on activation
115 wxWindow *m_winLastFocused;
116
117 DECLARE_EVENT_TABLE()
118 DECLARE_NO_COPY_CLASS(wxTopLevelWindowPalm)
119 };
120
121 static Boolean FrameFormHandleEvent(EventType* pEvent);
122
123 #endif // _WX_PALMOS_TOPLEVEL_H_
124