]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/frame.h
d62557e9e9a860487e6a8ef3b3011f478d97cffe
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 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
27 class wxMDIChildFrame
;
28 class wxMDIClientWindow
;
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 extern const char *wxFrameNameStr
;
41 extern const char *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 Enable( bool enable
);
64 virtual void Centre( int direction
= wxHORIZONTAL
);
66 virtual void GetClientSize( int *width
, int *height
) const;
67 virtual void SetClientSize( int const width
, int const height
);
69 // set minimal/maxmimal size for the frame
70 virtual void SetSizeHints( int minW
, int minH
, int maxW
, int maxH
, int incW
= -1 );
72 virtual wxStatusBar
* CreateStatusBar(int number
=1, long style
= wxST_SIZEGRIP
, wxWindowID id
= 0,
73 const wxString
& name
= "statusBar");
74 virtual wxStatusBar
*OnCreateStatusBar( int number
, long style
, wxWindowID id
,
75 const wxString
& name
);
76 virtual wxStatusBar
*GetStatusBar() const;
77 virtual void SetStatusText( const wxString
&text
, int number
= 0 );
78 virtual void SetStatusWidths( int n
, const int widths_field
[] );
80 virtual wxToolBar
* CreateToolBar( long style
= wxNO_BORDER
|wxTB_HORIZONTAL
, wxWindowID id
= -1,
81 const wxString
& name
= wxToolBarNameStr
);
82 virtual wxToolBar
*OnCreateToolBar( long style
, wxWindowID id
, const wxString
& name
);
83 virtual wxToolBar
*GetToolBar(void) const;
85 virtual void SetMenuBar( wxMenuBar
*menuBar
);
86 virtual wxMenuBar
*GetMenuBar() const;
88 virtual void SetTitle( const wxString
&title
);
89 virtual wxString
GetTitle() const { return m_title
; }
91 virtual void SetIcon( const wxIcon
&icon
);
92 void Iconize( bool WXUNUSED(iconize
)) { }
93 bool IsIconized(void) const { return FALSE
; }
94 bool Iconized(void) const { return FALSE
; }
96 void OnActivate( wxActivateEvent
&WXUNUSED(event
) ) { } // called from docview.cpp
97 void OnSize( wxSizeEvent
&event
);
98 void OnCloseWindow( wxCloseEvent
& event
);
99 void OnIdle(wxIdleEvent
& event
);
101 virtual void AddChild( wxWindow
*child
);
102 virtual void GtkOnSize( int x
, int y
, int width
, int height
);
106 friend wxMDIChildFrame
;
107 friend wxMDIClientWindow
;
109 // update frame's menus (called from OnIdle)
110 void DoMenuUpdates();
111 void DoMenuUpdates(wxMenu
* menu
);
112 virtual void ImplementSetPosition();
114 GtkWidget
*m_mainWindow
;
115 wxMenuBar
*m_frameMenuBar
;
116 wxStatusBar
*m_frameStatusBar
;
117 wxToolBar
*m_frameToolBar
;
119 bool m_addPrivateChild
; // for toolbar (and maybe menubar)
123 DECLARE_EVENT_TABLE()
126 #endif // __GTKFRAMEH__