]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/frame.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFrame class interface
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_FRAME_H_BASE_
13 #define _WX_FRAME_H_BASE_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
20 #pragma interface "framebase.h"
23 #include "wx/window.h" // the base class
24 #include "wx/icon.h" // for m_icon
26 // the default names for various classs
27 WXDLLEXPORT_DATA(extern const wxChar
*) wxFrameNameStr
;
28 WXDLLEXPORT_DATA(extern const wxChar
*) wxStatusLineNameStr
;
29 WXDLLEXPORT_DATA(extern const wxChar
*) wxToolBarNameStr
;
30 WXDLLEXPORT_DATA(extern wxWindow
*) wxWndHook
;
32 class WXDLLEXPORT wxMenuBar
;
33 class WXDLLEXPORT wxStatusBar
;
34 class WXDLLEXPORT wxToolBar
;
36 // Styles for ShowFullScreen
37 #define wxFULLSCREEN_NOMENUBAR 0x01
38 #define wxFULLSCREEN_NOTOOLBAR 0x02
39 #define wxFULLSCREEN_NOSTATUSBAR 0x04
40 #define wxFULLSCREEN_NOBORDER 0x08
41 #define wxFULLSCREEN_NOCAPTION 0x10
42 #define wxFULLSCREEN_ALL (wxFULLSCREEN_NOMENUBAR | wxFULLSCREEN_NOTOOLBAR | wxFULLSCREEN_NOSTATUSBAR | wxFULLSCREEN_NOBORDER | wxFULLSCREEN_NOCAPTION)
44 // ----------------------------------------------------------------------------
45 // wxFrame is a top-level window with optional menubar, statusbar and toolbar
47 // For each of *bars, a frame may have several of them, but only one is
48 // managed by the frame, i.e. resized/moved when the frame is and whose size
49 // is accounted for in client size calculations - all others should be taken
50 // care of manually. The CreateXXXBar() functions create this, main, XXXBar,
51 // but the actual creation is done in OnCreateXXXBar() functions which may be
52 // overridden to create custom objects instead of standard ones when
53 // CreateXXXBar() is called.
54 // ----------------------------------------------------------------------------
56 class WXDLLEXPORT wxFrameBase
: public wxWindow
62 virtual ~wxFrameBase() {} // Added min for Mac X
65 wxFrame
*New(wxWindow
*parent
,
67 const wxString
& title
,
68 const wxPoint
& pos
= wxDefaultPosition
,
69 const wxSize
& size
= wxDefaultSize
,
70 long style
= wxDEFAULT_FRAME_STYLE
,
71 const wxString
& name
= wxFrameNameStr
);
76 // maximize = TRUE => maximize, otherwise - restore
77 virtual void Maximize(bool maximize
= TRUE
) = 0;
79 // undo Maximize() or Iconize()
80 virtual void Restore() = 0;
82 // iconize = TRUE => iconize, otherwise - restore
83 virtual void Iconize(bool iconize
= TRUE
) = 0;
85 // return TRUE if the frame is maximized
86 virtual bool IsMaximized() const = 0;
88 // return TRUE if the frame is iconized
89 virtual bool IsIconized() const = 0;
92 const wxIcon
& GetIcon() const { return m_icon
; }
95 virtual void SetIcon(const wxIcon
& icon
) { m_icon
= icon
; }
97 // make the window modal (all other windows unresponsive)
98 virtual void MakeModal(bool modal
= TRUE
);
100 // get the origin of the client area (which may be different from (0, 0)
101 // if the frame has a toolbar) in client coordinates
102 virtual wxPoint
GetClientAreaOrigin() const;
104 // menu bar functions
105 // ------------------
107 virtual void SetMenuBar(wxMenuBar
*menubar
) = 0;
108 virtual wxMenuBar
*GetMenuBar() const { return m_frameMenuBar
; }
110 // call this to simulate a menu command
111 bool Command(int id
) { return ProcessCommand(id
); }
113 // process menu command: returns TRUE if processed
114 bool ProcessCommand(int id
);
116 // status bar functions
117 // --------------------
119 // create the main status bar by calling OnCreateStatusBar()
120 virtual wxStatusBar
* CreateStatusBar(int number
= 1,
121 long style
= wxST_SIZEGRIP
,
123 const wxString
& name
=
124 wxStatusLineNameStr
);
125 // return a new status bar
126 virtual wxStatusBar
*OnCreateStatusBar(int number
,
129 const wxString
& name
);
130 // get the main status bar
131 virtual wxStatusBar
*GetStatusBar() const { return m_frameStatusBar
; }
133 // sets the main status bar
134 void SetStatusBar(wxStatusBar
*statBar
) { m_frameStatusBar
= statBar
; }
136 // forward these to status bar
137 virtual void SetStatusText(const wxString
&text
, int number
= 0);
138 virtual void SetStatusWidths(int n
, const int widths_field
[]);
139 #endif // wxUSE_STATUSBAR
144 // create main toolbar bycalling OnCreateToolBar()
145 virtual wxToolBar
* CreateToolBar(long style
= wxNO_BORDER
|wxTB_HORIZONTAL
,
147 const wxString
& name
= wxToolBarNameStr
);
148 // return a new toolbar
149 virtual wxToolBar
*OnCreateToolBar(long style
,
151 const wxString
& name
);
153 // get/set the main toolbar
154 virtual wxToolBar
*GetToolBar() const { return m_frameToolBar
; }
155 virtual void SetToolBar(wxToolBar
*toolbar
) { m_frameToolBar
= toolbar
; }
156 #endif // wxUSE_TOOLBAR
158 // old functions, use the new ones instead!
159 #if WXWIN_COMPATIBILITY_2
160 bool Iconized() const { return IsIconized(); }
161 #endif // WXWIN_COMPATIBILITY_2
163 // implementation only from now on
164 // -------------------------------
166 // override some base class virtuals
167 virtual bool Destroy();
168 virtual bool IsTopLevel() const { return TRUE
; }
171 void OnIdle(wxIdleEvent
& event
);
172 void OnCloseWindow(wxCloseEvent
& event
);
173 void OnMenuHighlight(wxMenuEvent
& event
);
174 void OnSize(wxSizeEvent
& event
);
175 // this should go away, but for now it's called from docview.cpp,
176 // so should be there for all platforms
177 void OnActivate(wxActivateEvent
&WXUNUSED(event
)) { }
179 // send wxUpdateUIEvents for all menu items (called from OnIdle())
180 void DoMenuUpdates();
181 void DoMenuUpdates(wxMenu
* menu
, wxWindow
* focusWin
);
184 // the frame main menu/status/tool bars
185 // ------------------------------------
187 // this (non virtual!) function should be called from dtor to delete the
188 // main menubar, statusbar and toolbar (if any)
189 void DeleteAllBars();
191 wxMenuBar
*m_frameMenuBar
;
194 // override to update status bar position (or anything else) when
196 virtual void PositionStatusBar() { }
198 // show the help string for this menu item in the given status bar: the
199 // status bar pointer can be NULL; return TRUE if help was shown
200 bool ShowMenuHelp(wxStatusBar
*statbar
, int id
);
202 wxStatusBar
*m_frameStatusBar
;
203 #endif // wxUSE_STATUSBAR
206 // override to update status bar position (or anything else) when
208 virtual void PositionToolBar() { }
210 wxToolBar
*m_frameToolBar
;
211 #endif // wxUSE_TOOLBAR
213 // the frame client to screen translation should take account of the
214 // toolbar which may shift the origin of the client area
215 virtual void DoClientToScreen(int *x
, int *y
) const;
216 virtual void DoScreenToClient(int *x
, int *y
) const;
218 // send the iconize event, return TRUE if processed
219 bool SendIconizeEvent(bool iconized
= TRUE
);
224 DECLARE_EVENT_TABLE()
227 // include the real class declaration
228 #if defined(__WXMSW__)
229 #include "wx/msw/frame.h"
230 #elif defined(__WXMOTIF__)
231 #include "wx/motif/frame.h"
232 #elif defined(__WXGTK__)
233 #include "wx/gtk/frame.h"
234 #elif defined(__WXQT__)
235 #include "wx/qt/frame.h"
236 #elif defined(__WXMAC__)
237 #include "wx/mac/frame.h"
238 #elif defined(__WXPM__)
239 #include "wx/os2/frame.h"
240 #elif defined(__WXSTUBS__)
241 #include "wx/stubs/frame.h"