]>
Commit | Line | Data |
---|---|---|
7d9f12f3 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/mgl/toplevel.h | |
3 | // Purpose: Top level window, abstraction of wxFrame and wxDialog | |
4 | // Author: Vaclav Slavik | |
5 | // Id: $Id$ | |
52750c2e | 6 | // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) |
65571936 | 7 | // Licence: wxWindows licence |
7d9f12f3 VS |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
7d9f12f3 VS |
10 | #ifndef __WX_TOPLEVEL_H__ |
11 | #define __WX_TOPLEVEL_H__ | |
12 | ||
7d9f12f3 VS |
13 | //----------------------------------------------------------------------------- |
14 | // wxTopLevelWindowMGL | |
15 | //----------------------------------------------------------------------------- | |
16 | ||
17 | class wxTopLevelWindowMGL : public wxTopLevelWindowBase | |
18 | { | |
19 | public: | |
20 | // construction | |
21 | wxTopLevelWindowMGL() { Init(); } | |
22 | wxTopLevelWindowMGL(wxWindow *parent, | |
23 | wxWindowID id, | |
24 | const wxString& title, | |
25 | const wxPoint& pos = wxDefaultPosition, | |
26 | const wxSize& size = wxDefaultSize, | |
27 | long style = wxDEFAULT_FRAME_STYLE, | |
28 | const wxString& name = wxFrameNameStr) | |
29 | { | |
30 | Init(); | |
31 | ||
32 | Create(parent, id, title, pos, size, style, name); | |
33 | } | |
34 | ||
35 | bool Create(wxWindow *parent, | |
36 | wxWindowID id, | |
37 | const wxString& title, | |
38 | const wxPoint& pos = wxDefaultPosition, | |
39 | const wxSize& size = wxDefaultSize, | |
40 | long style = wxDEFAULT_FRAME_STYLE, | |
41 | const wxString& name = wxFrameNameStr); | |
42 | ||
7d9f12f3 | 43 | // implement base class pure virtuals |
46ae103b | 44 | virtual void Maximize(bool maximize = true); |
7d9f12f3 | 45 | virtual bool IsMaximized() const; |
46ae103b | 46 | virtual void Iconize(bool iconize = true); |
7d9f12f3 VS |
47 | virtual bool IsIconized() const; |
48 | virtual void Restore(); | |
49 | ||
50 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); | |
51 | virtual bool IsFullScreen() const { return m_fsIsShowing; } | |
52 | ||
46ae103b | 53 | virtual bool Show(bool show = true); |
917afc7b | 54 | |
7d9f12f3 VS |
55 | virtual void SetTitle(const wxString &title) { m_title = title; } |
56 | virtual wxString GetTitle() const { return m_title; } | |
57 | ||
58 | // implementation from now on | |
59 | // -------------------------- | |
60 | ||
61 | protected: | |
62 | // common part of all ctors | |
63 | void Init(); | |
64 | ||
65 | wxString m_title; | |
f41ed3c4 | 66 | bool m_fsIsShowing:1; /* full screen */ |
7d9f12f3 VS |
67 | long m_fsSaveStyle; |
68 | long m_fsSaveFlag; | |
69 | wxRect m_fsSaveFrame; | |
70 | ||
71 | // is the frame currently iconized? | |
f41ed3c4 | 72 | bool m_isIconized:1; |
7d9f12f3 | 73 | // and maximized? |
f41ed3c4 | 74 | bool m_isMaximized:1; |
7d9f12f3 | 75 | wxRect m_savedFrame; |
f41ed3c4 VS |
76 | |
77 | // did we sent wxSizeEvent at least once? | |
78 | bool m_sizeSet:1; | |
7d9f12f3 VS |
79 | }; |
80 | ||
81 | #endif // __WX_TOPLEVEL_H__ |