+void FormMain::OnPropertyGridColBeginDrag( wxPropertyGridEvent& event )
+{
+ if ( m_itemVetoDragging->IsChecked() )
+ {
+ wxLogDebug("Splitter %i resize was vetoed", event.GetColumn());
+ event.Veto();
+ }
+ else
+ {
+ wxLogDebug("Splitter %i resize began", event.GetColumn());
+ }
+}
+
+// -----------------------------------------------------------------------
+
+void FormMain::OnPropertyGridColDragging( wxPropertyGridEvent& event )
+{
+ // For now, let's not spam the log output
+ //wxLogDebug("Splitter %i is being resized", event.GetColumn());
+}
+
+// -----------------------------------------------------------------------
+
+void FormMain::OnPropertyGridColEndDrag( wxPropertyGridEvent& event )
+{
+ wxLogDebug("Splitter %i resize ended", event.GetColumn());
+}
+
+// -----------------------------------------------------------------------
+