2008-09-12 16:57:41 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: samples/propgrid/propgrid_minimal.cpp
|
|
|
|
// Purpose: Minimal portion of wxPropertyGrid sample
|
|
|
|
// Author: Jaakko Salli
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2008-08-23
|
|
|
|
// Copyright: (c) Jaakko Salli
|
2010-07-13 09:29:13 -04:00
|
|
|
// Licence: wxWindows licence
|
2008-09-12 16:57:41 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "wx/wx.h"
|
|
|
|
#include "wx/propgrid/propgrid.h"
|
2009-01-10 07:38:52 -05:00
|
|
|
#include "wx/propgrid/advprops.h"
|
2008-09-12 16:57:41 -04:00
|
|
|
|
2009-07-03 08:48:44 -04:00
|
|
|
class MyFrame : public wxFrame
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MyFrame(wxWindow* parent);
|
|
|
|
|
|
|
|
void OnAction(wxCommandEvent& event);
|
|
|
|
void OnPropertyGridChange(wxPropertyGridEvent& event);
|
|
|
|
void OnPropertyGridChanging(wxPropertyGridEvent& event);
|
2008-09-12 16:57:41 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
wxPropertyGrid* m_pg;
|
2014-03-30 03:07:55 -04:00
|
|
|
wxDECLARE_EVENT_TABLE();
|
2008-09-12 16:57:41 -04:00
|
|
|
};
|
|
|
|
|
2015-05-14 12:56:10 -04:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
ID_ACTION = wxID_HIGHEST+1
|
|
|
|
};
|
|
|
|
|
2014-03-30 03:07:55 -04:00
|
|
|
wxBEGIN_EVENT_TABLE(MyFrame, wxFrame)
|
2015-05-14 12:56:10 -04:00
|
|
|
EVT_MENU(ID_ACTION, MyFrame::OnAction)
|
2008-09-12 16:57:41 -04:00
|
|
|
EVT_PG_CHANGED( -1, MyFrame::OnPropertyGridChange )
|
2009-01-10 07:37:06 -05:00
|
|
|
EVT_PG_CHANGING( -1, MyFrame::OnPropertyGridChanging )
|
2014-03-30 03:07:55 -04:00
|
|
|
wxEND_EVENT_TABLE()
|
2008-09-12 16:57:41 -04:00
|
|
|
|
|
|
|
MyFrame::MyFrame(wxWindow* parent)
|
2018-09-28 21:45:15 -04:00
|
|
|
: wxFrame(parent, wxID_ANY, "PropertyGrid Test")
|
2008-09-12 16:57:41 -04:00
|
|
|
{
|
2009-07-03 08:48:44 -04:00
|
|
|
wxMenu *Menu = new wxMenu;
|
2018-09-28 21:45:15 -04:00
|
|
|
Menu->Append(ID_ACTION, "Action");
|
2009-07-03 08:48:44 -04:00
|
|
|
wxMenuBar *MenuBar = new wxMenuBar();
|
2018-09-28 21:45:15 -04:00
|
|
|
MenuBar->Append(Menu, "Action");
|
2009-07-03 08:48:44 -04:00
|
|
|
SetMenuBar(MenuBar);
|
2008-09-12 16:57:41 -04:00
|
|
|
|
2015-05-30 14:19:00 -04:00
|
|
|
wxPropertyGrid *pg = new wxPropertyGrid(this,wxID_ANY,wxDefaultPosition,wxSize(400,400),
|
2008-09-12 16:57:41 -04:00
|
|
|
wxPG_SPLITTER_AUTO_CENTER |
|
|
|
|
wxPG_BOLD_MODIFIED );
|
|
|
|
m_pg = pg;
|
|
|
|
|
2018-09-28 21:45:15 -04:00
|
|
|
pg->Append( new wxStringProperty("String Property", wxPG_LABEL) );
|
|
|
|
pg->Append( new wxIntProperty("Int Property", wxPG_LABEL) );
|
|
|
|
pg->Append( new wxBoolProperty("Bool Property", wxPG_LABEL) );
|
2008-09-12 16:57:41 -04:00
|
|
|
|
|
|
|
SetSize(400, 600);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MyFrame::OnPropertyGridChange(wxPropertyGridEvent &event)
|
|
|
|
{
|
|
|
|
wxPGProperty* p = event.GetProperty();
|
|
|
|
|
2008-09-17 11:49:52 -04:00
|
|
|
if ( p )
|
2009-07-20 12:47:54 -04:00
|
|
|
{
|
2018-09-28 21:45:15 -04:00
|
|
|
wxLogVerbose("OnPropertyGridChange(%s, value=%s)",
|
2018-11-01 19:32:02 -04:00
|
|
|
p->GetName(), p->GetValueAsString());
|
2009-07-20 12:47:54 -04:00
|
|
|
}
|
2008-09-17 11:49:52 -04:00
|
|
|
else
|
2009-07-20 12:47:54 -04:00
|
|
|
{
|
2018-09-28 21:45:15 -04:00
|
|
|
wxLogVerbose("OnPropertyGridChange(NULL)");
|
2009-07-20 12:47:54 -04:00
|
|
|
}
|
2008-09-12 16:57:41 -04:00
|
|
|
}
|
|
|
|
|
2009-01-10 07:37:06 -05:00
|
|
|
void MyFrame::OnPropertyGridChanging(wxPropertyGridEvent &event)
|
|
|
|
{
|
|
|
|
wxPGProperty* p = event.GetProperty();
|
|
|
|
|
2018-11-01 19:32:02 -04:00
|
|
|
wxLogVerbose("OnPropertyGridChanging(%s)", p->GetName());
|
2009-01-10 07:37:06 -05:00
|
|
|
}
|
|
|
|
|
2009-07-03 08:48:44 -04:00
|
|
|
void MyFrame::OnAction(wxCommandEvent &)
|
2008-09-12 16:57:41 -04:00
|
|
|
{
|
|
|
|
}
|
2008-09-17 11:49:52 -04:00
|
|
|
|
|
|
|
// Called from propgridsample.cpp
|
|
|
|
//
|
|
|
|
void DisplayMinimalFrame(wxWindow* parent)
|
|
|
|
{
|
|
|
|
MyFrame *frame = new MyFrame(parent);
|
|
|
|
frame->Show(true);
|
|
|
|
}
|