]>
Commit | Line | Data |
---|---|---|
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) | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MSW_TOPLEVEL_H_ | |
13 | #define _WX_MSW_TOPLEVEL_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "toplevel.h" | |
17 | #endif | |
18 | ||
19 | // ---------------------------------------------------------------------------- | |
20 | // wxTopLevelWindowMSW | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
361128cb | 23 | class WXDLLEXPORT wxTopLevelWindowMSW : public wxTopLevelWindowBase |
82c9f85c VZ |
24 | { |
25 | public: | |
26 | // constructors and such | |
27 | wxTopLevelWindowMSW() { Init(); } | |
28 | ||
29 | wxTopLevelWindowMSW(wxWindow *parent, | |
30 | wxWindowID id, | |
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) | |
36 | { | |
37 | Init(); | |
38 | ||
39 | (void)Create(parent, id, title, pos, size, style, name); | |
40 | } | |
41 | ||
42 | bool Create(wxWindow *parent, | |
43 | wxWindowID id, | |
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); | |
49 | ||
50 | virtual ~wxTopLevelWindowMSW(); | |
51 | ||
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(); | |
59 | ||
60 | virtual bool Show(bool show = TRUE); | |
61 | ||
41e929e5 VS |
62 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); |
63 | virtual bool IsFullScreen() const { return m_fsIsShowing; } | |
9b9cab37 | 64 | |
82c9f85c VZ |
65 | // implementation from now on |
66 | // -------------------------- | |
67 | ||
68 | protected: | |
69 | // common part of all ctors | |
70 | void Init(); | |
71 | ||
b225f659 VZ |
72 | // create a new frame, return FALSE if it couldn't be created |
73 | bool CreateFrame(const wxString& title, | |
74 | const wxPoint& pos, | |
75 | const wxSize& size); | |
76 | ||
77 | // create a new dialog using the given dialog template from resources, | |
78 | // return FALSE if it couldn't be created | |
79 | bool CreateDialog(const wxChar *dlgTemplate, | |
80 | const wxString& title, | |
81 | const wxPoint& pos, | |
82 | const wxSize& size); | |
83 | ||
82c9f85c VZ |
84 | // common part of Iconize(), Maximize() and Restore() |
85 | void DoShowWindow(int nShowCmd); | |
86 | ||
87 | // implement the geometry-related methods for a top level window | |
88 | virtual void DoSetClientSize(int width, int height); | |
89 | ||
b225f659 VZ |
90 | // get the MSW window flags corresponding to wxWindows ones |
91 | // | |
92 | // the functions returns the flags (WS_XXX) directly and puts the ext | |
93 | // (WS_EX_XXX) flags into the provided pointer if not NULL | |
94 | long MSWGetCreateWindowFlags(long *exflags) const; | |
95 | ||
82c9f85c VZ |
96 | // is the frame currently iconized? |
97 | bool m_iconized; | |
98 | ||
99 | // should the frame be maximized when it will be shown? set by Maximize() | |
100 | // when it is called while the frame is hidden | |
101 | bool m_maximizeOnShow; | |
41e929e5 VS |
102 | |
103 | // Data to save/restore when calling ShowFullScreen | |
104 | long m_fsStyle; // Passed to ShowFullScreen | |
105 | wxRect m_fsOldSize; | |
106 | long m_fsOldWindowStyle; | |
107 | bool m_fsIsMaximized; | |
108 | bool m_fsIsShowing; | |
82c9f85c VZ |
109 | }; |
110 | ||
111 | // list of all frames and modeless dialogs | |
112 | extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows; | |
113 | ||
114 | #endif // _WX_MSW_TOPLEVEL_H_ | |
115 |