added MDI support to XRC
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33291 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -54,5 +54,6 @@
|
||||
#include "wx/xrc/xh_split.h"
|
||||
#include "wx/xrc/xh_wizrd.h"
|
||||
#include "wx/xrc/xh_statbar.h"
|
||||
#include "wx/xrc/xh_mdi.h"
|
||||
|
||||
#endif // _WX_XH_ALL_H_
|
||||
|
39
include/wx/xrc/xh_mdi.h
Normal file
39
include/wx/xrc/xh_mdi.h
Normal file
@@ -0,0 +1,39 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: xh_mdi.h
|
||||
// Purpose: XML resource handler for dialogs
|
||||
// Author: David M. Falkinder & Vaclav Slavik
|
||||
// Created: 14/02/2005
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) 2005 Vaclav Slavik
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_XH_MDI_H_
|
||||
#define _WX_XH_MDI_H_
|
||||
|
||||
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
||||
#pragma interface "xh_mdi.h"
|
||||
#endif
|
||||
|
||||
#include "wx/xrc/xmlres.h"
|
||||
|
||||
#if wxUSE_MDI
|
||||
|
||||
class WXDLLIMPEXP_CORE wxFrame;
|
||||
|
||||
class WXDLLIMPEXP_XRC wxMdiXmlHandler : public wxXmlResourceHandler
|
||||
{
|
||||
public:
|
||||
wxMdiXmlHandler();
|
||||
virtual wxObject *DoCreateResource();
|
||||
virtual bool CanHandle(wxXmlNode *node);
|
||||
|
||||
private:
|
||||
wxFrame *CreateFrame();
|
||||
|
||||
DECLARE_DYNAMIC_CLASS(wxMdiXmlHandler)
|
||||
};
|
||||
|
||||
#endif // wxUSE_MDI
|
||||
|
||||
#endif // _WX_XH_MDI_H_
|
Reference in New Issue
Block a user