]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/frame.h
Fix for TextCtrl problem as reported by Vegh
[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
22 //-----------------------------------------------------------------------------
23 // classes
24 //-----------------------------------------------------------------------------
25
26 class wxMDIChildFrame;
27 class wxMDIClientWindow;
28 class wxMenu;
29 class wxMenuBar;
30 class wxToolBar;
31 class wxStatusBar;
32
33 class wxFrame;
34
35 //-----------------------------------------------------------------------------
36 // global data
37 //-----------------------------------------------------------------------------
38
39 extern const char *wxFrameNameStr;
40 extern const char *wxToolBarNameStr;
41
42 //-----------------------------------------------------------------------------
43 // wxFrame
44 //-----------------------------------------------------------------------------
45
46 class wxFrame: public wxWindow
47 {
48 DECLARE_DYNAMIC_CLASS(wxFrame)
49 public:
50
51 wxFrame();
52 wxFrame( wxWindow *parent, wxWindowID id, const wxString &title,
53 const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
54 long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
55 bool Create( wxWindow *parent, wxWindowID id, const wxString &title,
56 const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
57 long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
58 ~wxFrame();
59 bool Destroy();
60
61 virtual bool Show( bool show );
62 virtual void Centre( int direction = wxHORIZONTAL );
63
64 virtual void GetClientSize( int *width, int *height ) const;
65 virtual void SetClientSize( int const width, int const height );
66
67 virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0,
68 const wxString& name = "statusBar");
69 virtual wxStatusBar *OnCreateStatusBar( int number, long style, wxWindowID id,
70 const wxString& name );
71 virtual wxStatusBar *GetStatusBar() const;
72 inline void SetStatusBar(wxStatusBar *statusBar) { m_frameStatusBar = statusBar; }
73 virtual void SetStatusText( const wxString &text, int number = 0 );
74 virtual void SetStatusWidths( int n, const int widths_field[] );
75
76 virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1,
77 const wxString& name = wxToolBarNameStr);
78 virtual wxToolBar *OnCreateToolBar( long style, wxWindowID id, const wxString& name );
79 virtual wxToolBar *GetToolBar(void) const;
80 inline void SetToolBar(wxToolBar *toolbar) { m_frameToolBar = toolbar; }
81
82 virtual void SetMenuBar( wxMenuBar *menuBar );
83 virtual wxMenuBar *GetMenuBar() const;
84
85 virtual void SetTitle( const wxString &title );
86 virtual wxString GetTitle() const { return m_title; }
87
88 virtual void SetIcon( const wxIcon &icon );
89 virtual void Iconize( bool WXUNUSED(iconize)) { }
90 virtual bool IsIconized(void) const { return FALSE; }
91 bool Iconized(void) const { return IsIconized(); }
92 virtual void Maximize(bool WXUNUSED(maximize)) {}
93 virtual void Restore(void) {}
94
95 void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
96 void OnSize( wxSizeEvent &event );
97 void OnCloseWindow( wxCloseEvent& event );
98 void OnIdle(wxIdleEvent& event);
99
100 // implementation
101
102 virtual void GtkOnSize( int x, int y, int width, int height );
103 virtual void ImplementSetPosition();
104 virtual wxPoint GetClientAreaOrigin() const;
105 void DoMenuUpdates();
106 void DoMenuUpdates(wxMenu* menu);
107
108 wxMenuBar *m_frameMenuBar;
109 wxStatusBar *m_frameStatusBar;
110 wxToolBar *m_frameToolBar;
111 wxString m_title;
112 wxIcon m_icon;
113
114 DECLARE_EVENT_TABLE()
115 };
116
117 #endif // __GTKFRAMEH__