]> git.saurik.com Git - wxWidgets.git/blob - include/wx/palmos/toplevel.h
Global platform header (<PalmOS.h>) removed from public wx-headers (but included...
[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 WXFORMPTR GetForm() const;
86
87 // handle native events
88 bool HandleControlSelect(WXEVENTPTR event);
89 bool HandleControlRepeat(WXEVENTPTR event);
90 bool HandleSize(WXEVENTPTR event);
91
92 virtual WXWINHANDLE GetWinHandle() const;
93
94 protected:
95 // common part of all ctors
96 void Init();
97
98 // getting and setting sizes
99 virtual void DoGetSize( int *width, int *height ) const;
100
101 // common part of Iconize(), Maximize() and Restore()
102 void DoShowWindow(int nShowCmd);
103
104 // translate wxWidgets flags to Windows ones
105 virtual WXDWORD PalmGetStyle(long flags, WXDWORD *exstyle) const;
106
107 // is the window currently iconized?
108 bool m_iconized;
109
110 // should the frame be maximized when it will be shown? set by Maximize()
111 // when it is called while the frame is hidden
112 bool m_maximizeOnShow;
113
114 // Data to save/restore when calling ShowFullScreen
115 long m_fsStyle; // Passed to ShowFullScreen
116 wxRect m_fsOldSize;
117 long m_fsOldWindowStyle;
118 bool m_fsIsMaximized;
119 bool m_fsIsShowing;
120
121 // the last focused child: we restore focus to it on activation
122 wxWindow *m_winLastFocused;
123
124 DECLARE_EVENT_TABLE()
125 DECLARE_NO_COPY_CLASS(wxTopLevelWindowPalm)
126 };
127
128 #endif // _WX_PALMOS_TOPLEVEL_H_
129