]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/frame.h
Implemented wxArrayString::Shrink() and stuff.
[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"
ac57418f 21#include "wx/icon.h"
c801d85f
KB
22
23//-----------------------------------------------------------------------------
24// classes
25//-----------------------------------------------------------------------------
26
716b7364 27class wxMDIChildFrame;
cf4219e7
RR
28class wxMDIClientWindow;
29class wxMenu;
30class wxMenuBar;
31class wxToolBar;
32class wxStatusBar;
c801d85f
KB
33
34class wxFrame;
35
36//-----------------------------------------------------------------------------
37// global data
38//-----------------------------------------------------------------------------
39
3b90345b
OK
40extern const wxChar *wxFrameNameStr;
41extern const wxChar *wxToolBarNameStr;
c801d85f
KB
42
43//-----------------------------------------------------------------------------
44// wxFrame
45//-----------------------------------------------------------------------------
46
47class wxFrame: public wxWindow
48{
bfc6fde4 49DECLARE_DYNAMIC_CLASS(wxFrame)
46dc76ba 50
bfc6fde4
VZ
51public:
52 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 );
59 ~wxFrame();
60 bool Destroy();
61
62 virtual bool Show( bool show );
63 virtual void Centre( int direction = wxHORIZONTAL );
64
65 virtual void GetClientSize( int *width, int *height ) const;
66
67 virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0,
3b90345b 68 const wxString& name = _T("statusBar"));
bfc6fde4
VZ
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[] );
75
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; }
81
82 virtual void SetMenuBar( wxMenuBar *menuBar );
83 virtual wxMenuBar *GetMenuBar() const;
84
85 virtual void SetTitle( const wxString &title );
86 virtual wxString GetTitle() const { return m_title; }
87
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() {}
94
30f1b5f3
RR
95 virtual void Command( int id );
96
bfc6fde4
VZ
97 void OnCloseWindow( wxCloseEvent& event );
98 void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
99 void OnSize( wxSizeEvent &event );
100
101 void OnMenuHighlight( wxMenuEvent& event );
102
103 // implementation
104
105 virtual void GtkOnSize( int x, int y, int width, int height );
bfc6fde4 106 void DoMenuUpdates();
e702ff0f 107 void DoMenuUpdates(wxMenu* menu, wxWindow* focusWin);
bfc6fde4
VZ
108 virtual void OnInternalIdle();
109
110 wxMenuBar *m_frameMenuBar;
bfc6fde4
VZ
111 wxStatusBar *m_frameStatusBar;
112 wxToolBar *m_frameToolBar;
113 wxString m_title;
114 wxIcon m_icon;
115 int m_miniEdge,m_miniTitle;
f362b96d 116 GtkWidget *m_mainWidget;
16bcc879
RR
117 bool m_menuBarDetached;
118 bool m_toolBarDetached;
bfc6fde4
VZ
119
120protected:
121 virtual void DoSetSize(int x, int y,
122 int width, int height,
123 int sizeFlags = wxSIZE_AUTO);
124
125 virtual void DoSetClientSize(int width, int height);
126
127private:
128 DECLARE_EVENT_TABLE()
c801d85f
KB
129};
130
131#endif // __GTKFRAMEH__