1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/toplevel.h
3 // Purpose: wxTopLevelWindowMSW is the MSW implementation of wxTLW
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MSW_TOPLEVEL_H_
13 #define _WX_MSW_TOPLEVEL_H_
15 // ----------------------------------------------------------------------------
16 // wxTopLevelWindowMSW
17 // ----------------------------------------------------------------------------
19 class WXDLLEXPORT wxTopLevelWindowMSW
: public wxTopLevelWindowBase
22 // constructors and such
23 wxTopLevelWindowMSW() { Init(); }
25 wxTopLevelWindowMSW(wxWindow
*parent
,
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
)
35 (void)Create(parent
, id
, title
, pos
, size
, style
, name
);
38 bool Create(wxWindow
*parent
,
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
);
46 virtual ~wxTopLevelWindowMSW();
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();
60 virtual bool SetShape(const wxRegion
& region
);
62 virtual void RequestUserAttention(int flags
= wxUSER_ATTENTION_INFO
);
64 virtual bool Show(bool show
= true);
66 virtual bool ShowFullScreen(bool show
, long style
= wxFULLSCREEN_ALL
);
67 virtual bool IsFullScreen() const { return m_fsIsShowing
; }
69 // wxMSW only: EnableCloseButton(false) may be used to remove the "Close"
70 // button from the title bar
71 bool EnableCloseButton(bool enable
= true);
73 // implementation from now on
74 // --------------------------
77 void OnActivate(wxActivateEvent
& event
);
79 // called by wxWindow whenever it gets focus
80 void SetLastFocus(wxWindow
*win
) { m_winLastFocused
= win
; }
81 wxWindow
*GetLastFocus() const { return m_winLastFocused
; }
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__
89 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
90 // Soft Input Panel (SIP) change notification
91 virtual bool HandleSettingChange(WXWPARAM wParam
, WXLPARAM lParam
);
95 // common part of all ctors
98 // create a new frame, return false if it couldn't be created
99 bool CreateFrame(const wxString
& title
,
103 // create a new dialog using the given dialog template from resources,
104 // return false if it couldn't be created
105 bool CreateDialog(const void *dlgTemplate
,
106 const wxString
& title
,
110 // common part of Iconize(), Maximize() and Restore()
111 void DoShowWindow(int nShowCmd
);
113 // translate wxWidgets flags to Windows ones
114 virtual WXDWORD
MSWGetStyle(long flags
, WXDWORD
*exstyle
) const;
116 // choose the right parent to use with CreateWindow()
117 virtual WXHWND
MSWGetParent() const;
119 // window proc for the frames
120 WXLRESULT
MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
122 // is the window currently iconized?
125 // should the frame be maximized when it will be shown? set by Maximize()
126 // when it is called while the frame is hidden
127 bool m_maximizeOnShow
;
129 // Data to save/restore when calling ShowFullScreen
130 long m_fsStyle
; // Passed to ShowFullScreen
132 long m_fsOldWindowStyle
;
133 bool m_fsIsMaximized
;
136 // the last focused child: we restore focus to it on activation
137 wxWindow
*m_winLastFocused
;
139 #if defined(__SMARTPHONE__) && defined(__WXWINCE__)
146 void SetButton(int id
= wxID_ANY
,
147 const wxString
& label
= wxEmptyString
,
148 wxMenu
*subMenu
= NULL
);
150 bool IsAssigned() const {return m_assigned
;}
151 bool IsMenu() const {return m_menu
!=NULL
;}
153 int GetId() const {return m_id
;}
154 wxMenu
* GetMenu() const {return m_menu
;}
155 wxString
GetLabel() {return m_label
;}
157 static wxMenu
*DuplicateMenu(wxMenu
*menu
);
166 ButtonMenu m_LeftButton
;
167 ButtonMenu m_RightButton
;
170 void ReloadButton(ButtonMenu
& button
, UINT menuID
);
171 void ReloadAllButtons();
172 #endif // __SMARTPHONE__ && __WXWINCE__
176 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
177 void* m_activateInfo
;
180 DECLARE_EVENT_TABLE()
181 DECLARE_NO_COPY_CLASS(wxTopLevelWindowMSW
)
184 #endif // _WX_MSW_TOPLEVEL_H_