]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/toplevel.h
Applied notebook font patch.
[wxWidgets.git] / include / wx / msw / toplevel.h
CommitLineData
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 23class WXDLLEXPORT wxTopLevelWindowMSW : public wxTopLevelWindowBase
82c9f85c
VZ
24{
25public:
26 // constructors and such
6463b9f5 27 wxTopLevelWindowMSW() { Init(); }
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,
6463b9f5
JS
35 const wxString& name = wxFrameNameStr)
36 {
37 Init();
38
39 (void)Create(parent, id, title, pos, size, style, name);
40 }
82c9f85c
VZ
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
1542ea39
RD
61 virtual bool SetShape(const wxRegion& region);
62
82c9f85c
VZ
63 virtual bool Show(bool show = TRUE);
64
41e929e5
VS
65 virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
66 virtual bool IsFullScreen() const { return m_fsIsShowing; }
9b9cab37 67
a91cf80c
VZ
68 // wxMSW only: EnableCloseButton(FALSE) may be used to remove the "Close"
69 // button from the title bar
70 bool EnableCloseButton(bool enable = TRUE);
71
82c9f85c
VZ
72 // implementation from now on
73 // --------------------------
74
085ad686
VZ
75 // event handlers
76 void OnActivate(wxActivateEvent& event);
77
78 // called by wxWindow whenever it gets focus
79 void SetLastFocus(wxWindow *win) { m_winLastFocused = win; }
80 wxWindow *GetLastFocus() const { return m_winLastFocused; }
81
82c9f85c
VZ
82protected:
83 // common part of all ctors
84 void Init();
85
b225f659
VZ
86 // create a new frame, return FALSE if it couldn't be created
87 bool CreateFrame(const wxString& title,
88 const wxPoint& pos,
89 const wxSize& size);
90
91 // create a new dialog using the given dialog template from resources,
92 // return FALSE if it couldn't be created
6e8515a3 93 bool CreateDialog(const void *dlgTemplate,
b225f659
VZ
94 const wxString& title,
95 const wxPoint& pos,
96 const wxSize& size);
97
82c9f85c
VZ
98 // common part of Iconize(), Maximize() and Restore()
99 void DoShowWindow(int nShowCmd);
100
b2d5a7ee
VZ
101 // translate wxWindows flags to Windows ones
102 virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const;
b225f659 103
9dfef5ac
VZ
104 // choose the right parent to use with CreateWindow()
105 virtual WXHWND MSWGetParent() const;
106
7e25f59e 107 // is the window currently iconized?
82c9f85c
VZ
108 bool m_iconized;
109
110 // should the frame be maximized when it will be shown? set by Maximize()
111 // when it is called while the frame is hidden
112 bool m_maximizeOnShow;
41e929e5
VS
113
114 // Data to save/restore when calling ShowFullScreen
115 long m_fsStyle; // Passed to ShowFullScreen
116 wxRect m_fsOldSize;
117 long m_fsOldWindowStyle;
118 bool m_fsIsMaximized;
119 bool m_fsIsShowing;
9dfef5ac 120
085ad686
VZ
121 // the last focused child: we restore focus to it on activation
122 wxWindow *m_winLastFocused;
123
085ad686 124 DECLARE_EVENT_TABLE()
22f3361e 125 DECLARE_NO_COPY_CLASS(wxTopLevelWindowMSW)
82c9f85c
VZ
126};
127
128// list of all frames and modeless dialogs
129extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows;
130
131#endif // _WX_MSW_TOPLEVEL_H_
132