]>
Commit | Line | Data |
---|---|---|
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 | // ---------------------------------------------------------------------------- | |
16 | // wxTopLevelWindowPalm | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | class WXDLLEXPORT wxTopLevelWindowPalm : public wxTopLevelWindowBase | |
20 | { | |
21 | public: | |
22 | // constructors and such | |
23 | wxTopLevelWindowPalm() { Init(); } | |
24 | ||
25 | wxTopLevelWindowPalm(wxWindow *parent, | |
26 | wxWindowID id, | |
27 | const wxString& title, | |
28 | const wxPoint& pos = wxDefaultPosition, | |
29 | const wxSize& size = wxDefaultSize, | |
30 | long style = wxDEFAULT_FRAME_STYLE, | |
31 | const wxString& name = wxFrameNameStr) | |
32 | { | |
33 | Init(); | |
34 | ||
35 | (void)Create(parent, id, title, pos, size, style, name); | |
36 | } | |
37 | ||
38 | bool Create(wxWindow *parent, | |
39 | wxWindowID id, | |
40 | const wxString& title, | |
41 | const wxPoint& pos = wxDefaultPosition, | |
42 | const wxSize& size = wxDefaultSize, | |
43 | long style = wxDEFAULT_FRAME_STYLE, | |
44 | const wxString& name = wxFrameNameStr); | |
45 | ||
46 | virtual ~wxTopLevelWindowPalm(); | |
47 | ||
48 | // implement base class pure virtuals | |
49 | ||
50 | virtual void SetTitle( const wxString& title); | |
51 | virtual wxString GetTitle() const; | |
52 | ||
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_ |