1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XML resource handler for dialogs
4 // Author: David M. Falkinder & Vaclav Slavik
7 // Copyright: (c) 2005 Vaclav Slavik
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
14 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
15 #pragma interface "xh_mdi.h"
18 #include "wx/xrc/xmlres.h"
22 class WXDLLIMPEXP_CORE wxWindow
;
24 class WXDLLIMPEXP_XRC wxMdiXmlHandler
: public wxXmlResourceHandler
28 virtual wxObject
*DoCreateResource();
29 virtual bool CanHandle(wxXmlNode
*node
);
32 wxWindow
*CreateFrame();
34 DECLARE_DYNAMIC_CLASS(wxMdiXmlHandler
)
39 #endif // _WX_XH_MDI_H_