]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk1/frame.h
fixes for wxFontMapper endless recursion
[wxWidgets.git] / include / wx / gtk1 / frame.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: frame.h
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling, Julian Smart
7// Licence: wxWindows licence
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"
21#include "wx/icon.h"
22
23//-----------------------------------------------------------------------------
24// classes
25//-----------------------------------------------------------------------------
26
27class wxMDIChildFrame;
28class wxMDIClientWindow;
29class wxMenu;
30class wxMenuBar;
31class wxToolBar;
32class wxStatusBar;
33
34class wxFrame;
35
36//-----------------------------------------------------------------------------
37// global data
38//-----------------------------------------------------------------------------
39
40extern const wxChar *wxFrameNameStr;
41extern const wxChar *wxToolBarNameStr;
42
43//-----------------------------------------------------------------------------
44// wxFrame
45//-----------------------------------------------------------------------------
46
47class wxFrame: public wxWindow
48{
49DECLARE_DYNAMIC_CLASS(wxFrame)
50
51public:
52 wxFrame() { Init(); }
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 = wxBOTH );
64
65#if wxUSE_STATUSBAR
66 virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0,
67 const wxString& name = wxT("statusBar"));
68 virtual wxStatusBar *OnCreateStatusBar( int number, long style, wxWindowID id,
69 const wxString& name );
70 virtual wxStatusBar *GetStatusBar() const;
71 inline void SetStatusBar(wxStatusBar *statusBar) { m_frameStatusBar = statusBar; }
72 virtual void SetStatusText( const wxString &text, int number = 0 );
73 virtual void SetStatusWidths( int n, const int widths_field[] );
74#endif // wxUSE_STATUSBAR
75
76#if wxUSE_TOOLBAR
77 virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1,
78 const wxString& name = wxToolBarNameStr);
79 virtual wxToolBar *OnCreateToolBar( long style, wxWindowID id, const wxString& name );
80 virtual wxToolBar *GetToolBar() const;
81 void SetToolBar(wxToolBar *toolbar);
82#endif // wxUSE_TOOLBAR
83
84 virtual void SetMenuBar( wxMenuBar *menuBar );
85 virtual wxMenuBar *GetMenuBar() const;
86
87 virtual void SetTitle( const wxString &title );
88 virtual wxString GetTitle() const { return m_title; }
89
90 // make the window modal (all other windows unresponsive)
91 virtual void MakeModal(bool modal = TRUE);
92
93 virtual void SetIcon( const wxIcon &icon );
94 bool Iconized() const { return IsIconized(); }
95 virtual void Maximize( bool maximize );
96 virtual void Restore();
97 virtual void Iconize( bool iconize );
98 virtual bool IsIconized() const;
99
100 virtual bool IsTopLevel() const { return TRUE; }
101
102 virtual void Command( int id );
103
104 void OnCloseWindow( wxCloseEvent& event );
105 void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
106 void OnSize( wxSizeEvent &event );
107 void OnIdle( wxIdleEvent &event );
108
109 void OnMenuHighlight( wxMenuEvent& event );
110
111 // implementation
112
113 virtual void GtkOnSize( int x, int y, int width, int height );
114 void DoMenuUpdates();
115 void DoMenuUpdates(wxMenu* menu, wxWindow* focusWin);
116 virtual void OnInternalIdle();
117
118 wxMenuBar *m_frameMenuBar;
119#if wxUSE_STATUSBAR
120 wxStatusBar *m_frameStatusBar;
121#endif
122#if wxUSE_TOOLBAR
123 wxToolBar *m_frameToolBar;
124#endif
125 wxString m_title;
126 wxIcon m_icon;
127 int m_miniEdge,m_miniTitle;
128 GtkWidget *m_mainWidget;
129 bool m_menuBarDetached;
130 bool m_toolBarDetached;
131 bool m_insertInClientArea; /* not from within OnCreateXXX */
132
133protected:
134 // common part of all ctors
135 void Init();
136
137 virtual void DoSetSize(int x, int y,
138 int width, int height,
139 int sizeFlags = wxSIZE_AUTO);
140
141 virtual void DoSetClientSize(int width, int height);
142 virtual void DoGetClientSize( int *width, int *height ) const;
143
144private:
145 DECLARE_EVENT_TABLE()
146};
147
148#endif // __GTKFRAMEH__