Made EVT_SLIDER event happen always; some doc and wxProperty updates

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1444 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1999-01-21 17:38:28 +00:00
parent 015ee8444a
commit f3a6507198
10 changed files with 111 additions and 96 deletions

View File

@@ -42,9 +42,22 @@ class WXDLLEXPORT wxPropertySheet: public wxObject
{
DECLARE_DYNAMIC_CLASS(wxPropertySheet)
public:
wxPropertySheet(void);
wxPropertySheet(wxString name = "");
~wxPropertySheet(void);
// Set the name of the sheet
inline virtual void SetName(wxString name) { m_name=name; }
inline virtual wxString GetName() { return m_name; }
// Does this sheet contain a property with this name
virtual bool HasProperty(wxString name);
// Set property name to value
virtual bool SetProperty(const wxString name, wxPropertyValue value);
// Remove property from sheet by name, deleting it
virtual void RemoveProperty(wxString name);
// Get the name of the sheet
// Add a property
virtual void AddProperty(wxProperty *property);
@@ -67,7 +80,7 @@ class WXDLLEXPORT wxPropertySheet: public wxObject
wxObject* m_viewedObject;
wxList m_properties;
wxPropertyView* m_propertyView;
wxString m_name;
};