]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/toplevel.h
Applied patch [ 1341085 ] richtext xml build fix
[wxWidgets.git] / include / wx / msw / toplevel.h
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 Maximize(bool maximize = true);
50 virtual bool IsMaximized() const;
51 virtual void Iconize(bool iconize = true);
52 virtual bool IsIconized() const;
53 virtual void SetIcon(const wxIcon& icon);
54 virtual void SetIcons(const wxIconBundle& icons );
55 virtual void Restore();
56
57 #ifndef __WXWINCE__
58 virtual bool SetShape(const wxRegion& region);
59 #endif // __WXWINCE__
60 virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO);
61
62 virtual bool Show(bool show = true);
63
64 virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
65 virtual bool IsFullScreen() const { return m_fsIsShowing; }
66
67 // wxMSW only: EnableCloseButton(false) may be used to remove the "Close"
68 // button from the title bar
69 bool EnableCloseButton(bool enable = true);
70
71 // implementation from now on
72 // --------------------------
73
74 // event handlers
75 void OnActivate(wxActivateEvent& event);
76
77 // called by wxWindow whenever it gets focus
78 void SetLastFocus(wxWindow *win) { m_winLastFocused = win; }
79 wxWindow *GetLastFocus() const { return m_winLastFocused; }
80
81 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
82 virtual void SetLeftMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL);
83 virtual void SetRightMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL);
84 bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control);
85 #endif // __SMARTPHONE__ && __WXWINCE__
86
87 protected:
88 // common part of all ctors
89 void Init();
90
91 // create a new frame, return false if it couldn't be created
92 bool CreateFrame(const wxString& title,
93 const wxPoint& pos,
94 const wxSize& size);
95
96 // create a new dialog using the given dialog template from resources,
97 // return false if it couldn't be created
98 bool CreateDialog(const void *dlgTemplate,
99 const wxString& title,
100 const wxPoint& pos,
101 const wxSize& size);
102
103 // common part of Iconize(), Maximize() and Restore()
104 void DoShowWindow(int nShowCmd);
105
106 // translate wxWidgets flags to Windows ones
107 virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const;
108
109 // choose the right parent to use with CreateWindow()
110 virtual WXHWND MSWGetParent() const;
111
112 // is the window currently iconized?
113 bool m_iconized;
114
115 // should the frame be maximized when it will be shown? set by Maximize()
116 // when it is called while the frame is hidden
117 bool m_maximizeOnShow;
118
119 // Data to save/restore when calling ShowFullScreen
120 long m_fsStyle; // Passed to ShowFullScreen
121 wxRect m_fsOldSize;
122 long m_fsOldWindowStyle;
123 bool m_fsIsMaximized;
124 bool m_fsIsShowing;
125
126 // the last focused child: we restore focus to it on activation
127 wxWindow *m_winLastFocused;
128
129 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
130 class ButtonMenu
131 {
132 public:
133 ButtonMenu();
134 ~ButtonMenu();
135
136 void SetButton(int id = wxID_ANY,
137 const wxString& label = wxEmptyString,
138 wxMenu *subMenu = NULL);
139
140 bool IsAssigned() const {return m_assigned;}
141 bool IsMenu() const {return m_menu!=NULL;}
142
143 int GetId() const {return m_id;}
144 wxMenu* GetMenu() const {return m_menu;}
145 wxString GetLabel() {return m_label;}
146
147 static wxMenu *DuplicateMenu(wxMenu *menu);
148
149 protected:
150 int m_id;
151 wxString m_label;
152 wxMenu *m_menu;
153 bool m_assigned;
154 };
155
156 ButtonMenu m_LeftButton;
157 ButtonMenu m_RightButton;
158 HWND m_MenuBarHWND;
159
160 void ReloadButton(ButtonMenu& button, UINT menuID);
161 void ReloadAllButtons();
162 #endif // __SMARTPHONE__ && __WXWINCE__
163
164 DECLARE_EVENT_TABLE()
165 DECLARE_NO_COPY_CLASS(wxTopLevelWindowMSW)
166 };
167
168 #endif // _WX_MSW_TOPLEVEL_H_
169