]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/frame.h
Fixes for long to wxCoord
[wxWidgets.git] / include / wx / gtk1 / 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 51public:
ddb6bc71 52 wxFrame() { Init(); }
bfc6fde4
VZ
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 );
6d693bb4 63 virtual void Centre( int direction = wxBOTH );
bfc6fde4 64
88ac883a 65#if wxUSE_STATUSBAR
bfc6fde4 66 virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0,
223d09f6 67 const wxString& name = wxT("statusBar"));
bfc6fde4
VZ
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[] );
88ac883a 74#endif // wxUSE_STATUSBAR
bfc6fde4 75
88ac883a 76#if wxUSE_TOOLBAR
bfc6fde4
VZ
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;
307f16e8 81 void SetToolBar(wxToolBar *toolbar);
88ac883a 82#endif // wxUSE_TOOLBAR
bfc6fde4
VZ
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
ca26177c
RR
90 // make the window modal (all other windows unresponsive)
91 virtual void MakeModal(bool modal = TRUE);
92
bfc6fde4 93 virtual void SetIcon( const wxIcon &icon );
bfc6fde4 94 bool Iconized() const { return IsIconized(); }
cd25b18c
RR
95 virtual void Maximize( bool maximize );
96 virtual void Restore();
97 virtual void Iconize( bool iconize );
98 virtual bool IsIconized() const;
bfc6fde4 99
30f1b5f3
RR
100 virtual void Command( int id );
101
bfc6fde4
VZ
102 void OnCloseWindow( wxCloseEvent& event );
103 void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
104 void OnSize( wxSizeEvent &event );
54517652 105 void OnIdle( wxIdleEvent &event );
bfc6fde4
VZ
106
107 void OnMenuHighlight( wxMenuEvent& event );
108
109 // implementation
110
111 virtual void GtkOnSize( int x, int y, int width, int height );
bfc6fde4 112 void DoMenuUpdates();
e702ff0f 113 void DoMenuUpdates(wxMenu* menu, wxWindow* focusWin);
bfc6fde4
VZ
114 virtual void OnInternalIdle();
115
116 wxMenuBar *m_frameMenuBar;
dcf924a3 117#if wxUSE_STATUSBAR
bfc6fde4 118 wxStatusBar *m_frameStatusBar;
dcf924a3
RR
119#endif
120#if wxUSE_TOOLBAR
bfc6fde4 121 wxToolBar *m_frameToolBar;
dcf924a3 122#endif
bfc6fde4
VZ
123 wxString m_title;
124 wxIcon m_icon;
125 int m_miniEdge,m_miniTitle;
f362b96d 126 GtkWidget *m_mainWidget;
16bcc879
RR
127 bool m_menuBarDetached;
128 bool m_toolBarDetached;
6bc8a1c8 129 bool m_insertInClientArea; /* not from within OnCreateXXX */
bfc6fde4
VZ
130
131protected:
ddb6bc71
RR
132 // common part of all ctors
133 void Init();
134
bfc6fde4
VZ
135 virtual void DoSetSize(int x, int y,
136 int width, int height,
137 int sizeFlags = wxSIZE_AUTO);
138
139 virtual void DoSetClientSize(int width, int height);
f9241296 140 virtual void DoGetClientSize( int *width, int *height ) const;
bfc6fde4
VZ
141
142private:
143 DECLARE_EVENT_TABLE()
c801d85f
KB
144};
145
146#endif // __GTKFRAMEH__