]>
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 | ||
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
82c9f85c VZ |
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 | |
1169a919 | 27 | wxTopLevelWindowMSW(); |
82c9f85c VZ |
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, | |
1169a919 | 35 | const wxString& name = wxFrameNameStr); |
82c9f85c VZ |
36 | |
37 | bool Create(wxWindow *parent, | |
38 | wxWindowID id, | |
39 | const wxString& title, | |
40 | const wxPoint& pos = wxDefaultPosition, | |
41 | const wxSize& size = wxDefaultSize, | |
42 | long style = wxDEFAULT_FRAME_STYLE, | |
43 | const wxString& name = wxFrameNameStr); | |
44 | ||
45 | virtual ~wxTopLevelWindowMSW(); | |
46 | ||
47 | // implement base class pure virtuals | |
48 | virtual void Maximize(bool maximize = TRUE); | |
49 | virtual bool IsMaximized() const; | |
50 | virtual void Iconize(bool iconize = TRUE); | |
51 | virtual bool IsIconized() const; | |
52 | virtual void SetIcon(const wxIcon& icon); | |
f618020a | 53 | virtual void SetIcons(const wxIconBundle& icons ); |
82c9f85c VZ |
54 | virtual void Restore(); |
55 | ||
1542ea39 RD |
56 | virtual bool SetShape(const wxRegion& region); |
57 | ||
82c9f85c VZ |
58 | virtual bool Show(bool show = TRUE); |
59 | ||
41e929e5 VS |
60 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); |
61 | virtual bool IsFullScreen() const { return m_fsIsShowing; } | |
9b9cab37 | 62 | |
a91cf80c VZ |
63 | // wxMSW only: EnableCloseButton(FALSE) may be used to remove the "Close" |
64 | // button from the title bar | |
65 | bool EnableCloseButton(bool enable = TRUE); | |
66 | ||
82c9f85c VZ |
67 | // implementation from now on |
68 | // -------------------------- | |
69 | ||
085ad686 VZ |
70 | // event handlers |
71 | void OnActivate(wxActivateEvent& event); | |
72 | ||
73 | // called by wxWindow whenever it gets focus | |
74 | void SetLastFocus(wxWindow *win) { m_winLastFocused = win; } | |
75 | wxWindow *GetLastFocus() const { return m_winLastFocused; } | |
76 | ||
82c9f85c VZ |
77 | protected: |
78 | // common part of all ctors | |
79 | void Init(); | |
80 | ||
b225f659 VZ |
81 | // create a new frame, return FALSE if it couldn't be created |
82 | bool CreateFrame(const wxString& title, | |
83 | const wxPoint& pos, | |
84 | const wxSize& size); | |
85 | ||
86 | // create a new dialog using the given dialog template from resources, | |
87 | // return FALSE if it couldn't be created | |
6e8515a3 | 88 | bool CreateDialog(const void *dlgTemplate, |
b225f659 VZ |
89 | const wxString& title, |
90 | const wxPoint& pos, | |
91 | const wxSize& size); | |
92 | ||
82c9f85c VZ |
93 | // common part of Iconize(), Maximize() and Restore() |
94 | void DoShowWindow(int nShowCmd); | |
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 | 115 | |
085ad686 VZ |
116 | // the last focused child: we restore focus to it on activation |
117 | wxWindow *m_winLastFocused; | |
118 | ||
085ad686 | 119 | DECLARE_EVENT_TABLE() |
22f3361e | 120 | DECLARE_NO_COPY_CLASS(wxTopLevelWindowMSW) |
82c9f85c VZ |
121 | }; |
122 | ||
123 | // list of all frames and modeless dialogs | |
124 | extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows; | |
125 | ||
126 | #endif // _WX_MSW_TOPLEVEL_H_ | |
127 |