]>
Commit | Line | Data |
---|---|---|
5a0348c4 | 1 | ///////////////////////////////////////////////////////////////////////////// |
e8a793f0 | 2 | // Name: wx/xrc/xh_mdi.h |
dd47af27 | 3 | // Purpose: XML resource handler for wxMDI |
5a0348c4 VS |
4 | // Author: David M. Falkinder & Vaclav Slavik |
5 | // Created: 14/02/2005 | |
5a0348c4 VS |
6 | // Copyright: (c) 2005 Vaclav Slavik |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _WX_XH_MDI_H_ | |
11 | #define _WX_XH_MDI_H_ | |
12 | ||
5a0348c4 VS |
13 | #include "wx/xrc/xmlres.h" |
14 | ||
dd47af27 | 15 | #if wxUSE_XRC && wxUSE_MDI |
5a0348c4 | 16 | |
b5dbe15d | 17 | class WXDLLIMPEXP_FWD_CORE wxWindow; |
5a0348c4 VS |
18 | |
19 | class WXDLLIMPEXP_XRC wxMdiXmlHandler : public wxXmlResourceHandler | |
20 | { | |
dd47af27 VZ |
21 | DECLARE_DYNAMIC_CLASS(wxMdiXmlHandler) |
22 | ||
5a0348c4 VS |
23 | public: |
24 | wxMdiXmlHandler(); | |
25 | virtual wxObject *DoCreateResource(); | |
26 | virtual bool CanHandle(wxXmlNode *node); | |
27 | ||
28 | private: | |
6def7a17 | 29 | wxWindow *CreateFrame(); |
5a0348c4 VS |
30 | }; |
31 | ||
dd47af27 | 32 | #endif // wxUSE_XRC && wxUSE_MDI |
5a0348c4 VS |
33 | |
34 | #endif // _WX_XH_MDI_H_ |