]>
Commit | Line | Data |
---|---|---|
ffecfa5a JS |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/palmos/toplevel.h | |
3 | // Purpose: wxTopLevelWindow | |
e1d63b79 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
db101bd3 | 5 | // Modified by: Wlodzimierz ABX Skiba - more than minimal functionality |
ffecfa5a | 6 | // Created: 10/13/04 |
e1d63b79 | 7 | // RCS-ID: $Id$ |
db101bd3 | 8 | // Copyright: (c) William Osborne, Wlodzimierz Skiba |
ffecfa5a JS |
9 | // Licence: wxWindows licence |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_PALMOS_TOPLEVEL_H_ | |
13 | #define _WX_PALMOS_TOPLEVEL_H_ | |
14 | ||
ffecfa5a JS |
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); | |
4055ed82 | 45 | |
ffecfa5a JS |
46 | virtual ~wxTopLevelWindowPalm(); |
47 | ||
48 | // implement base class pure virtuals | |
0ab48d64 WS |
49 | |
50 | virtual void SetTitle( const wxString& title); | |
51 | virtual wxString GetTitle() const; | |
52 | ||
4055ed82 | 53 | virtual void Maximize(bool maximize = true); |
ffecfa5a | 54 | virtual bool IsMaximized() const; |
4055ed82 | 55 | virtual void Iconize(bool iconize = true); |
ffecfa5a JS |
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 | ||
4055ed82 | 65 | virtual bool Show(bool show = true); |
ffecfa5a JS |
66 | |
67 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); | |
68 | virtual bool IsFullScreen() const { return m_fsIsShowing; } | |
69 | ||
4055ed82 | 70 | // wxPalm only: EnableCloseButton(false) may be used to remove the "Close" |
ffecfa5a | 71 | // button from the title bar |
4055ed82 | 72 | bool EnableCloseButton(bool enable = true); |
ffecfa5a JS |
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 | ||
bdb54365 | 84 | // interface to native frame structure |
20bc5ad8 | 85 | WXFORMPTR GetForm() const; |
bdb54365 | 86 | |
721a9626 | 87 | // handle native events |
20bc5ad8 WS |
88 | bool HandleControlSelect(WXEVENTPTR event); |
89 | bool HandleControlRepeat(WXEVENTPTR event); | |
90 | bool HandleSize(WXEVENTPTR event); | |
a152561c | 91 | |
324eeecb WS |
92 | virtual WXWINHANDLE GetWinHandle() const; |
93 | ||
ffecfa5a JS |
94 | protected: |
95 | // common part of all ctors | |
96 | void Init(); | |
97 | ||
808e3bce WS |
98 | // getting and setting sizes |
99 | virtual void DoGetSize( int *width, int *height ) const; | |
100 | ||
ffecfa5a JS |
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 | ||
ffecfa5a JS |
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 | ||
ffecfa5a | 128 | #endif // _WX_PALMOS_TOPLEVEL_H_ |