]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/mdi.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
19 #include "wx/object.h"
21 #include "wx/control.h"
24 #include "wx/toolbar.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 class wxMDIParentFrame
;
31 class wxMDIClientWindow
;
32 class wxMDIChildFrame
;
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
38 extern const wxChar
* wxFrameNameStr
;
39 extern const wxChar
* wxStatusLineNameStr
;
41 //-----------------------------------------------------------------------------
43 //-----------------------------------------------------------------------------
45 class wxMDIParentFrame
: public wxFrame
48 wxMDIParentFrame() { Init(); }
49 wxMDIParentFrame(wxWindow
*parent
,
51 const wxString
& title
,
52 const wxPoint
& pos
= wxDefaultPosition
,
53 const wxSize
& size
= wxDefaultSize
,
54 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
55 const wxString
& name
= wxFrameNameStr
)
59 (void)Create(parent
, id
, title
, pos
, size
, style
, name
);
63 bool Create( wxWindow
*parent
,
65 const wxString
& title
,
66 const wxPoint
& pos
= wxDefaultPosition
,
67 const wxSize
& size
= wxDefaultSize
,
68 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
69 const wxString
& name
= wxFrameNameStr
);
71 wxMDIChildFrame
*GetActiveChild() const;
73 wxMDIClientWindow
*GetClientWindow() const;
74 virtual wxMDIClientWindow
*OnCreateClient();
76 virtual void Cascade() {}
77 virtual void Tile() {}
78 virtual void ArrangeIcons() {}
79 virtual void ActivateNext();
80 virtual void ActivatePrevious();
84 wxMDIClientWindow
*m_clientWindow
;
87 virtual void GtkOnSize( int x
, int y
, int width
, int height
);
88 virtual void OnInternalIdle();
93 virtual void DoGetClientSize(int *width
, int *height
) const;
96 friend class wxMDIChildFrame
;
98 DECLARE_DYNAMIC_CLASS(wxMDIParentFrame
)
101 //-----------------------------------------------------------------------------
103 //-----------------------------------------------------------------------------
105 class wxMDIChildFrame
: public wxFrame
109 wxMDIChildFrame( wxMDIParentFrame
*parent
,
111 const wxString
& title
,
112 const wxPoint
& pos
= wxDefaultPosition
,
113 const wxSize
& size
= wxDefaultSize
,
114 long style
= wxDEFAULT_FRAME_STYLE
,
115 const wxString
& name
= wxFrameNameStr
);
117 virtual ~wxMDIChildFrame();
118 bool Create( wxMDIParentFrame
*parent
,
120 const wxString
& title
,
121 const wxPoint
& pos
= wxDefaultPosition
,
122 const wxSize
& size
= wxDefaultSize
,
123 long style
= wxDEFAULT_FRAME_STYLE
,
124 const wxString
& name
= wxFrameNameStr
);
126 virtual void SetMenuBar( wxMenuBar
*menu_bar
);
127 virtual wxMenuBar
*GetMenuBar() const;
129 virtual void AddChild( wxWindowBase
*child
);
131 virtual void Activate();
135 virtual wxStatusBar
* CreateStatusBar( int WXUNUSED(number
) = 1,
136 long WXUNUSED(style
) = 1,
137 wxWindowID
WXUNUSED(id
) = 1,
138 const wxString
& WXUNUSED(name
) = wxEmptyString
)
139 { return (wxStatusBar
*)NULL
; }
141 virtual wxStatusBar
*GetStatusBar() const { return (wxStatusBar
*)NULL
; }
142 virtual void SetStatusText( const wxString
&WXUNUSED(text
), int WXUNUSED(number
)=0 ) {}
143 virtual void SetStatusWidths( int WXUNUSED(n
), const int WXUNUSED(widths_field
)[] ) {}
147 virtual void SetSizeHints( int WXUNUSED(minW
), int WXUNUSED(minH
),
148 int WXUNUSED(maxW
), int WXUNUSED(maxH
),
149 int WXUNUSED(incW
), int WXUNUSED(incH
) ) {}
153 virtual wxToolBar
* CreateToolBar( long WXUNUSED(style
),
154 wxWindowID
WXUNUSED(id
),
155 const wxString
& WXUNUSED(name
) )
156 { return (wxToolBar
*)NULL
; }
157 virtual wxToolBar
*GetToolBar() const { return (wxToolBar
*)NULL
; }
161 void SetIcon( const wxIcon
&icon
) { m_icon
= icon
; }
164 void SetTitle( const wxString
&title
);
165 wxString
GetTitle() const { return m_title
; }
168 virtual void Maximize( bool WXUNUSED(maximize
) ) {}
169 virtual void Restore() {}
171 virtual bool IsTopLevel() const { return FALSE
; }
173 void OnActivate( wxActivateEvent
& event
);
174 void OnMenuHighlight( wxMenuEvent
& event
);
178 wxMenuBar
*m_menuBar
;
179 GtkNotebookPage
*m_page
;
183 virtual void DoGetClientSize( int *width
, int *height
) const;
186 DECLARE_EVENT_TABLE()
187 DECLARE_DYNAMIC_CLASS(wxMDIChildFrame
)
190 //-----------------------------------------------------------------------------
192 //-----------------------------------------------------------------------------
194 class wxMDIClientWindow
: public wxWindow
198 wxMDIClientWindow( wxMDIParentFrame
*parent
, long style
= 0 );
199 ~wxMDIClientWindow();
200 virtual bool CreateClient( wxMDIParentFrame
*parent
, long style
= wxVSCROLL
| wxHSCROLL
);
203 DECLARE_DYNAMIC_CLASS(wxMDIClientWindow
)