00001
00002
00003
00004
00005
00006
00007
00008
00009
00011
00012 #ifndef _WX_XH_PROPGRID_H_
00013 #define _WX_XH_PROPGRID_H_
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include "wx/xrc/xmlres.h"
00025
00026 #include "wx/propgrid/propgrid.h"
00027 #include "wx/propgrid/manager.h"
00028
00029 #if wxUSE_XRC && wxCHECK_VERSION(2,8,0)
00030
00031 class wxPropertyGridXmlHandler : public wxXmlResourceHandler
00032 {
00033 friend class wxPropertyGridXrcPopulator;
00034 DECLARE_DYNAMIC_CLASS(wxPropertyGridXmlHandler)
00035
00036 public:
00037 wxPropertyGridXmlHandler();
00038 virtual wxObject *DoCreateResource();
00039 virtual bool CanHandle(wxXmlNode *node);
00040
00041 void InitPopulator();
00042 void PopulatePage( wxPropertyGridState* state );
00043 void DonePopulator();
00044
00045 void HandlePropertyGridParams();
00046
00047 private:
00048 wxPropertyGridManager* m_manager;
00049 wxPropertyGrid* m_pg;
00050 wxPropertyGridPopulator* m_populator;
00051 };
00052
00053 #endif // wxUSE_XRC && wxCHECK_VERSION(2,8,0)
00054
00055 #endif // _WX_XH_PROPGRID_H_