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_
16 #pragma interface "toplevel.h"
19 // ----------------------------------------------------------------------------
20 // wxTopLevelWindowMSW
21 // ----------------------------------------------------------------------------
23 class WXDLLEXPORT wxTopLevelWindowMSW
: public wxTopLevelWindowBase
26 // constructors and such
27 wxTopLevelWindowMSW() { Init(); }
29 wxTopLevelWindowMSW(wxWindow
*parent
,
31 const wxString
& title
,
32 const wxPoint
& pos
= wxDefaultPosition
,
33 const wxSize
& size
= wxDefaultSize
,
34 long style
= wxDEFAULT_FRAME_STYLE
,
35 const wxString
& name
= wxFrameNameStr
)
39 (void)Create(parent
, id
, title
, pos
, size
, style
, name
);
42 bool Create(wxWindow
*parent
,
44 const wxString
& title
,
45 const wxPoint
& pos
= wxDefaultPosition
,
46 const wxSize
& size
= wxDefaultSize
,
47 long style
= wxDEFAULT_FRAME_STYLE
,
48 const wxString
& name
= wxFrameNameStr
);
50 virtual ~wxTopLevelWindowMSW();
52 // implement base class pure virtuals
53 virtual void Maximize(bool maximize
= TRUE
);
54 virtual bool IsMaximized() const;
55 virtual void Iconize(bool iconize
= TRUE
);
56 virtual bool IsIconized() const;
57 virtual void SetIcon(const wxIcon
& icon
);
58 virtual void Restore();
60 virtual bool Show(bool show
= TRUE
);
62 virtual bool ShowFullScreen(bool show
, long style
= wxFULLSCREEN_ALL
);
63 virtual bool IsFullScreen() const { return m_fsIsShowing
; }
65 // wxMSW only: EnableCloseButton(FALSE) may be used to remove the "Close"
66 // button from the title bar
67 bool EnableCloseButton(bool enable
= TRUE
);
69 // implementation from now on
70 // --------------------------
73 // common part of all ctors
76 // create a new frame, return FALSE if it couldn't be created
77 bool CreateFrame(const wxString
& title
,
81 // create a new dialog using the given dialog template from resources,
82 // return FALSE if it couldn't be created
83 bool CreateDialog(const wxChar
*dlgTemplate
,
84 const wxString
& title
,
88 // common part of Iconize(), Maximize() and Restore()
89 void DoShowWindow(int nShowCmd
);
91 // implement the geometry-related methods for a top level window
92 virtual void DoSetClientSize(int width
, int height
);
94 // get the MSW window flags corresponding to wxWindows ones
96 // the functions returns the flags (WS_XXX) directly and puts the ext
97 // (WS_EX_XXX) flags into the provided pointer if not NULL
98 long MSWGetCreateWindowFlags(long *exflags
) const;
100 // is the frame currently iconized?
103 // should the frame be maximized when it will be shown? set by Maximize()
104 // when it is called while the frame is hidden
105 bool m_maximizeOnShow
;
107 // Data to save/restore when calling ShowFullScreen
108 long m_fsStyle
; // Passed to ShowFullScreen
110 long m_fsOldWindowStyle
;
111 bool m_fsIsMaximized
;
115 // list of all frames and modeless dialogs
116 extern WXDLLEXPORT_DATA(wxWindowList
) wxModelessWindows
;
118 #endif // _WX_MSW_TOPLEVEL_H_