]>
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); | |
f618020a | 58 | virtual void SetIcons(const wxIconBundle& icons ); |
82c9f85c VZ |
59 | virtual void Restore(); |
60 | ||
61 | virtual bool Show(bool show = TRUE); | |
62 | ||
41e929e5 VS |
63 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); |
64 | virtual bool IsFullScreen() const { return m_fsIsShowing; } | |
9b9cab37 | 65 | |
a91cf80c VZ |
66 | // wxMSW only: EnableCloseButton(FALSE) may be used to remove the "Close" |
67 | // button from the title bar | |
68 | bool EnableCloseButton(bool enable = TRUE); | |
69 | ||
82c9f85c VZ |
70 | // implementation from now on |
71 | // -------------------------- | |
72 | ||
73 | protected: | |
74 | // common part of all ctors | |
75 | void Init(); | |
76 | ||
b225f659 VZ |
77 | // create a new frame, return FALSE if it couldn't be created |
78 | bool CreateFrame(const wxString& title, | |
79 | const wxPoint& pos, | |
80 | const wxSize& size); | |
81 | ||
82 | // create a new dialog using the given dialog template from resources, | |
83 | // return FALSE if it couldn't be created | |
6e8515a3 | 84 | bool CreateDialog(const void *dlgTemplate, |
b225f659 VZ |
85 | const wxString& title, |
86 | const wxPoint& pos, | |
87 | const wxSize& size); | |
88 | ||
82c9f85c VZ |
89 | // common part of Iconize(), Maximize() and Restore() |
90 | void DoShowWindow(int nShowCmd); | |
91 | ||
7e25f59e VZ |
92 | // prevent the window from being deactivated sometimes (see comments in the |
93 | // code) | |
94 | long HandleNcActivate(bool activate); | |
95 | ||
b2d5a7ee VZ |
96 | // translate wxWindows flags to Windows ones |
97 | virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const; | |
b225f659 | 98 | |
9dfef5ac VZ |
99 | // choose the right parent to use with CreateWindow() |
100 | virtual WXHWND MSWGetParent() const; | |
101 | ||
7e25f59e | 102 | // is the window currently iconized? |
82c9f85c VZ |
103 | bool m_iconized; |
104 | ||
105 | // should the frame be maximized when it will be shown? set by Maximize() | |
106 | // when it is called while the frame is hidden | |
107 | bool m_maximizeOnShow; | |
41e929e5 VS |
108 | |
109 | // Data to save/restore when calling ShowFullScreen | |
110 | long m_fsStyle; // Passed to ShowFullScreen | |
111 | wxRect m_fsOldSize; | |
112 | long m_fsOldWindowStyle; | |
113 | bool m_fsIsMaximized; | |
114 | bool m_fsIsShowing; | |
9dfef5ac VZ |
115 | |
116 | // the hidden parent window for the frames which shouldn't appear in the | |
117 | // taskbar | |
118 | static wxWindow *ms_hiddenParent; | |
82c9f85c VZ |
119 | }; |
120 | ||
121 | // list of all frames and modeless dialogs | |
122 | extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows; | |
123 | ||
124 | #endif // _WX_MSW_TOPLEVEL_H_ | |
125 |