added notebooks support; added not_supported variable type
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@7881 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -31,9 +31,10 @@ enum PropertyType
|
||||
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
|
||||
{
|
||||
@@ -113,4 +114,13 @@ class FlagsPropertyHandler : public PropertyHandler
|
||||
};
|
||||
|
||||
|
||||
|
||||
class NotImplPropertyHandler : public PropertyHandler
|
||||
{
|
||||
public:
|
||||
NotImplPropertyHandler() {}
|
||||
virtual wxPanel *CreateEditPanel(wxWindow *parent, PropsListInfo *pli);
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user