33#include <wx/settings.h>
34#include <wx/stattext.h>
35#include <wx/propgrid/advprops.h>
39#if !wxCHECK_VERSION( 3, 3, 0 )
45 m_SuppressGridChangeEvents( 0 ),
47 m_splitter_key_proportion( -1 )
49 wxBoxSizer* mainSizer =
new wxBoxSizer( wxVERTICAL );
54 wxPGInitResourceModule();
60 wxPGEditor_TextCtrl =
nullptr;
61 wxPGEditor_Choice =
nullptr;
62 wxPGEditor_ComboBox =
nullptr;
63 wxPGEditor_TextCtrlAndButton =
nullptr;
64 wxPGEditor_CheckBox =
nullptr;
65 wxPGEditor_ChoiceAndButton =
nullptr;
66 wxPGEditor_SpinCtrl =
nullptr;
67 wxPGEditor_DatePickerCtrl =
nullptr;
70 if( !
Pgm().m_PropertyGridInitialized )
77 m_caption =
new wxStaticText(
this, wxID_ANY,
_(
"No objects selected" ) );
78 mainSizer->Add(
m_caption, 0, wxALL | wxEXPAND, 5 );
80 m_grid =
new wxPropertyGrid(
this );
81 m_grid->SetUnspecifiedValueAppearance( wxPGCell( wxT(
"<...>" ) ) );
82 m_grid->SetExtraStyle( wxPG_EX_HELP_AS_TOOLTIPS );
84#if wxCHECK_VERSION( 3, 3, 0 )
85 m_grid->SetValidationFailureBehavior( wxPGVFBFlags::MarkCell );
87 m_grid->SetValidationFailureBehavior( wxPG_VFB_MARK_CELL );
90#if wxCHECK_VERSION( 3, 3, 0 )
91 m_grid->AddActionTrigger( wxPGKeyboardAction::NextProperty, WXK_RETURN );
92 m_grid->AddActionTrigger( wxPGKeyboardAction::NextProperty, WXK_NUMPAD_ENTER );
93 m_grid->AddActionTrigger( wxPGKeyboardAction::NextProperty, WXK_DOWN );
94 m_grid->AddActionTrigger( wxPGKeyboardAction::PrevProperty, WXK_UP );
95 m_grid->AddActionTrigger( wxPGKeyboardAction::Edit, WXK_SPACE );
97 m_grid->AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY, WXK_RETURN );
98 m_grid->AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY, WXK_NUMPAD_ENTER );
99 m_grid->AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY, WXK_DOWN );
100 m_grid->AddActionTrigger( wxPG_ACTION_PREV_PROPERTY, WXK_UP );
101 m_grid->AddActionTrigger( wxPG_ACTION_EDIT, WXK_SPACE );
104 m_grid->DedicateKey( WXK_RETURN );
105 m_grid->DedicateKey( WXK_NUMPAD_ENTER );
106 m_grid->DedicateKey( WXK_DOWN );
107 m_grid->DedicateKey( WXK_UP );
108 mainSizer->Add(
m_grid, 1, wxEXPAND, 5 );
110 m_grid->SetCellDisabledTextColour( wxSystemSettings::GetColour( wxSYS_COLOUR_GRAYTEXT ) );
114 m_grid->SetCaptionTextColour( wxSystemSettings::GetColour( wxSYS_COLOUR_CAPTIONTEXT ) );
119 SetSizer( mainSizer );
131 Bind( wxEVT_PG_COL_END_DRAG,
132 [&]( wxPropertyGridEvent& )
135 static_cast<float>(
m_grid->GetSplitterPosition() ) /
m_grid->GetSize().x;
139 [&]( wxSizeEvent& aEvent )
160 if(
m_grid->IsEditorFocused() )
161 m_grid->CommitChangesFromEditor();
198 if(
m_grid->IsEditorFocused() )
199 m_grid->CommitChangesFromEditor();
205 if( aSelection.
Empty() )
207 m_caption->SetLabel(
_(
"No objects selected" ) );
211 else if( aSelection.
Size() == 1 )
217 m_caption->SetLabel( wxString::Format(
_(
"%d objects selected" ), aSelection.
Size() ) );
221 std::set<TYPE_ID> types;
226 wxCHECK( !types.empty(), );
229 std::set<PROPERTY_BASE*> commonProps;
232 copy( allProperties.begin(), allProperties.end(),
233 inserter( commonProps, commonProps.begin() ) );
238 std::set<wxString> groups( groupDisplayOrder.begin(), groupDisplayOrder.end() );
240 std::set<PROPERTY_BASE*> availableProps;
243 for(
const TYPE_ID& type : types )
249 copy( itemDisplayOrder.begin(), itemDisplayOrder.end(),
250 inserter( displayOrder, displayOrder.begin() ) );
254 for(
const wxString&
group : itemGroups )
256 if( !groups.count(
group ) )
258 groupDisplayOrder.emplace_back(
group );
259 groups.insert(
group );
263 for(
auto it = commonProps.begin(); it != commonProps.end(); )
265 if( !binary_search( itemProps.begin(), itemProps.end(), *it ) )
266 it = commonProps.erase( it );
283 if( property->IsHiddenFromPropertiesManager() )
286 if( isLibraryEditor && property->IsHiddenFromLibraryEditors() )
289 if( isDesignEditor && property->IsHiddenFromDesignEditors() )
293 availableProps.insert( property );
296 bool writeable =
true;
297 std::set<PROPERTY_BASE*> existingProps;
299 for( wxPropertyGridIterator it =
m_grid->GetIterator(); !it.AtEnd(); it.Next() )
301 wxPGProperty* pgProp = it.GetProperty();
311 pgProp->SetValue( commonVal );
312 pgProp->Enable( writeable );
314 existingProps.insert( property );
317 if( !existingProps.empty() && existingProps == availableProps )
323 std::map<wxPGProperty*, int> pgPropOrders;
324 std::map<wxString, std::vector<wxPGProperty*>> pgPropGroups;
336 pgProp->SetValue( commonVal );
337 pgProp->Enable( writeable );
340 wxASSERT( displayOrder.count( property ) );
341 pgPropOrders[pgProp] = displayOrder[property];
342 pgPropGroups[
property->Group()].emplace_back( pgProp );
346 const wxString unspecifiedGroupCaption =
_(
"Basic Properties" );
348 for(
const wxString& groupName : groupDisplayOrder )
350 if( !pgPropGroups.count( groupName ) )
353 std::vector<wxPGProperty*>& properties = pgPropGroups[groupName];
354 wxString groupCaption = wxGetTranslation( groupName );
356 auto groupItem =
new wxPropertyCategory( groupName.IsEmpty() ? unspecifiedGroupCaption
359 m_grid->Append( groupItem );
361 std::sort( properties.begin(), properties.end(),
362 [&]( wxPGProperty*& aFirst, wxPGProperty*& aSecond )
364 return pgPropOrders[aFirst] < pgPropOrders[aSecond];
367 for( wxPGProperty* property : properties )
368 m_grid->Append( property );
377 const wxAny& any = aItem->
Get( aProperty );
378 bool converted =
false;
384 converted = any.GetAs<
int>( &tmp );
387 aValue = wxVariant( tmp );
391 converted = any.GetAs( &aValue );
395 wxString propName = aProperty->
Name();
396 propName.Replace(
' ',
'_' );
397 wxFAIL_MSG( wxString::Format( wxS(
"Could not convert wxAny to wxVariant for %s::%s" ),
408 wxVariant& aValue,
bool& aWritable )
411 bool different =
false;
433 if( !different && !aValue.IsNull() && value != aValue )
438 else if( !different )
456 if( aEvent.IsShown() )
466 if( aEvent.GetKeyCode() == WXK_TAB && !aEvent.ShiftDown() )
468 wxVariant oldValue =
m_grid->GetSelectedProperty()->GetValue();
470 m_grid->CommitChangesFromEditor();
473 if( oldValue ==
m_grid->GetSelectedProperty()->GetValue() )
479 if( aEvent.GetKeyCode() == WXK_SPACE )
481 if( wxPGProperty* prop =
m_grid->GetSelectedProperty() )
483 if( prop->GetValueType() == wxT(
"bool" ) )
485 m_grid->SetPropertyValue( prop, !prop->GetValue().GetBool() );
491 if( aEvent.GetKeyCode() == WXK_RETURN || aEvent.GetKeyCode() == WXK_NUMPAD_ENTER )
493 m_grid->CommitChangesFromEditor();
The base frame for deriving all KiCad main window classes.
bool IsType(FRAME_T aType) const
A base class for most all the KiCad significant classes used in schematics and boards.
virtual wxString GetFriendlyName() const
virtual wxString GetClass() const =0
Return the class name.
wxAny Get(PROPERTY_BASE *aProperty) const
bool m_PropertyGridInitialized
Enhanced renderer to work around some limitations in wxWidgets 3.0 capabilities.
virtual ~PROPERTIES_PANEL()
float m_splitter_key_proportion
Proportion of the grid column splitter that is used for the key column (0.0 - 1.0)
PROPERTIES_PANEL(wxWindow *aParent, EDA_BASE_FRAME *aFrame)
virtual void valueChanging(wxPropertyGridEvent &aEvent)
bool extractValueAndWritability(const SELECTION &aSelection, PROPERTY_BASE *aProperty, wxVariant &aValue, bool &aWritable)
Processes a selection and determines whether the given property should be available or not and what t...
void RecalculateSplitterPos()
void SetSplitterProportion(float aProportion)
std::vector< PROPERTY_BASE * > m_displayed
int m_SuppressGridChangeEvents
virtual void OnLanguageChanged(wxCommandEvent &aEvent)
virtual void UpdateData()=0
virtual void valueChanged(wxPropertyGridEvent &aEvent)
bool getItemValue(EDA_ITEM *aItem, PROPERTY_BASE *aProperty, wxVariant &aValue)
Utility to fetch a property value and convert to wxVariant Precondition: aItem is known to have prope...
virtual void rebuildProperties(const SELECTION &aSelection)
Generates the property grid for a given selection of items.
void onCharHook(wxKeyEvent &aEvent)
virtual wxPGProperty * createPGProperty(const PROPERTY_BASE *aProperty) const =0
void onShow(wxShowEvent &aEvent)
bool IsHiddenFromPropertiesManager() const
virtual bool HasChoices() const
Return true if this PROPERTY has a limited set of possible values.
const wxString & Name() const
Provide class metadata.Helper macro to map type hashes to names.
const PROPERTY_LIST & GetProperties(TYPE_ID aType) const
Return all properties for a specific type.
const PROPERTY_DISPLAY_ORDER & GetDisplayOrder(TYPE_ID aType) const
bool IsWriteableFor(TYPE_ID aItemClass, PROPERTY_BASE *aProp, INSPECTABLE *aItem)
Checks overriden availability and original availability of a property, returns false if the property ...
static PROPERTY_MANAGER & Instance()
PROPERTY_BASE * GetProperty(TYPE_ID aType, const wxString &aProperty) const
Return a property for a specific type.
bool IsAvailableFor(TYPE_ID aItemClass, PROPERTY_BASE *aProp, INSPECTABLE *aItem)
Checks overriden availability and original availability of a property, returns false if the property ...
const std::vector< wxString > & GetGroupDisplayOrder(TYPE_ID aType) const
int Size() const
Returns the number of selected parts.
bool Empty() const
Checks if there is anything selected.
SUPPRESS_GRID_CHANGED_EVENTS(PROPERTIES_PANEL *aPanel)
~SUPPRESS_GRID_CHANGED_EVENTS()
PROPERTIES_PANEL * m_panel
Base window classes and related definitions.
@ FRAME_SCH_SYMBOL_EDITOR
KICOMMON_API wxFont GetDockedPaneFont(wxWindow *aWindow)
PGM_BASE & Pgm()
The global program "get" accessor.
APIIMPORT wxPGGlobalVarsClass * wxPGGlobalVars
std::vector< PROPERTY_BASE * > PROPERTY_LIST
std::map< PROPERTY_BASE *, int > PROPERTY_DISPLAY_ORDER
size_t TYPE_ID
Unique type identifier.