]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/frame.h
more wxCloseEvent changes: now the behaviour should be conforming to the one
[wxWidgets.git] / include / wx / gtk1 / frame.h
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
27 class wxMDIChildFrame;
28 class wxMDIClientWindow;
29 class wxMenu;
30 class wxMenuBar;
31 class wxToolBar;
32 class wxStatusBar;
33
34 class wxFrame;
35
36 //-----------------------------------------------------------------------------
37 // global data
38 //-----------------------------------------------------------------------------
39
40 extern const char *wxFrameNameStr;
41 extern const char *wxToolBarNameStr;
42
43 //-----------------------------------------------------------------------------
44 // wxFrame
45 //-----------------------------------------------------------------------------
46
47 class wxFrame: public wxWindow
48 {
49 DECLARE_DYNAMIC_CLASS(wxFrame)
50 public:
51
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 wxSize GetClientSize() const { int w, h; GetClientSize(& w, & h); return wxSize(w, h); }
67
68 virtual void SetClientSize( int const width, int const height );
69
70 virtual void SetSize( int x, int y, int width, int height,
71 int sizeFlags = wxSIZE_AUTO );
72 virtual void SetSize( int width, int height );
73
74 virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0,
75 const wxString& name = "statusBar");
76 virtual wxStatusBar *OnCreateStatusBar( int number, long style, wxWindowID id,
77 const wxString& name );
78 virtual wxStatusBar *GetStatusBar() const;
79 inline void SetStatusBar(wxStatusBar *statusBar) { m_frameStatusBar = statusBar; }
80 virtual void SetStatusText( const wxString &text, int number = 0 );
81 virtual void SetStatusWidths( int n, const int widths_field[] );
82
83 virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1,
84 const wxString& name = wxToolBarNameStr);
85 virtual wxToolBar *OnCreateToolBar( long style, wxWindowID id, const wxString& name );
86 virtual wxToolBar *GetToolBar() const;
87 inline void SetToolBar(wxToolBar *toolbar) { m_frameToolBar = toolbar; }
88
89 virtual void SetMenuBar( wxMenuBar *menuBar );
90 virtual wxMenuBar *GetMenuBar() const;
91
92 virtual void SetTitle( const wxString &title );
93 virtual wxString GetTitle() const { return m_title; }
94
95 virtual void SetIcon( const wxIcon &icon );
96 virtual void Iconize( bool WXUNUSED(iconize)) { }
97 virtual bool IsIconized() const { return FALSE; }
98 bool Iconized() const { return IsIconized(); }
99 virtual void Maximize(bool WXUNUSED(maximize)) {}
100 virtual void Restore() {}
101
102 void OnCloseWindow( wxCloseEvent& event );
103 void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
104 void OnSize( wxSizeEvent &event );
105
106 void OnMenuHighlight( wxMenuEvent& event );
107
108 // implementation
109
110 virtual void GtkOnSize( int x, int y, int width, int height );
111 virtual wxPoint GetClientAreaOrigin() const;
112 void DoMenuUpdates();
113 void DoMenuUpdates(wxMenu* menu);
114 virtual void OnInternalIdle();
115
116 wxMenuBar *m_frameMenuBar;
117 wxStatusBar *m_frameStatusBar;
118 wxToolBar *m_frameToolBar;
119 wxString m_title;
120 wxIcon m_icon;
121 int m_miniEdge,m_miniTitle;
122
123 DECLARE_EVENT_TABLE()
124 };
125
126 #endif // __GTKFRAMEH__