PROP_COLOR = 2,
PROP_BOOL = 3,
PROP_INTEGER = 4,
- PROP_COORD = 5
+ PROP_COORD = 5,
+ PROP_NOT_IMPLEMENTED = 6,
};
-#define PROP_TYPES_CNT 6
+#define PROP_TYPES_CNT 7
class PropertyInfo
{
};
+
+class NotImplPropertyHandler : public PropertyHandler
+{
+ public:
+ NotImplPropertyHandler() {}
+ virtual wxPanel *CreateEditPanel(wxWindow *parent, PropsListInfo *pli);
+};
+
+
#endif