]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
7c0ea335 | 2 | // Name: wx/gtk/frame.h |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
58614078 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling, Julian Smart | |
ab16f4a3 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | ||
11 | #ifndef __GTKFRAMEH__ | |
12 | #define __GTKFRAMEH__ | |
13 | ||
ab7ce33c | 14 | #if defined(__GNUG__) && !defined(__APPLE__) |
7c0ea335 | 15 | #pragma interface "frame.h" |
c801d85f KB |
16 | #endif |
17 | ||
c801d85f KB |
18 | //----------------------------------------------------------------------------- |
19 | // classes | |
20 | //----------------------------------------------------------------------------- | |
21 | ||
716b7364 | 22 | class wxMDIChildFrame; |
cf4219e7 RR |
23 | class wxMDIClientWindow; |
24 | class wxMenu; | |
25 | class wxMenuBar; | |
26 | class wxToolBar; | |
27 | class wxStatusBar; | |
c801d85f | 28 | |
c801d85f | 29 | //----------------------------------------------------------------------------- |
0d53fc34 | 30 | // wxFrame |
c801d85f KB |
31 | //----------------------------------------------------------------------------- |
32 | ||
0d53fc34 | 33 | class wxFrame : public wxFrameBase |
c801d85f | 34 | { |
bfc6fde4 | 35 | public: |
7c0ea335 | 36 | // construction |
0d53fc34 VS |
37 | wxFrame() { Init(); } |
38 | wxFrame(wxWindow *parent, | |
1e6feb95 VZ |
39 | wxWindowID id, |
40 | const wxString& title, | |
41 | const wxPoint& pos = wxDefaultPosition, | |
42 | const wxSize& size = wxDefaultSize, | |
43 | long style = wxDEFAULT_FRAME_STYLE, | |
44 | const wxString& name = wxFrameNameStr) | |
7c0ea335 VZ |
45 | { |
46 | Init(); | |
47 | ||
48 | Create(parent, id, title, pos, size, style, name); | |
49 | } | |
50 | ||
51 | bool Create(wxWindow *parent, | |
52 | wxWindowID id, | |
53 | const wxString& title, | |
54 | const wxPoint& pos = wxDefaultPosition, | |
55 | const wxSize& size = wxDefaultSize, | |
56 | long style = wxDEFAULT_FRAME_STYLE, | |
57 | const wxString& name = wxFrameNameStr); | |
58 | ||
0d53fc34 | 59 | virtual ~wxFrame(); |
7c0ea335 | 60 | |
88ac883a | 61 | #if wxUSE_STATUSBAR |
8febdd39 RR |
62 | virtual void PositionStatusBar(); |
63 | ||
7c0ea335 VZ |
64 | virtual wxStatusBar* CreateStatusBar(int number = 1, |
65 | long style = wxST_SIZEGRIP, | |
66 | wxWindowID id = 0, | |
67 | const wxString& name = wxStatusLineNameStr); | |
88ac883a | 68 | #endif // wxUSE_STATUSBAR |
bfc6fde4 | 69 | |
88ac883a | 70 | #if wxUSE_TOOLBAR |
7c0ea335 VZ |
71 | virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT, |
72 | wxWindowID id = -1, | |
73 | const wxString& name = wxToolBarNameStr); | |
307f16e8 | 74 | void SetToolBar(wxToolBar *toolbar); |
88ac883a | 75 | #endif // wxUSE_TOOLBAR |
b9f29261 VS |
76 | |
77 | wxPoint GetClientAreaOrigin() const { return wxPoint(0, 0); } | |
bfc6fde4 | 78 | |
7c0ea335 VZ |
79 | // implementation from now on |
80 | // -------------------------- | |
bfc6fde4 | 81 | |
7c0ea335 | 82 | // GTK callbacks |
bfc6fde4 | 83 | virtual void GtkOnSize( int x, int y, int width, int height ); |
bfc6fde4 VZ |
84 | virtual void OnInternalIdle(); |
85 | ||
16bcc879 RR |
86 | bool m_menuBarDetached; |
87 | bool m_toolBarDetached; | |
3d0c4d2e | 88 | |
bfc6fde4 | 89 | protected: |
ddb6bc71 RR |
90 | // common part of all ctors |
91 | void Init(); | |
7c0ea335 | 92 | |
1c4f8f8d | 93 | // override wxWindow methods to take into account tool/menu/statusbars |
bfc6fde4 | 94 | virtual void DoSetClientSize(int width, int height); |
f9241296 | 95 | virtual void DoGetClientSize( int *width, int *height ) const; |
bfc6fde4 | 96 | |
6522713c VZ |
97 | #if wxUSE_MENUS_NATIVE |
98 | virtual void DetachMenuBar(); | |
99 | virtual void AttachMenuBar(wxMenuBar *menubar); | |
100 | #endif // wxUSE_MENUS_NATIVE | |
0d53fc34 VS |
101 | |
102 | DECLARE_DYNAMIC_CLASS(wxFrame) | |
c801d85f KB |
103 | }; |
104 | ||
105 | #endif // __GTKFRAMEH__ |