From 1963627c10cfc3c8fb1d00288d55086022d6aeaa Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 14 Sep 2016 20:15:48 -0700 Subject: [PATCH] Add built-in editor pointers --- interface/wx/propgrid/advprops.h | 3 +++ interface/wx/propgrid/editors.h | 8 ++++++++ 2 files changed, 11 insertions(+) diff --git a/interface/wx/propgrid/advprops.h b/interface/wx/propgrid/advprops.h index 2ba7e2fa93..0e6a9bcc25 100644 --- a/interface/wx/propgrid/advprops.h +++ b/interface/wx/propgrid/advprops.h @@ -346,3 +346,6 @@ public: wxWindow* wnd, wxEvent& event ) const; }; + +extern wxPGEditor* wxPGEditor_SpinCtrl; +extern wxPGEditor* wxPGEditor_DatePickerCtrl; diff --git a/interface/wx/propgrid/editors.h b/interface/wx/propgrid/editors.h index 7e749bcb2f..da99a0edbd 100644 --- a/interface/wx/propgrid/editors.h +++ b/interface/wx/propgrid/editors.h @@ -577,3 +577,11 @@ public: wxSize GetPrimarySize() const; }; + +extern wxPGEditor* wxPGEditor_TextCtrl; +extern wxPGEditor* wxPGEditor_Choice; +extern wxPGEditor* wxPGEditor_ComboBox; +extern wxPGEditor* wxPGEditor_TextCtrlAndButton; +extern wxPGEditor* wxPGEditor_CheckBox; +extern wxPGEditor* wxPGEditor_ChoiceAndButton; +