]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/frame.h
All functionality I know hot implement already implemented.
[wxWidgets.git] / include / wx / gtk / frame.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: frame.h
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__
15#pragma interface
16#endif
17
18#include "wx/defs.h"
19#include "wx/object.h"
20#include "wx/window.h"
c801d85f
KB
21
22//-----------------------------------------------------------------------------
23// classes
24//-----------------------------------------------------------------------------
25
716b7364 26class wxMDIChildFrame;
cf4219e7
RR
27class wxMDIClientWindow;
28class wxMenu;
29class wxMenuBar;
30class wxToolBar;
31class wxStatusBar;
c801d85f
KB
32
33class wxFrame;
34
35//-----------------------------------------------------------------------------
36// global data
37//-----------------------------------------------------------------------------
38
39extern const char *wxFrameNameStr;
cf4219e7 40extern const char *wxToolBarNameStr;
c801d85f
KB
41
42//-----------------------------------------------------------------------------
43// wxFrame
44//-----------------------------------------------------------------------------
45
46class wxFrame: public wxWindow
47{
46dc76ba 48 DECLARE_DYNAMIC_CLASS(wxFrame)
ab16f4a3 49public:
46dc76ba 50
ab16f4a3
VZ
51 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 );
58 ~wxFrame();
59 bool Destroy();
60
ab16f4a3
VZ
61 virtual bool Show( bool show );
62 virtual void Enable( bool enable );
903f689b 63 virtual void Centre( int direction = wxHORIZONTAL );
ab16f4a3 64
ab16f4a3 65 virtual void GetClientSize( int *width, int *height ) const;
b593568e 66 virtual void SetClientSize( int const width, int const height );
324511ce 67
e3e65dac
RR
68 virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0,
69 const wxString& name = "statusBar");
362c6693
RR
70 virtual wxStatusBar *OnCreateStatusBar( int number, long style, wxWindowID id,
71 const wxString& name );
72 virtual wxStatusBar *GetStatusBar() const;
8a9523f2 73 inline void SetStatusBar(wxStatusBar *statusBar) { m_frameStatusBar = statusBar; }
ab16f4a3 74 virtual void SetStatusText( const wxString &text, int number = 0 );
362c6693 75 virtual void SetStatusWidths( int n, const int widths_field[] );
ab16f4a3 76
324511ce 77 virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1,
e3e65dac 78 const wxString& name = wxToolBarNameStr);
362c6693
RR
79 virtual wxToolBar *OnCreateToolBar( long style, wxWindowID id, const wxString& name );
80 virtual wxToolBar *GetToolBar(void) const;
8a9523f2 81 inline void SetToolBar(wxToolBar *toolbar) { m_frameToolBar = toolbar; }
324511ce 82
46dc76ba 83 virtual void SetMenuBar( wxMenuBar *menuBar );
362c6693 84 virtual wxMenuBar *GetMenuBar() const;
ab16f4a3 85
cf4219e7
RR
86 virtual void SetTitle( const wxString &title );
87 virtual wxString GetTitle() const { return m_title; }
324511ce 88
cf4219e7 89 virtual void SetIcon( const wxIcon &icon );
c33c4050
RR
90 virtual void Iconize( bool WXUNUSED(iconize)) { }
91 virtual bool IsIconized(void) const { return FALSE; }
92 bool Iconized(void) const { return IsIconized(); }
324511ce 93 virtual void Maximize(bool WXUNUSED(maximize)) {}
c33c4050 94 virtual void Restore(void) {}
c801d85f 95
46dc76ba 96 void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
ab16f4a3
VZ
97 void OnSize( wxSizeEvent &event );
98 void OnCloseWindow( wxCloseEvent& event );
99 void OnIdle(wxIdleEvent& event);
100
58614078
RR
101 void AddChild( wxWindow *child );
102
103 // implementation
104
ab16f4a3
VZ
105 virtual void GtkOnSize( int x, int y, int width, int height );
106
107private:
108 friend wxWindow;
109 friend wxMDIChildFrame;
cf4219e7 110 friend wxMDIClientWindow;
ab16f4a3
VZ
111
112 // update frame's menus (called from OnIdle)
113 void DoMenuUpdates();
114 void DoMenuUpdates(wxMenu* menu);
903f689b 115 virtual void ImplementSetPosition();
ab16f4a3
VZ
116
117 GtkWidget *m_mainWindow;
118 wxMenuBar *m_frameMenuBar;
119 wxStatusBar *m_frameStatusBar;
46dc76ba
RR
120 wxToolBar *m_frameToolBar;
121 int m_toolBarHeight;
46dc76ba 122 bool m_addPrivateChild; // for toolbar (and maybe menubar)
ab16f4a3 123 wxString m_title;
d355d3fe 124 wxIcon m_icon;
ab16f4a3 125
c801d85f 126 DECLARE_EVENT_TABLE()
c801d85f
KB
127};
128
129#endif // __GTKFRAMEH__