// Author: Jaakko Salli
// Modified by:
// Created: 2008-08-23
-// RCS-ID: $Id:
+// RCS-ID: $Id$
// Copyright: (c) Jaakko Salli
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/wx.h"
#include "wx/propgrid/propgrid.h"
+#include "wx/propgrid/advprops.h"
-class MyFrame : public wxFrame
-{
-public:
- MyFrame(wxWindow* parent);
-
- void OnAction(wxCommandEvent& event);
- void OnPropertyGridChange(wxPropertyGridEvent& event);
+class MyFrame : public wxFrame
+{
+public:
+ MyFrame(wxWindow* parent);
+
+ void OnAction(wxCommandEvent& event);
+ void OnPropertyGridChange(wxPropertyGridEvent& event);
+ void OnPropertyGridChanging(wxPropertyGridEvent& event);
private:
wxPropertyGrid* m_pg;
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
EVT_MENU(wxID_HIGHEST+1, MyFrame::OnAction)
EVT_PG_CHANGED( -1, MyFrame::OnPropertyGridChange )
+ EVT_PG_CHANGING( -1, MyFrame::OnPropertyGridChanging )
END_EVENT_TABLE()
MyFrame::MyFrame(wxWindow* parent)
: wxFrame(parent, wxID_ANY, wxT("PropertyGrid Test"))
{
- wxMenu *Menu = new wxMenu;
- Menu->Append(wxID_HIGHEST+1, wxT("Action"));
- wxMenuBar *MenuBar = new wxMenuBar();
- MenuBar->Append(Menu, wxT("Action"));
- SetMenuBar(MenuBar);
+ wxMenu *Menu = new wxMenu;
+ Menu->Append(wxID_HIGHEST+1, wxT("Action"));
+ wxMenuBar *MenuBar = new wxMenuBar();
+ MenuBar->Append(Menu, wxT("Action"));
+ SetMenuBar(MenuBar);
wxPropertyGrid *pg = new wxPropertyGrid(this,-1,wxDefaultPosition,wxSize(400,400),
wxPG_SPLITTER_AUTO_CENTER |
wxPGProperty* p = event.GetProperty();
if ( p )
- wxLogDebug("OnPropertyGridChange(%s)", p->GetName().c_str());
+ {
+ wxLogVerbose("OnPropertyGridChange(%s, value=%s)",
+ p->GetName().c_str(), p->GetValueAsString().c_str());
+ }
else
- wxLogDebug("OnPropertyGridChange(NULL)");
+ {
+ wxLogVerbose("OnPropertyGridChange(NULL)");
+ }
+}
+
+void MyFrame::OnPropertyGridChanging(wxPropertyGridEvent &event)
+{
+ wxPGProperty* p = event.GetProperty();
+
+ wxLogVerbose("OnPropertyGridChanging(%s)", p->GetName().c_str());
}
-void MyFrame::OnAction(wxCommandEvent &)
+void MyFrame::OnAction(wxCommandEvent &)
{
}