git-svn-id: svn://10.65.10.50/branches/R_10_00@23289 c028cbd2-c16b-5b4b-a496-9718f37d4682
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: xh_statpict.h
|
|
// Purpose: XRC resource handler for wxStaticPicture
|
|
// Author: David A. Norris
|
|
// Created: 2005/03/13
|
|
// RCS-ID: $Id: xh_statpict.h 35650 2005-09-23 12:56:45Z MR $
|
|
// Copyright: David A. Norris
|
|
// Licence: wxWindows Licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_XH_STATPICT_H
|
|
#define _WX_XH_STATPICT_H
|
|
|
|
#include "wx/xrc/xmlres.h"
|
|
#include "wx/gizmos/gizmos.h"
|
|
|
|
//
|
|
// XML resource handler for the wxStaticPicture class in wxContrib.
|
|
//
|
|
|
|
class WXDLLIMPEXP_GIZMOS_XRC wxStaticPictureXmlHandler
|
|
: public wxXmlResourceHandler
|
|
{
|
|
public:
|
|
|
|
// Constructor.
|
|
wxStaticPictureXmlHandler();
|
|
|
|
// Creates the control and returns a pointer to it.
|
|
virtual wxObject *DoCreateResource();
|
|
|
|
// Returns true if we know how to create a control for the given node.
|
|
virtual bool CanHandle(wxXmlNode *node);
|
|
|
|
// Register with wxWindows' dynamic class subsystem.
|
|
DECLARE_DYNAMIC_CLASS(wxStaticPictureXmlHandler)
|
|
};
|
|
|
|
#endif
|