]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/frame.h
fixed problems with HTML printing w/o using wxHtmlWindow
[wxWidgets.git] / include / wx / gtk1 / frame.h
CommitLineData
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
14#ifdef __GNUG__
7c0ea335 15 #pragma interface "frame.h"
c801d85f
KB
16#endif
17
c801d85f
KB
18//-----------------------------------------------------------------------------
19// classes
20//-----------------------------------------------------------------------------
21
716b7364 22class wxMDIChildFrame;
cf4219e7
RR
23class wxMDIClientWindow;
24class wxMenu;
25class wxMenuBar;
26class wxToolBar;
27class wxStatusBar;
c801d85f 28
c801d85f 29//-----------------------------------------------------------------------------
1e6feb95 30// wxFrameGTK
c801d85f
KB
31//-----------------------------------------------------------------------------
32
1e6feb95 33class wxFrameGTK : public wxFrameBase
c801d85f 34{
bfc6fde4 35public:
7c0ea335 36 // construction
1e6feb95
VZ
37 wxFrameGTK() { Init(); }
38 wxFrameGTK(wxWindow *parent,
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
1e6feb95 59 virtual ~wxFrameGTK();
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
bfc6fde4 76
7c0ea335
VZ
77 // implementation from now on
78 // --------------------------
bfc6fde4 79
7c0ea335 80 // GTK callbacks
bfc6fde4 81 virtual void GtkOnSize( int x, int y, int width, int height );
bfc6fde4
VZ
82 virtual void OnInternalIdle();
83
16bcc879
RR
84 bool m_menuBarDetached;
85 bool m_toolBarDetached;
3d0c4d2e 86
bfc6fde4 87protected:
ddb6bc71
RR
88 // common part of all ctors
89 void Init();
7c0ea335 90
1c4f8f8d 91 // override wxWindow methods to take into account tool/menu/statusbars
bfc6fde4 92 virtual void DoSetClientSize(int width, int height);
f9241296 93 virtual void DoGetClientSize( int *width, int *height ) const;
bfc6fde4 94
6522713c
VZ
95#if wxUSE_MENUS_NATIVE
96 virtual void DetachMenuBar();
97 virtual void AttachMenuBar(wxMenuBar *menubar);
98#endif // wxUSE_MENUS_NATIVE
c801d85f
KB
99};
100
101#endif // __GTKFRAMEH__