]>
Commit | Line | Data |
---|---|---|
fe08e597 SC |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/mac/toplevel.h | |
3 | // Purpose: wxTopLevelWindowMac 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 | // wxTopLevelWindowMac | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
23 | class WXDLLEXPORT wxTopLevelWindowMac : public wxTopLevelWindowBase | |
24 | { | |
25 | public: | |
26 | // constructors and such | |
27 | wxTopLevelWindowMac() { Init(); } | |
28 | ||
29 | wxTopLevelWindowMac(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 ~wxTopLevelWindowMac(); | |
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 ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL) { return FALSE; } | |
61 | virtual bool IsFullScreen() const { return FALSE; } | |
62 | ||
63 | // implementation from now on | |
64 | // -------------------------- | |
65 | ||
66 | protected: | |
67 | // common part of all ctors | |
68 | void Init(); | |
69 | ||
70 | // is the frame currently iconized? | |
71 | bool m_iconized; | |
72 | ||
73 | // should the frame be maximized when it will be shown? set by Maximize() | |
74 | // when it is called while the frame is hidden | |
75 | bool m_maximizeOnShow; | |
76 | }; | |
77 | ||
78 | // list of all frames and modeless dialogs | |
79 | extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows; | |
80 | ||
81 | #endif // _WX_MSW_TOPLEVEL_H_ | |
82 |