From 5df63f100c746e71d0c550bedec33bf80f0aac21 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 20 Feb 2017 11:09:24 -0800 Subject: [PATCH] Add missing event type constants for propgrid --- interface/wx/propgrid/propgrid.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/interface/wx/propgrid/propgrid.h b/interface/wx/propgrid/propgrid.h index b35b736d9c..76b4904553 100644 --- a/interface/wx/propgrid/propgrid.h +++ b/interface/wx/propgrid/propgrid.h @@ -1426,6 +1426,22 @@ public: bool WasVetoed() const; }; + +wxEventType wxEVT_PG_SELECTED; +wxEventType wxEVT_PG_CHANGING; +wxEventType wxEVT_PG_CHANGED; +wxEventType wxEVT_PG_HIGHLIGHTED; +wxEventType wxEVT_PG_RIGHT_CLICK; +wxEventType wxEVT_PG_PAGE_CHANGED; +wxEventType wxEVT_PG_ITEM_COLLAPSED; +wxEventType wxEVT_PG_ITEM_EXPANDED; +wxEventType wxEVT_PG_DOUBLE_CLICK; +wxEventType wxEVT_PG_LABEL_EDIT_BEGIN; +wxEventType wxEVT_PG_LABEL_EDIT_ENDING; +wxEventType wxEVT_PG_COL_BEGIN_DRAG; +wxEventType wxEVT_PG_COL_DRAGGING; +wxEventType wxEVT_PG_COL_END_DRAG; + // ----------------------------------------------------------------------- /** @class wxPropertyGridPopulator