wxID_ANY, wxDefaultSize, wxDefaultPosition, wxNOT_FOUND, true, false, tabs replacements.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27745 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -25,7 +25,7 @@ class PropEditCtrlFont : public PropEditCtrlTxt
|
||||
public:
|
||||
PropEditCtrlFont(PropertiesFrame *propFrame)
|
||||
: PropEditCtrlTxt(propFrame) {}
|
||||
|
||||
|
||||
virtual wxWindow* CreateEditCtrl();
|
||||
virtual wxTreeItemId CreateTreeEntry(wxTreeItemId parent, const PropertyInfo& pinfo);
|
||||
};
|
||||
@@ -37,12 +37,12 @@ class PropEditCtrlChoice : public PropEditCtrl
|
||||
public:
|
||||
PropEditCtrlChoice(PropertiesFrame *propFrame)
|
||||
: PropEditCtrl(propFrame) {}
|
||||
|
||||
|
||||
virtual wxWindow* CreateEditCtrl();
|
||||
|
||||
|
||||
virtual void ReadValue();
|
||||
virtual void WriteValue();
|
||||
|
||||
|
||||
protected:
|
||||
wxChoice *m_Choice;
|
||||
|
||||
@@ -57,7 +57,7 @@ class PropEditCtrlColor : public PropEditCtrlTxt
|
||||
PropEditCtrlColor(PropertiesFrame *propFrame)
|
||||
: PropEditCtrlTxt(propFrame) {}
|
||||
|
||||
virtual bool HasDetails() { return TRUE; }
|
||||
virtual bool HasDetails() { return true; }
|
||||
virtual void OnDetails();
|
||||
};
|
||||
|
||||
@@ -70,7 +70,7 @@ class PropEditCtrlFlags : public PropEditCtrlTxt
|
||||
PropEditCtrlFlags(PropertiesFrame *propFrame)
|
||||
: PropEditCtrlTxt(propFrame) {}
|
||||
|
||||
virtual bool HasDetails() { return TRUE; }
|
||||
virtual bool HasDetails() { return true; }
|
||||
virtual void OnDetails();
|
||||
};
|
||||
|
||||
@@ -82,9 +82,9 @@ class PropEditCtrlFile : public PropEditCtrlTxt
|
||||
PropEditCtrlFile(PropertiesFrame *propFrame)
|
||||
: PropEditCtrlTxt(propFrame) {}
|
||||
|
||||
virtual bool HasDetails() { return TRUE; }
|
||||
virtual bool HasDetails() { return true; }
|
||||
virtual void OnDetails();
|
||||
|
||||
|
||||
virtual wxString GetFileTypes();
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user