]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/frame.h
minor changes a bit everywhere + a small wxLog change (Enable()/IsEnabled()
[wxWidgets.git] / include / wx / gtk / frame.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: frame.h
3// Purpose:
4// Author: Robert Roebling
5// Created: 01/02/97
6// Id:
7// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
ab16f4a3 8// Licence: wxWindows licence
c801d85f
KB
9/////////////////////////////////////////////////////////////////////////////
10
11
12#ifndef __GTKFRAMEH__
13#define __GTKFRAMEH__
14
15#ifdef __GNUG__
16#pragma interface
17#endif
18
19#include "wx/defs.h"
20#include "wx/object.h"
21#include "wx/window.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
40extern const char *wxFrameNameStr;
cf4219e7 41extern const char *wxToolBarNameStr;
c801d85f
KB
42
43//-----------------------------------------------------------------------------
44// wxFrame
45//-----------------------------------------------------------------------------
46
47class wxFrame: public wxWindow
48{
46dc76ba 49 DECLARE_DYNAMIC_CLASS(wxFrame)
ab16f4a3 50public:
46dc76ba 51
ab16f4a3
VZ
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
ab16f4a3
VZ
62 virtual bool Show( bool show );
63 virtual void Enable( bool enable );
903f689b 64 virtual void Centre( int direction = wxHORIZONTAL );
ab16f4a3 65
ab16f4a3 66 virtual void GetClientSize( int *width, int *height ) const;
b593568e 67 virtual void SetClientSize( int const width, int const height );
324511ce 68
e3e65dac
RR
69 virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0,
70 const wxString& name = "statusBar");
362c6693
RR
71 virtual wxStatusBar *OnCreateStatusBar( int number, long style, wxWindowID id,
72 const wxString& name );
73 virtual wxStatusBar *GetStatusBar() const;
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;
324511ce 81
46dc76ba 82 virtual void SetMenuBar( wxMenuBar *menuBar );
362c6693 83 virtual wxMenuBar *GetMenuBar() const;
ab16f4a3 84
cf4219e7
RR
85 virtual void SetTitle( const wxString &title );
86 virtual wxString GetTitle() const { return m_title; }
324511ce 87
cf4219e7 88 virtual void SetIcon( const wxIcon &icon );
c33c4050
RR
89 virtual void Iconize( bool WXUNUSED(iconize)) { }
90 virtual bool IsIconized(void) const { return FALSE; }
91 bool Iconized(void) const { return IsIconized(); }
324511ce 92 virtual void Maximize(bool WXUNUSED(maximize)) {}
c33c4050 93 virtual void Restore(void) {}
c801d85f 94
46dc76ba 95 void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
ab16f4a3
VZ
96 void OnSize( wxSizeEvent &event );
97 void OnCloseWindow( wxCloseEvent& event );
98 void OnIdle(wxIdleEvent& event);
99
46dc76ba 100 virtual void AddChild( wxWindow *child );
ab16f4a3
VZ
101 virtual void GtkOnSize( int x, int y, int width, int height );
102
103private:
104 friend wxWindow;
105 friend wxMDIChildFrame;
cf4219e7 106 friend wxMDIClientWindow;
ab16f4a3
VZ
107
108 // update frame's menus (called from OnIdle)
109 void DoMenuUpdates();
110 void DoMenuUpdates(wxMenu* menu);
903f689b 111 virtual void ImplementSetPosition();
ab16f4a3
VZ
112
113 GtkWidget *m_mainWindow;
114 wxMenuBar *m_frameMenuBar;
115 wxStatusBar *m_frameStatusBar;
46dc76ba
RR
116 wxToolBar *m_frameToolBar;
117 int m_toolBarHeight;
46dc76ba 118 bool m_addPrivateChild; // for toolbar (and maybe menubar)
ab16f4a3 119 wxString m_title;
d355d3fe 120 wxIcon m_icon;
ab16f4a3 121
c801d85f 122 DECLARE_EVENT_TABLE()
c801d85f
KB
123};
124
125#endif // __GTKFRAMEH__