Generate wxPropertyGrid splitter (column divider) events: wxEVT_PG_COL_BEGIN_DRAG, wxEVT_PG_COL_DRAGGING, wxEVT_PG_COL_END_DRAG
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62861 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -392,6 +392,15 @@ typedef int (*wxPGSortCallback)(wxPropertyGrid* propGrid,
|
||||
Respond to wxEVT_PG_LABEL_EDIT_ENDING event, generated when is about to
|
||||
end editing of a property label. You can veto this event to prevent the
|
||||
action.
|
||||
@event{EVT_PG_COL_BEGIN_DRAG(id, func)}
|
||||
Respond to wxEVT_PG_COL_BEGIN_DRAG event, generated when user
|
||||
starts resizing a column - can be vetoed.
|
||||
@event{EVT_PG_COL_DRAGGING,(id, func)}
|
||||
Respond to wxEVT_PG_COL_DRAGGING, event, generated when a
|
||||
column resize by user is in progress.
|
||||
@event{EVT_PG_COL_END_DRAG(id, func)}
|
||||
Respond to wxEVT_PG_COL_END_DRAG event, generated after column
|
||||
resize by user has finished.
|
||||
@endEventTable
|
||||
|
||||
@remarks
|
||||
@@ -1055,6 +1064,13 @@ public:
|
||||
*/
|
||||
bool CanVeto() const;
|
||||
|
||||
/**
|
||||
Returns the column index associated with this event.
|
||||
For the column dragging events, it is the column to the left
|
||||
of the splitter being dragged
|
||||
*/
|
||||
unsigned int GetColumn() const;
|
||||
|
||||
/**
|
||||
Returns highest level non-category, non-root parent of property for
|
||||
which event occurred. Useful when you have nested properties with
|
||||
|
Reference in New Issue
Block a user