]>
Commit | Line | Data |
---|---|---|
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 | 27 | class wxMDIChildFrame; |
cf4219e7 RR |
28 | class wxMDIClientWindow; |
29 | class wxMenu; | |
30 | class wxMenuBar; | |
31 | class wxToolBar; | |
32 | class wxStatusBar; | |
c801d85f KB |
33 | |
34 | class wxFrame; | |
35 | ||
36 | //----------------------------------------------------------------------------- | |
37 | // global data | |
38 | //----------------------------------------------------------------------------- | |
39 | ||
3b90345b OK |
40 | extern const wxChar *wxFrameNameStr; |
41 | extern const wxChar *wxToolBarNameStr; | |
c801d85f KB |
42 | |
43 | //----------------------------------------------------------------------------- | |
44 | // wxFrame | |
45 | //----------------------------------------------------------------------------- | |
46 | ||
47 | class wxFrame: public wxWindow | |
48 | { | |
bfc6fde4 | 49 | DECLARE_DYNAMIC_CLASS(wxFrame) |
46dc76ba | 50 | |
bfc6fde4 VZ |
51 | public: |
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 | ||
bfc6fde4 | 65 | virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0, |
3b90345b | 66 | const wxString& name = _T("statusBar")); |
bfc6fde4 VZ |
67 | virtual wxStatusBar *OnCreateStatusBar( int number, long style, wxWindowID id, |
68 | const wxString& name ); | |
69 | virtual wxStatusBar *GetStatusBar() const; | |
70 | inline void SetStatusBar(wxStatusBar *statusBar) { m_frameStatusBar = statusBar; } | |
71 | virtual void SetStatusText( const wxString &text, int number = 0 ); | |
72 | virtual void SetStatusWidths( int n, const int widths_field[] ); | |
73 | ||
74 | virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1, | |
75 | const wxString& name = wxToolBarNameStr); | |
76 | virtual wxToolBar *OnCreateToolBar( long style, wxWindowID id, const wxString& name ); | |
77 | virtual wxToolBar *GetToolBar() const; | |
78 | inline void SetToolBar(wxToolBar *toolbar) { m_frameToolBar = toolbar; } | |
79 | ||
80 | virtual void SetMenuBar( wxMenuBar *menuBar ); | |
81 | virtual wxMenuBar *GetMenuBar() const; | |
82 | ||
83 | virtual void SetTitle( const wxString &title ); | |
84 | virtual wxString GetTitle() const { return m_title; } | |
85 | ||
ca26177c RR |
86 | // make the window modal (all other windows unresponsive) |
87 | virtual void MakeModal(bool modal = TRUE); | |
88 | ||
bfc6fde4 VZ |
89 | virtual void SetIcon( const wxIcon &icon ); |
90 | virtual void Iconize( bool WXUNUSED(iconize)) { } | |
91 | virtual bool IsIconized() const { return FALSE; } | |
92 | bool Iconized() const { return IsIconized(); } | |
93 | virtual void Maximize(bool WXUNUSED(maximize)) {} | |
94 | virtual void Restore() {} | |
95 | ||
30f1b5f3 RR |
96 | virtual void Command( int id ); |
97 | ||
bfc6fde4 VZ |
98 | void OnCloseWindow( wxCloseEvent& event ); |
99 | void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp | |
100 | void OnSize( wxSizeEvent &event ); | |
101 | ||
102 | void OnMenuHighlight( wxMenuEvent& event ); | |
103 | ||
104 | // implementation | |
105 | ||
106 | virtual void GtkOnSize( int x, int y, int width, int height ); | |
bfc6fde4 | 107 | void DoMenuUpdates(); |
e702ff0f | 108 | void DoMenuUpdates(wxMenu* menu, wxWindow* focusWin); |
bfc6fde4 VZ |
109 | virtual void OnInternalIdle(); |
110 | ||
111 | wxMenuBar *m_frameMenuBar; | |
bfc6fde4 VZ |
112 | wxStatusBar *m_frameStatusBar; |
113 | wxToolBar *m_frameToolBar; | |
114 | wxString m_title; | |
115 | wxIcon m_icon; | |
116 | int m_miniEdge,m_miniTitle; | |
f362b96d | 117 | GtkWidget *m_mainWidget; |
16bcc879 RR |
118 | bool m_menuBarDetached; |
119 | bool m_toolBarDetached; | |
6bc8a1c8 | 120 | bool m_insertInClientArea; /* not from within OnCreateXXX */ |
bfc6fde4 VZ |
121 | |
122 | protected: | |
123 | virtual void DoSetSize(int x, int y, | |
124 | int width, int height, | |
125 | int sizeFlags = wxSIZE_AUTO); | |
126 | ||
127 | virtual void DoSetClientSize(int width, int height); | |
f9241296 | 128 | virtual void DoGetClientSize( int *width, int *height ) const; |
bfc6fde4 VZ |
129 | |
130 | private: | |
131 | DECLARE_EVENT_TABLE() | |
c801d85f KB |
132 | }; |
133 | ||
134 | #endif // __GTKFRAMEH__ |