]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/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
47 DECLARE_DYNAMIC_CLASS(wxMDIParentFrame
)
49 friend class wxMDIChildFrame
;
53 wxMDIParentFrame(void);
54 wxMDIParentFrame( wxWindow
*parent
,
55 wxWindowID id
, const wxString
& title
,
56 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
57 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
58 const wxString
& name
= wxFrameNameStr
);
59 ~wxMDIParentFrame(void);
60 bool Create( wxWindow
*parent
,
61 wxWindowID id
, const wxString
& title
,
62 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
63 long style
= wxDEFAULT_FRAME_STYLE
| wxVSCROLL
| wxHSCROLL
,
64 const wxString
& name
= wxFrameNameStr
);
67 void GetClientSize(int *width
, int *height
) const;
68 wxMDIChildFrame
*GetActiveChild() const;
70 wxMDIClientWindow
*GetClientWindow() const;
71 virtual wxMDIClientWindow
*OnCreateClient();
73 virtual void Cascade() {}
74 virtual void Tile() {}
75 virtual void ArrangeIcons() {}
76 virtual void ActivateNext();
77 virtual void ActivatePrevious();
79 void OnActivate( wxActivateEvent
& event
);
80 void OnSysColourChanged( wxSysColourChangedEvent
& event
);
84 wxMDIClientWindow
*m_clientWindow
;
87 virtual void GtkOnSize( int x
, int y
, int width
, int height
);
88 virtual void OnInternalIdle();
93 //-----------------------------------------------------------------------------
95 //-----------------------------------------------------------------------------
97 class wxMDIChildFrame
: public wxFrame
99 DECLARE_DYNAMIC_CLASS(wxMDIChildFrame
)
104 wxMDIChildFrame( wxMDIParentFrame
*parent
,
105 wxWindowID id
, const wxString
& title
,
106 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
107 long style
= wxDEFAULT_FRAME_STYLE
, const wxString
& name
= wxFrameNameStr
);
108 ~wxMDIChildFrame(void);
109 bool Create( wxMDIParentFrame
*parent
,
110 wxWindowID id
, const wxString
& title
,
111 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
112 long style
= wxDEFAULT_FRAME_STYLE
, const wxString
& name
= wxFrameNameStr
);
114 virtual void SetMenuBar( wxMenuBar
*menu_bar
);
115 virtual wxMenuBar
*GetMenuBar() const;
117 virtual void GetClientSize( int *width
, int *height
) const;
118 virtual void AddChild( wxWindow
*child
);
120 virtual void Activate();
124 virtual wxStatusBar
* CreateStatusBar( int WXUNUSED(number
)=1, long WXUNUSED(style
)=1,
125 wxWindowID
WXUNUSED(id
)=1, const wxString
& WXUNUSED(name
)=WXSTRINGCAST NULL
) {return (wxStatusBar
*)NULL
; }
126 virtual wxStatusBar
*GetStatusBar() const { return (wxStatusBar
*)NULL
; }
127 virtual void SetStatusText( const wxString
&WXUNUSED(text
), int WXUNUSED(number
)=0 ) {}
128 virtual void SetStatusWidths( int WXUNUSED(n
), const int WXUNUSED(widths_field
)[] ) {}
132 virtual void SetSizeHints( int WXUNUSED(minW
), int WXUNUSED(minH
),
133 int WXUNUSED(maxW
), int WXUNUSED(maxH
),
134 int WXUNUSED(incW
), int WXUNUSED(incH
) ) {}
138 virtual wxToolBar
* CreateToolBar( long WXUNUSED(style
), wxWindowID
WXUNUSED(id
),
139 const wxString
& WXUNUSED(name
) ) { return (wxToolBar
*)NULL
; }
140 virtual wxToolBar
*GetToolBar() const { return (wxToolBar
*)NULL
; }
144 void SetIcon( const wxIcon
&icon
) { m_icon
= icon
; }
147 void SetTitle( const wxString
&title
) { m_title
= title
; }
148 wxString
GetTitle() const { return m_title
; }
151 virtual void Maximize( bool WXUNUSED(maximize
) ) {}
152 virtual void Restore() {}
154 void OnActivate( wxActivateEvent
&event
);
158 wxMenuBar
*m_menuBar
;
159 GtkNotebookPage
*m_page
;
162 DECLARE_EVENT_TABLE()
165 //-----------------------------------------------------------------------------
167 //-----------------------------------------------------------------------------
169 class wxMDIClientWindow
: public wxWindow
171 DECLARE_DYNAMIC_CLASS(wxMDIClientWindow
)
175 wxMDIClientWindow(void);
176 wxMDIClientWindow( wxMDIParentFrame
*parent
, long style
= 0 );
177 ~wxMDIClientWindow(void);
178 virtual bool CreateClient( wxMDIParentFrame
*parent
, long style
= wxVSCROLL
| wxHSCROLL
);