2003-01-26 23:19:04 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-07-04 18:08:09 +00:00
|
|
|
// Name: wx/xrc/xh_split.h
|
2003-01-26 23:19:04 +00:00
|
|
|
// Purpose: XRC resource for wxSplitterWindow
|
|
|
|
// Author: panga@freemail.hu, Vaclav Slavik
|
|
|
|
// Created: 2003/01/26
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2003 panga@freemail.hu, Vaclav Slavik
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_XH_SPLIT_H_
|
|
|
|
#define _WX_XH_SPLIT_H_
|
|
|
|
|
|
|
|
#include "wx/xrc/xmlres.h"
|
|
|
|
|
2006-10-03 14:53:40 +00:00
|
|
|
#if wxUSE_XRC && wxUSE_SPLITTER
|
|
|
|
|
2003-07-04 13:33:42 +00:00
|
|
|
class WXDLLIMPEXP_XRC wxSplitterWindowXmlHandler : public wxXmlResourceHandler
|
2003-01-26 23:19:04 +00:00
|
|
|
{
|
2006-10-03 14:53:40 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxSplitterWindowXmlHandler)
|
|
|
|
|
2003-01-26 23:19:04 +00:00
|
|
|
public:
|
|
|
|
wxSplitterWindowXmlHandler();
|
|
|
|
virtual wxObject *DoCreateResource();
|
|
|
|
virtual bool CanHandle(wxXmlNode *node);
|
|
|
|
};
|
|
|
|
|
2006-10-03 14:53:40 +00:00
|
|
|
#endif // wxUSE_XRC && wxUSE_SPLITTER
|
|
|
|
|
2003-01-26 23:19:04 +00:00
|
|
|
#endif // _WX_XH_SPLIT_H_
|