]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/frame.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
19 #include "wx/object.h"
20 #include "wx/window.h"
23 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
27 class wxMDIChildFrame
;
28 class wxMDIClientWindow
;
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 extern const wxChar
*wxFrameNameStr
;
41 extern const wxChar
*wxToolBarNameStr
;
43 //-----------------------------------------------------------------------------
45 //-----------------------------------------------------------------------------
47 class wxFrame
: public wxWindow
49 DECLARE_DYNAMIC_CLASS(wxFrame
)
53 wxFrame( 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
);
56 bool Create( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
57 const wxPoint
&pos
= wxDefaultPosition
, const wxSize
&size
= wxDefaultSize
,
58 long style
= wxDEFAULT_FRAME_STYLE
, const wxString
&name
= wxFrameNameStr
);
62 virtual bool Show( bool show
);
63 virtual void Centre( int direction
= wxHORIZONTAL
);
65 virtual void GetClientSize( int *width
, int *height
) const;
67 virtual wxStatusBar
* CreateStatusBar(int number
=1, long style
= wxST_SIZEGRIP
, wxWindowID id
= 0,
68 const wxString
& name
= _T("statusBar"));
69 virtual wxStatusBar
*OnCreateStatusBar( int number
, long style
, wxWindowID id
,
70 const wxString
& name
);
71 virtual wxStatusBar
*GetStatusBar() const;
72 inline void SetStatusBar(wxStatusBar
*statusBar
) { m_frameStatusBar
= statusBar
; }
73 virtual void SetStatusText( const wxString
&text
, int number
= 0 );
74 virtual void SetStatusWidths( int n
, const int widths_field
[] );
76 virtual wxToolBar
* CreateToolBar( long style
= wxNO_BORDER
|wxTB_HORIZONTAL
, wxWindowID id
= -1,
77 const wxString
& name
= wxToolBarNameStr
);
78 virtual wxToolBar
*OnCreateToolBar( long style
, wxWindowID id
, const wxString
& name
);
79 virtual wxToolBar
*GetToolBar() const;
80 inline void SetToolBar(wxToolBar
*toolbar
) { m_frameToolBar
= toolbar
; }
82 virtual void SetMenuBar( wxMenuBar
*menuBar
);
83 virtual wxMenuBar
*GetMenuBar() const;
85 virtual void SetTitle( const wxString
&title
);
86 virtual wxString
GetTitle() const { return m_title
; }
88 virtual void SetIcon( const wxIcon
&icon
);
89 virtual void Iconize( bool WXUNUSED(iconize
)) { }
90 virtual bool IsIconized() const { return FALSE
; }
91 bool Iconized() const { return IsIconized(); }
92 virtual void Maximize(bool WXUNUSED(maximize
)) {}
93 virtual void Restore() {}
95 virtual void Command( int id
);
97 void OnCloseWindow( wxCloseEvent
& event
);
98 void OnActivate( wxActivateEvent
&WXUNUSED(event
) ) { } // called from docview.cpp
99 void OnSize( wxSizeEvent
&event
);
101 void OnMenuHighlight( wxMenuEvent
& event
);
105 virtual void GtkOnSize( int x
, int y
, int width
, int height
);
106 void DoMenuUpdates();
107 void DoMenuUpdates(wxMenu
* menu
, wxWindow
* focusWin
);
108 virtual void OnInternalIdle();
110 wxMenuBar
*m_frameMenuBar
;
111 wxStatusBar
*m_frameStatusBar
;
112 wxToolBar
*m_frameToolBar
;
115 int m_miniEdge
,m_miniTitle
;
116 GtkWidget
*m_mainWidget
;
117 bool m_menuBarDetached
;
118 bool m_toolBarDetached
;
121 virtual void DoSetSize(int x
, int y
,
122 int width
, int height
,
123 int sizeFlags
= wxSIZE_AUTO
);
125 virtual void DoSetClientSize(int width
, int height
);
128 DECLARE_EVENT_TABLE()
131 #endif // __GTKFRAMEH__