]>
Commit | Line | Data |
---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/msw/toplevel.h | |
3 | // Purpose: wxTopLevelWindowMSW is the MSW implementation of wxTLW | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 20.09.01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MSW_TOPLEVEL_H_ | |
13 | #define _WX_MSW_TOPLEVEL_H_ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // wxTopLevelWindowMSW | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | class WXDLLEXPORT wxTopLevelWindowMSW : public wxTopLevelWindowBase | |
20 | { | |
21 | public: | |
22 | // constructors and such | |
23 | wxTopLevelWindowMSW() { Init(); } | |
24 | ||
25 | wxTopLevelWindowMSW(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 ~wxTopLevelWindowMSW(); | |
47 | ||
48 | // implement base class pure virtuals | |
49 | virtual void SetTitle( const wxString& title); | |
50 | virtual wxString GetTitle() const; | |
51 | virtual void Maximize(bool maximize = true); | |
52 | virtual bool IsMaximized() const; | |
53 | virtual void Iconize(bool iconize = true); | |
54 | virtual bool IsIconized() const; | |
55 | virtual void SetIcon(const wxIcon& icon); | |
56 | virtual void SetIcons(const wxIconBundle& icons ); | |
57 | virtual void Restore(); | |
58 | ||
59 | #ifndef __WXWINCE__ | |
60 | virtual bool SetShape(const wxRegion& region); | |
61 | #endif // __WXWINCE__ | |
62 | virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO); | |
63 | ||
64 | virtual bool Show(bool show = true); | |
65 | ||
66 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); | |
67 | virtual bool IsFullScreen() const { return m_fsIsShowing; } | |
68 | ||
69 | // wxMSW only: EnableCloseButton(false) may be used to remove the "Close" | |
70 | // button from the title bar | |
71 | bool EnableCloseButton(bool enable = true); | |
72 | ||
73 | // Set window transparency if the platform supports it | |
74 | virtual bool SetTransparent(wxByte alpha); | |
75 | virtual bool CanSetTransparent(); | |
76 | ||
77 | ||
78 | // implementation from now on | |
79 | // -------------------------- | |
80 | ||
81 | // event handlers | |
82 | void OnActivate(wxActivateEvent& event); | |
83 | ||
84 | // called by wxWindow whenever it gets focus | |
85 | void SetLastFocus(wxWindow *win) { m_winLastFocused = win; } | |
86 | wxWindow *GetLastFocus() const { return m_winLastFocused; } | |
87 | ||
88 | #if defined(__SMARTPHONE__) && defined(__WXWINCE__) | |
89 | virtual void SetLeftMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL); | |
90 | virtual void SetRightMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL); | |
91 | bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control); | |
92 | virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg); | |
93 | #endif // __SMARTPHONE__ && __WXWINCE__ | |
94 | ||
95 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) | |
96 | // Soft Input Panel (SIP) change notification | |
97 | virtual bool HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam); | |
98 | #endif | |
99 | ||
100 | // translate wxWidgets flags to Windows ones | |
101 | virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const; | |
102 | ||
103 | // choose the right parent to use with CreateWindow() | |
104 | virtual WXHWND MSWGetParent() const; | |
105 | ||
106 | // window proc for the frames | |
107 | WXLRESULT MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
108 | ||
109 | protected: | |
110 | // common part of all ctors | |
111 | void Init(); | |
112 | ||
113 | // create a new frame, return false if it couldn't be created | |
114 | bool CreateFrame(const wxString& title, | |
115 | const wxPoint& pos, | |
116 | const wxSize& size); | |
117 | ||
118 | // create a new dialog using the given dialog template from resources, | |
119 | // return false if it couldn't be created | |
120 | bool CreateDialog(const void *dlgTemplate, | |
121 | const wxString& title, | |
122 | const wxPoint& pos, | |
123 | const wxSize& size); | |
124 | ||
125 | // common part of Iconize(), Maximize() and Restore() | |
126 | void DoShowWindow(int nShowCmd); | |
127 | ||
128 | // is the window currently iconized? | |
129 | bool m_iconized; | |
130 | ||
131 | // should the frame be maximized when it will be shown? set by Maximize() | |
132 | // when it is called while the frame is hidden | |
133 | bool m_maximizeOnShow; | |
134 | ||
135 | // Data to save/restore when calling ShowFullScreen | |
136 | long m_fsStyle; // Passed to ShowFullScreen | |
137 | wxRect m_fsOldSize; | |
138 | long m_fsOldWindowStyle; | |
139 | bool m_fsIsMaximized; | |
140 | bool m_fsIsShowing; | |
141 | ||
142 | // the last focused child: we restore focus to it on activation | |
143 | wxWindow *m_winLastFocused; | |
144 | ||
145 | #if defined(__SMARTPHONE__) && defined(__WXWINCE__) | |
146 | class ButtonMenu | |
147 | { | |
148 | public: | |
149 | ButtonMenu(); | |
150 | ~ButtonMenu(); | |
151 | ||
152 | void SetButton(int id = wxID_ANY, | |
153 | const wxString& label = wxEmptyString, | |
154 | wxMenu *subMenu = NULL); | |
155 | ||
156 | bool IsAssigned() const {return m_assigned;} | |
157 | bool IsMenu() const {return m_menu!=NULL;} | |
158 | ||
159 | int GetId() const {return m_id;} | |
160 | wxMenu* GetMenu() const {return m_menu;} | |
161 | wxString GetLabel() {return m_label;} | |
162 | ||
163 | static wxMenu *DuplicateMenu(wxMenu *menu); | |
164 | ||
165 | protected: | |
166 | int m_id; | |
167 | wxString m_label; | |
168 | wxMenu *m_menu; | |
169 | bool m_assigned; | |
170 | }; | |
171 | ||
172 | ButtonMenu m_LeftButton; | |
173 | ButtonMenu m_RightButton; | |
174 | HWND m_MenuBarHWND; | |
175 | ||
176 | void ReloadButton(ButtonMenu& button, UINT menuID); | |
177 | void ReloadAllButtons(); | |
178 | #endif // __SMARTPHONE__ && __WXWINCE__ | |
179 | ||
180 | private: | |
181 | ||
182 | #if defined(__SMARTPHONE__) || defined(__POCKETPC__) | |
183 | void* m_activateInfo; | |
184 | #endif | |
185 | ||
186 | DECLARE_EVENT_TABLE() | |
187 | DECLARE_NO_COPY_CLASS(wxTopLevelWindowMSW) | |
188 | }; | |
189 | ||
190 | #endif // _WX_MSW_TOPLEVEL_H_ |