Get/SetTitle only for wxTopLevelWindow (wxMSW part).
[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 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 // implementation from now on
74 // --------------------------
75
76 // event handlers
77 void OnActivate(wxActivateEvent& event);
78
79 // called by wxWindow whenever it gets focus
80 void SetLastFocus(wxWindow *win) { m_winLastFocused = win; }
81 wxWindow *GetLastFocus() const { return m_winLastFocused; }
82
83 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
84 virtual void SetLeftMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL);
85 virtual void SetRightMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL);
86 bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control);
87 #endif // __SMARTPHONE__ && __WXWINCE__
88
89 protected:
90 // common part of all ctors
91 void Init();
92
93 // create a new frame, return false if it couldn't be created
94 bool CreateFrame(const wxString& title,
95 const wxPoint& pos,
96 const wxSize& size);
97
98 // create a new dialog using the given dialog template from resources,
99 // return false if it couldn't be created
100 bool CreateDialog(const void *dlgTemplate,
101 const wxString& title,
102 const wxPoint& pos,
103 const wxSize& size);
104
105 // common part of Iconize(), Maximize() and Restore()
106 void DoShowWindow(int nShowCmd);
107
108 // translate wxWidgets flags to Windows ones
109 virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const;
110
111 // choose the right parent to use with CreateWindow()
112 virtual WXHWND MSWGetParent() const;
113
114 // is the window currently iconized?
115 bool m_iconized;
116
117 // should the frame be maximized when it will be shown? set by Maximize()
118 // when it is called while the frame is hidden
119 bool m_maximizeOnShow;
120
121 // Data to save/restore when calling ShowFullScreen
122 long m_fsStyle; // Passed to ShowFullScreen
123 wxRect m_fsOldSize;
124 long m_fsOldWindowStyle;
125 bool m_fsIsMaximized;
126 bool m_fsIsShowing;
127
128 // the last focused child: we restore focus to it on activation
129 wxWindow *m_winLastFocused;
130
131 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
132 class ButtonMenu
133 {
134 public:
135 ButtonMenu();
136 ~ButtonMenu();
137
138 void SetButton(int id = wxID_ANY,
139 const wxString& label = wxEmptyString,
140 wxMenu *subMenu = NULL);
141
142 bool IsAssigned() const {return m_assigned;}
143 bool IsMenu() const {return m_menu!=NULL;}
144
145 int GetId() const {return m_id;}
146 wxMenu* GetMenu() const {return m_menu;}
147 wxString GetLabel() {return m_label;}
148
149 static wxMenu *DuplicateMenu(wxMenu *menu);
150
151 protected:
152 int m_id;
153 wxString m_label;
154 wxMenu *m_menu;
155 bool m_assigned;
156 };
157
158 ButtonMenu m_LeftButton;
159 ButtonMenu m_RightButton;
160 HWND m_MenuBarHWND;
161
162 void ReloadButton(ButtonMenu& button, UINT menuID);
163 void ReloadAllButtons();
164 #endif // __SMARTPHONE__ && __WXWINCE__
165
166 DECLARE_EVENT_TABLE()
167 DECLARE_NO_COPY_CLASS(wxTopLevelWindowMSW)
168 };
169
170 #endif // _WX_MSW_TOPLEVEL_H_