]>
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"
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 class wxMDIChildFrame
;
27 class wxMDIClientWindow
;
35 //-----------------------------------------------------------------------------
37 //-----------------------------------------------------------------------------
39 extern const char *wxFrameNameStr
;
40 extern const char *wxToolBarNameStr
;
42 //-----------------------------------------------------------------------------
44 //-----------------------------------------------------------------------------
46 class wxFrame
: public wxWindow
48 DECLARE_DYNAMIC_CLASS(wxFrame
)
52 wxFrame( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
53 const wxPoint
&pos
= wxDefaultPosition
, const wxSize
&size
= wxDefaultSize
,
54 long style
= wxDEFAULT_FRAME_STYLE
, const wxString
&name
= wxFrameNameStr
);
55 bool Create( wxWindow
*parent
, wxWindowID id
, const wxString
&title
,
56 const wxPoint
&pos
= wxDefaultPosition
, const wxSize
&size
= wxDefaultSize
,
57 long style
= wxDEFAULT_FRAME_STYLE
, const wxString
&name
= wxFrameNameStr
);
61 virtual bool Show( bool show
);
62 virtual void Centre( int direction
= wxHORIZONTAL
);
64 virtual void GetClientSize( int *width
, int *height
) const;
65 virtual void SetClientSize( int const width
, int const height
);
67 virtual wxStatusBar
* CreateStatusBar(int number
=1, long style
= wxST_SIZEGRIP
, wxWindowID id
= 0,
68 const wxString
& name
= "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(void) 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(void) const { return FALSE
; }
91 bool Iconized(void) const { return IsIconized(); }
92 virtual void Maximize(bool WXUNUSED(maximize
)) {}
93 virtual void Restore(void) {}
95 void OnActivate( wxActivateEvent
&WXUNUSED(event
) ) { } // called from docview.cpp
96 void OnSize( wxSizeEvent
&event
);
97 void OnCloseWindow( wxCloseEvent
& event
);
98 void OnIdle(wxIdleEvent
& event
);
102 virtual void GtkOnSize( int x
, int y
, int width
, int height
);
103 virtual void ImplementSetPosition();
104 virtual wxPoint
GetClientAreaOrigin() const;
105 void DoMenuUpdates();
106 void DoMenuUpdates(wxMenu
* menu
);
108 wxMenuBar
*m_frameMenuBar
;
109 wxStatusBar
*m_frameStatusBar
;
110 wxToolBar
*m_frameToolBar
;
114 DECLARE_EVENT_TABLE()
117 #endif // __GTKFRAMEH__