]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/frame.h
wxTREE_INSERT_XXX constants were incorrectly defined (and so inserting the
[wxWidgets.git] / include / wx / gtk1 / 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 );
64
ab16f4a3 65 virtual void GetClientSize( int *width, int *height ) const;
46dc76ba
RR
66
67 // set minimal/maxmimal size for the frame
68 virtual void SetSizeHints( int minW, int minH, int maxW, int maxH, int incW = -1 );
ab16f4a3 69
e3e65dac
RR
70 virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0,
71 const wxString& name = "statusBar");
46dc76ba 72 virtual wxStatusBar *GetStatusBar();
ab16f4a3
VZ
73 virtual void SetStatusText( const wxString &text, int number = 0 );
74 virtual void SetStatusWidths( int n, int *width );
75
e3e65dac
RR
76 virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1,
77 const wxString& name = wxToolBarNameStr);
46dc76ba
RR
78 virtual wxToolBar *GetToolBar();
79
80 virtual void SetMenuBar( wxMenuBar *menuBar );
81 virtual wxMenuBar *GetMenuBar();
ab16f4a3 82
cf4219e7
RR
83 virtual void SetTitle( const wxString &title );
84 virtual wxString GetTitle() const { return m_title; }
d355d3fe 85
cf4219e7 86 virtual void SetIcon( const wxIcon &icon );
c801d85f 87
46dc76ba 88 void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
ab16f4a3
VZ
89 void OnSize( wxSizeEvent &event );
90 void OnCloseWindow( wxCloseEvent& event );
91 void OnIdle(wxIdleEvent& event);
92
46dc76ba 93 virtual void AddChild( wxWindow *child );
ab16f4a3
VZ
94 virtual void GtkOnSize( int x, int y, int width, int height );
95
96private:
97 friend wxWindow;
98 friend wxMDIChildFrame;
cf4219e7 99 friend wxMDIClientWindow;
ab16f4a3
VZ
100
101 // update frame's menus (called from OnIdle)
102 void DoMenuUpdates();
103 void DoMenuUpdates(wxMenu* menu);
104
105 GtkWidget *m_mainWindow;
106 wxMenuBar *m_frameMenuBar;
107 wxStatusBar *m_frameStatusBar;
46dc76ba
RR
108 wxToolBar *m_frameToolBar;
109 int m_toolBarHeight;
46dc76ba 110 bool m_addPrivateChild; // for toolbar (and maybe menubar)
ab16f4a3 111 wxString m_title;
d355d3fe 112 wxIcon m_icon;
ab16f4a3 113
c801d85f 114 DECLARE_EVENT_TABLE()
c801d85f
KB
115};
116
117#endif // __GTKFRAMEH__