2005-11-24 17:26:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-07-04 18:08:09 +00:00
|
|
|
// Name: wx/xrc/xh_grid.h
|
2006-10-03 14:53:40 +00:00
|
|
|
// Purpose: XML resource handler for wxGrid
|
2005-11-24 17:26:05 +00:00
|
|
|
// Author: Agron Selimaj
|
|
|
|
// Created: 2005/08/11
|
|
|
|
// Copyright: (c) 2005 Agron Selimaj, Freepour Controls Inc.
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_XH_GRD_H_
|
|
|
|
#define _WX_XH_GRD_H_
|
|
|
|
|
|
|
|
#include "wx/xrc/xmlres.h"
|
|
|
|
|
2005-11-29 00:54:02 +00:00
|
|
|
#if wxUSE_XRC && wxUSE_GRID
|
2005-11-24 17:26:05 +00:00
|
|
|
|
|
|
|
class WXDLLIMPEXP_XRC wxGridXmlHandler : public wxXmlResourceHandler
|
|
|
|
{
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxGridXmlHandler);
|
2006-10-03 14:53:40 +00:00
|
|
|
|
2005-11-24 17:26:05 +00:00
|
|
|
public:
|
2005-11-29 00:54:02 +00:00
|
|
|
wxGridXmlHandler();
|
|
|
|
|
2015-09-07 00:20:42 +00:00
|
|
|
virtual wxObject *DoCreateResource() wxOVERRIDE;
|
|
|
|
virtual bool CanHandle(wxXmlNode *node) wxOVERRIDE;
|
2005-11-29 00:54:02 +00:00
|
|
|
};
|
2005-11-24 17:26:05 +00:00
|
|
|
|
2005-11-29 00:54:02 +00:00
|
|
|
#endif // wxUSE_XRC && wxUSE_GRID
|
2005-11-24 17:26:05 +00:00
|
|
|
|
|
|
|
#endif // _WX_XH_GRD_H_
|