]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/toplevel.h
add wxUSE_WEAKREF (modified partially applied patch 1870445)
[wxWidgets.git] / include / wx / msw / toplevel.h
CommitLineData
82c9f85c
VZ
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)
65571936 9// Licence: wxWindows licence
82c9f85c
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_MSW_TOPLEVEL_H_
13#define _WX_MSW_TOPLEVEL_H_
14
82c9f85c
VZ
15// ----------------------------------------------------------------------------
16// wxTopLevelWindowMSW
17// ----------------------------------------------------------------------------
18
361128cb 19class WXDLLEXPORT wxTopLevelWindowMSW : public wxTopLevelWindowBase
82c9f85c
VZ
20{
21public:
22 // constructors and such
6463b9f5 23 wxTopLevelWindowMSW() { Init(); }
82c9f85c
VZ
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,
6463b9f5
JS
31 const wxString& name = wxFrameNameStr)
32 {
33 Init();
34
35 (void)Create(parent, id, title, pos, size, style, name);
36 }
82c9f85c
VZ
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
faa49bfd
WS
49 virtual void SetTitle( const wxString& title);
50 virtual wxString GetTitle() const;
bfbb0b4c 51 virtual void Maximize(bool maximize = true);
82c9f85c 52 virtual bool IsMaximized() const;
bfbb0b4c 53 virtual void Iconize(bool iconize = true);
82c9f85c 54 virtual bool IsIconized() const;
f618020a 55 virtual void SetIcons(const wxIconBundle& icons );
82c9f85c 56 virtual void Restore();
d43eb2a0 57
978af864 58 virtual void SetLayoutDirection(wxLayoutDirection dir);
82c9f85c 59
2a47cb1b 60#ifndef __WXWINCE__
1542ea39 61 virtual bool SetShape(const wxRegion& region);
2a47cb1b 62#endif // __WXWINCE__
dc92adaf 63 virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO);
1542ea39 64
bfbb0b4c 65 virtual bool Show(bool show = true);
82c9f85c 66
41e929e5
VS
67 virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
68 virtual bool IsFullScreen() const { return m_fsIsShowing; }
9b9cab37 69
bfbb0b4c 70 // wxMSW only: EnableCloseButton(false) may be used to remove the "Close"
a91cf80c 71 // button from the title bar
5b5210ba 72 virtual bool EnableCloseButton(bool enable = true);
a91cf80c 73
50f3c41d 74 // Set window transparency if the platform supports it
07880314
RD
75 virtual bool SetTransparent(wxByte alpha);
76 virtual bool CanSetTransparent();
50f3c41d 77
0dd9b9e2
RD
78 virtual void AddChild( wxWindowBase *child );
79
d43eb2a0 80
82c9f85c
VZ
81 // implementation from now on
82 // --------------------------
83
085ad686
VZ
84 // event handlers
85 void OnActivate(wxActivateEvent& event);
86
87 // called by wxWindow whenever it gets focus
88 void SetLastFocus(wxWindow *win) { m_winLastFocused = win; }
89 wxWindow *GetLastFocus() const { return m_winLastFocused; }
90
9b141468
WS
91#if defined(__SMARTPHONE__) && defined(__WXWINCE__)
92 virtual void SetLeftMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL);
93 virtual void SetRightMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL);
fb8a56b7 94 bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control);
96dcd41a 95 virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg);
9b141468 96#endif // __SMARTPHONE__ && __WXWINCE__
fb8a56b7 97
b7e5ba8f
JG
98#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
99 // Soft Input Panel (SIP) change notification
1272e71b 100 virtual bool HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam);
b7e5ba8f
JG
101#endif
102
6f02a879
VZ
103 // translate wxWidgets flags to Windows ones
104 virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const;
105
106 // choose the right parent to use with CreateWindow()
107 virtual WXHWND MSWGetParent() const;
108
109 // window proc for the frames
110 WXLRESULT MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
111
a047aff2
JS
112 // returns true if the platform should explicitly apply a theme border
113 virtual bool CanApplyThemeBorder() const { return false; }
114
82c9f85c
VZ
115protected:
116 // common part of all ctors
117 void Init();
118
bfbb0b4c 119 // create a new frame, return false if it couldn't be created
b225f659
VZ
120 bool CreateFrame(const wxString& title,
121 const wxPoint& pos,
122 const wxSize& size);
123
124 // create a new dialog using the given dialog template from resources,
bfbb0b4c 125 // return false if it couldn't be created
6e8515a3 126 bool CreateDialog(const void *dlgTemplate,
b225f659
VZ
127 const wxString& title,
128 const wxPoint& pos,
129 const wxSize& size);
130
82c9f85c
VZ
131 // common part of Iconize(), Maximize() and Restore()
132 void DoShowWindow(int nShowCmd);
133
d43eb2a0
VZ
134 // override those to return the normal window coordinates even when the
135 // window is minimized
c5dc89a1 136#ifndef __WXWINCE__
d43eb2a0
VZ
137 virtual void DoGetPosition(int *x, int *y) const;
138 virtual void DoGetSize(int *width, int *height) const;
c5dc89a1 139#endif // __WXWINCE__
d43eb2a0 140
17808a75
VZ
141 // Top level windows have different freeze semantics on Windows
142 virtual void DoFreeze();
143 virtual void DoThaw();
144
b9e66233
VZ
145 // helper of SetIcons(): calls gets the icon with the size specified by the
146 // given system metrics (SM_C{X|Y}[SM]ICON) from the bundle and sets it
147 // using WM_SETICON with the specified wParam (ICOM_SMALL or ICON_BIG)
148 void DoSelectAndSetIcon(const wxIconBundle& icons, int smX, int smY, int i);
149
d43eb2a0 150
7e25f59e 151 // is the window currently iconized?
82c9f85c
VZ
152 bool m_iconized;
153
154 // should the frame be maximized when it will be shown? set by Maximize()
155 // when it is called while the frame is hidden
156 bool m_maximizeOnShow;
41e929e5
VS
157
158 // Data to save/restore when calling ShowFullScreen
159 long m_fsStyle; // Passed to ShowFullScreen
160 wxRect m_fsOldSize;
161 long m_fsOldWindowStyle;
162 bool m_fsIsMaximized;
163 bool m_fsIsShowing;
9dfef5ac 164
085ad686
VZ
165 // the last focused child: we restore focus to it on activation
166 wxWindow *m_winLastFocused;
167
9b141468 168#if defined(__SMARTPHONE__) && defined(__WXWINCE__)
fb8a56b7
WS
169 class ButtonMenu
170 {
171 public:
172 ButtonMenu();
173 ~ButtonMenu();
174
bfbb0b4c
WS
175 void SetButton(int id = wxID_ANY,
176 const wxString& label = wxEmptyString,
fb8a56b7
WS
177 wxMenu *subMenu = NULL);
178
179 bool IsAssigned() const {return m_assigned;}
180 bool IsMenu() const {return m_menu!=NULL;}
181
182 int GetId() const {return m_id;}
183 wxMenu* GetMenu() const {return m_menu;}
184 wxString GetLabel() {return m_label;}
185
186 static wxMenu *DuplicateMenu(wxMenu *menu);
187
188 protected:
189 int m_id;
190 wxString m_label;
191 wxMenu *m_menu;
192 bool m_assigned;
193 };
194
195 ButtonMenu m_LeftButton;
196 ButtonMenu m_RightButton;
197 HWND m_MenuBarHWND;
198
199 void ReloadButton(ButtonMenu& button, UINT menuID);
200 void ReloadAllButtons();
9b141468 201#endif // __SMARTPHONE__ && __WXWINCE__
fb8a56b7 202
08b97268
WS
203private:
204
205#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
206 void* m_activateInfo;
207#endif
208
085ad686 209 DECLARE_EVENT_TABLE()
22f3361e 210 DECLARE_NO_COPY_CLASS(wxTopLevelWindowMSW)
82c9f85c
VZ
211};
212
82c9f85c 213#endif // _WX_MSW_TOPLEVEL_H_