]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/frame.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
20 #include "wx/object.h"
21 #include "wx/window.h"
23 #include "wx/statusbr.h"
24 #include "wx/toolbar.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 class wxMDIChildFrame
;
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
38 extern const char *wxFrameNameStr
;
40 //-----------------------------------------------------------------------------
42 //-----------------------------------------------------------------------------
44 class wxFrame
: public wxWindow
46 DECLARE_DYNAMIC_CLASS(wxFrame
)
50 wxFrame( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
51 const wxPoint
&pos
= wxDefaultPosition
, const wxSize
&size
= wxDefaultSize
,
52 long style
= wxDEFAULT_FRAME_STYLE
, const wxString
&name
= wxFrameNameStr
);
53 bool Create( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
54 const wxPoint
&pos
= wxDefaultPosition
, const wxSize
&size
= wxDefaultSize
,
55 long style
= wxDEFAULT_FRAME_STYLE
, const wxString
&name
= wxFrameNameStr
);
59 virtual bool Show( bool show
);
60 virtual void Enable( bool enable
);
62 virtual void GetClientSize( int *width
, int *height
) const;
64 // set minimal/maxmimal size for the frame
65 virtual void SetSizeHints( int minW
, int minH
, int maxW
, int maxH
, int incW
= -1 );
67 virtual bool CreateStatusBar( int number
= 1 );
68 virtual wxStatusBar
*GetStatusBar();
69 virtual void SetStatusText( const wxString
&text
, int number
= 0 );
70 virtual void SetStatusWidths( int n
, int *width
);
72 virtual wxToolBar
*CreateToolBar( int style
= 0,
73 int orientation
= wxHORIZONTAL
, int rowsOrColumns
= 1 );
74 virtual wxToolBar
*GetToolBar();
76 virtual void SetMenuBar( wxMenuBar
*menuBar
);
77 virtual wxMenuBar
*GetMenuBar();
79 void SetTitle( const wxString
&title
);
80 wxString
GetTitle() const { return m_title
; }
82 void OnActivate( wxActivateEvent
&WXUNUSED(event
) ) { } // called from docview.cpp
83 void OnSize( wxSizeEvent
&event
);
84 void OnCloseWindow( wxCloseEvent
& event
);
85 void OnIdle(wxIdleEvent
& event
);
87 virtual void AddChild( wxWindow
*child
);
88 virtual void GtkOnSize( int x
, int y
, int width
, int height
);
92 friend wxMDIChildFrame
;
94 // update frame's menus (called from OnIdle)
96 void DoMenuUpdates(wxMenu
* menu
);
98 GtkWidget
*m_mainWindow
;
99 wxMenuBar
*m_frameMenuBar
;
100 wxStatusBar
*m_frameStatusBar
;
101 wxToolBar
*m_frameToolBar
;
104 bool m_addPrivateChild
; // for toolbar (and maybe menubar)
107 DECLARE_EVENT_TABLE()
110 #endif // __GTKFRAMEH__