29#include <wx/tooltip.h>
104 wxGridCellAttr* attr =
nullptr;
108 attr =
new wxGridCellAttr;
109 attr->SetReadOnly(
true );
114 wxArrayString choices;
115 choices.push_back( lib_pin->
GetName() );
117 for(
const std::pair<const wxString, SCH_PIN::ALT>& alt : lib_pin->
GetAlternates() )
118 choices.push_back( alt.first );
120 attr =
new wxGridCellAttr();
154 case COL_TYPE:
return _(
"Electrical Type" );
156 default: wxFAIL;
return wxEmptyString;
165 bool CanSetValueAs(
int aRow,
int aCol,
const wxString& aTypeName )
override
173 return GetValue( at( aRow ), aCol );
181 return wxEmptyString;
182 else if( aPin.
GetAlt().IsEmpty() )
194 default: wxFAIL;
return wxEmptyString;
198 wxGridCellAttr*
GetAttr(
int aRow,
int aCol, wxGridCellAttr::wxAttrKind aKind )
override
225 void SetValue(
int aRow,
int aCol,
const wxString &aValue )
override
230 if( aValue == at( aRow ).GetLibPin()->GetName() )
231 at( aRow ).SetAlt( wxEmptyString );
233 at( aRow ).SetAlt( aValue );
251 wxString lhStr =
GetValue( lhs, sortCol );
252 wxString rhStr =
GetValue( rhs, sortCol );
266 auto cmp = [ ascending ](
const auto a,
const auto b )
283 res = cmp( lhStr.CmpNoCase( rhStr ), 0 );
295 std::sort( begin(), end(),
296 [ aSortCol, ascending ](
const SCH_PIN& lhs,
const SCH_PIN& rhs ) ->
bool
298 return compare( lhs, rhs, aSortCol, ascending );
315 m_fieldsSize( 0, 0 ),
316 m_lastRequestedFieldsSize( 0, 0 ),
317 m_lastRequestedPinsSize( 0, 0 ),
318 m_editorShown( false ),
320 m_dataModel( nullptr )
339 [&]( wxCommandEvent& aEvent )
341 OnAddField( aEvent );
343 m_fieldsGrid->SetSelectionMode( wxGrid::wxGridSelectRows );
358 m_pinTablePage->SetToolTip(
_(
"Alternate pin assignments are not available for De Morgan "
379 m_pinGrid->SetSelectionMode( wxGrid::wxGridSelectRows );
383 wxToolTip::Enable(
true );
399 QueueEvent(
new wxCommandEvent( SYMBOL_DELAY_SELECTION ) );
400 wxCommandEvent *evt =
new wxCommandEvent( SYMBOL_DELAY_FOCUS );
413 cfg->m_Appearance.edit_symbol_width = GetSize().x;
414 cfg->m_Appearance.edit_symbol_height = GetSize().y;
443 if( !wxDialog::TransferDataToWindow() )
446 std::set<wxString> defined;
458 defined.insert( field.
GetName() );
464 GetParent()->Schematic().Settings().m_TemplateFieldNames.GetTemplateFieldNames() )
466 if( defined.count( templateFieldname.m_Name ) <= 0 )
469 field.
SetVisible( templateFieldname.m_Visible );
516 switch( orientation )
561 std::vector<SCH_FIELD> fields;
564 fields.emplace_back( field );
572 for(
const SCH_FIELD& editedField : fields )
578 if( existingField.GetName() == editedField.GetName() )
581 existingField.SetText( editedField.GetText() );
588 m_fields->emplace_back( editedField );
589 wxGridTableMessage msg(
m_fields, wxGRIDTABLE_NOTIFY_ROWS_APPENDED, 1 );
595 for(
int ii = (
int)
m_fields->size() - 1; ii >= 0; --ii )
602 if( editedField.GetName() == existingField.
GetName() )
612 wxGridTableMessage msg(
m_fields, wxGRIDTABLE_NOTIFY_ROWS_DELETED, ii, 1 );
642 wxString fieldName = field.
GetName(
false );
644 if( fieldName.IsEmpty() )
648 wxCommandEvent *evt =
new wxCommandEvent( SYMBOL_DELAY_FOCUS );
662 if( !wxDialog::TransferDataFromWindow() )
673 bool replaceOnCurrentScreen;
674 wxCHECK( currentScreen,
false );
732 const wxString& fieldName = field.GetCanonicalName();
734 if( fieldName.IsEmpty() && field.GetText().IsEmpty() )
736 else if( fieldName.IsEmpty() )
737 field.SetName(
_(
"untitled" ) );
739 fields.push_back( field );
766 src_pin->
SetAlt( model_pin.GetAlt() );
774 if( replaceOnCurrentScreen )
777 if( !commit.
Empty() )
778 commit.
Push(
_(
"Edit Symbol Properties" ) );
786 wxGridCellEditor*
editor =
m_fieldsGrid->GetCellEditor( event.GetRow(), event.GetCol() );
787 wxControl* control =
editor->GetControl();
789 if( control && control->GetValidator() && !control->GetValidator()->Validate( control ) )
792 wxCommandEvent *evt =
new wxCommandEvent( SYMBOL_DELAY_FOCUS );
793 evt->SetClientData(
new VECTOR2I( event.GetRow(), event.GetCol() ) );
796 else if( event.GetCol() ==
FDC_NAME )
798 wxString newName =
event.GetString();
800 for(
int i = 0; i <
m_fieldsGrid->GetNumberRows(); ++i )
802 if( i == event.GetRow() )
807 DisplayError(
this, wxString::Format(
_(
"Field name '%s' already in use." ),
810 wxCommandEvent *evt =
new wxCommandEvent( SYMBOL_DELAY_FOCUS );
811 evt->SetClientData(
new VECTOR2I( event.GetRow(), event.GetCol() ) );
824 QueueEvent(
new wxCommandEvent( SYMBOL_DELAY_SELECTION ) );
842 int fieldID = (int)
m_fields->size();
853 wxGridTableMessage msg(
m_fields, wxGRIDTABLE_NOTIFY_ROWS_APPENDED, 1 );
868 wxArrayInt selectedRows =
m_fieldsGrid->GetSelectedRows();
870 if( selectedRows.empty() &&
m_fieldsGrid->GetGridCursorRow() >= 0 )
871 selectedRows.push_back(
m_fieldsGrid->GetGridCursorRow() );
873 if( selectedRows.empty() )
876 for(
int row : selectedRows )
880 DisplayError(
this, wxString::Format(
_(
"The first %d fields are mandatory." ),
890 selectedRows.Sort( [](
int* first,
int* second ) {
return *second - *first; } );
892 for(
int row : selectedRows )
897 wxGridTableMessage msg(
m_fields, wxGRIDTABLE_NOTIFY_ROWS_DELETED, row, 1 );
995 int row = aEvent.GetRow();
1013 int sortCol = aEvent.GetCol();
1020 ascending = !
m_pinGrid->IsSortOrderAscending();
1032 wxGridUpdateLocker deferRepaintsTillLeavingScope(
m_fieldsGrid );
1042 for(
int i = 2; i <
m_fieldsGrid->GetNumberCols(); i++ )
1045 m_fieldsGrid->SetColSize( 1, std::max( 120, fieldsWidth - fixedColsWidth ) );
1051 wxGridUpdateLocker deferRepaintsTillLeavingScope(
m_pinGrid );
1060 pinTblWidth -=
m_pinGrid->GetColSize( i );
1086 wxCHECK_RET( loc, wxT(
"Missing focus cell location" ) );
1106 if( wxTextEntry* txt =
dynamic_cast<wxTextEntry*
>( cellEditor->GetControl() ) )
1109 cellEditor->DecRef();
1114 wxSize new_size =
event.GetSize();
1135 wxSize new_size =
event.GetSize();
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap)
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Modify a given item in the model.
void SetupStandardButtons(std::map< int, wxString > aLabels={})
void EndQuasiModal(int retCode)
void finishDialogSettings()
In all dialogs, we must call the same functions to fix minimal dlg size, the default position and per...
EDA_BASE_FRAME * m_parentFrame
Class DIALOG_SYMBOL_PROPERTIES_BASE.
wxCheckBox * m_cbExcludeFromBom
wxChoice * m_orientationCtrl
STD_BITMAP_BUTTON * m_bpMoveDown
wxStaticText * m_unitLabel
wxCheckBox * m_cbExcludeFromSim
STD_BITMAP_BUTTON * m_bpAdd
STD_BITMAP_BUTTON * m_bpDelete
wxTextCtrl * m_tcLibraryID
wxCheckBox * m_cbAlternateSymbol
wxButton * m_spiceFieldsButton
wxCheckBox * m_cbExcludeFromBoard
wxCheckBox * m_ShowPinNameButt
wxCheckBox * m_ShowPinNumButt
STD_BITMAP_BUTTON * m_bpMoveUp
void OnSizePinsGrid(wxSizeEvent &event) override
void OnPinTableCellEdited(wxGridEvent &event) override
void OnGridEditorShown(wxGridEvent &event) override
void OnUpdateUI(wxUpdateUIEvent &event) override
wxSize m_lastRequestedPinsSize
void OnEditSymbol(wxCommandEvent &) override
void OnCancelButtonClick(wxCommandEvent &event) override
bool TransferDataFromWindow() override
virtual void onUpdateEditLibrarySymbol(wxUpdateUIEvent &event) override
SCH_PIN_TABLE_DATA_MODEL * m_dataModel
void OnMoveDown(wxCommandEvent &event) override
FIELDS_GRID_TABLE * m_fields
void OnSizeFieldsGrid(wxSizeEvent &event) override
SCH_EDIT_FRAME * GetParent()
std::bitset< 64 > m_shownColumns
void OnPinTableColSort(wxGridEvent &aEvent)
void OnMoveUp(wxCommandEvent &event) override
void OnDeleteField(wxCommandEvent &event) override
void OnInitDlg(wxInitDialogEvent &event) override
void OnAddField(wxCommandEvent &event) override
void OnGridEditorHidden(wxGridEvent &event) override
bool TransferDataToWindow() override
void AdjustPinsGridColumns()
~DIALOG_SYMBOL_PROPERTIES() override
void OnUnitChoice(wxCommandEvent &event) override
void OnEditSpiceModel(wxCommandEvent &event) override
void OnPageChanging(wxNotebookEvent &event) override
DIALOG_SYMBOL_PROPERTIES(SCH_EDIT_FRAME *aParent, SCH_SYMBOL *aSymbol)
void HandleDelayedFocus(wxCommandEvent &event)
void HandleDelayedSelection(wxCommandEvent &event)
void OnCheckBox(wxCommandEvent &event) override
void OnGridCellChanging(wxGridEvent &event)
void OnEditLibrarySymbol(wxCommandEvent &) override
void OnUpdateSymbol(wxCommandEvent &) override
void AdjustFieldsGridColumns()
wxSize m_lastRequestedFieldsSize
void OnExchangeSymbol(wxCommandEvent &) override
virtual void onUpdateEditSymbol(wxUpdateUIEvent &event) override
EDA_ITEM_FLAGS GetEditFlags() const
void SetFlags(EDA_ITEM_FLAGS aMask)
void ClearFlags(EDA_ITEM_FLAGS aMask=EDA_ITEM_ALL_FLAGS)
EDA_ITEM_FLAGS GetFlags() const
void SetTextSize(VECTOR2I aNewSize, bool aEnforceMinTextSize=true)
virtual const wxString & GetText() const
Return the string associated with the text object.
void Offset(const VECTOR2I &aOffset)
virtual void SetVisible(bool aVisible)
virtual void SetTextAngle(const EDA_ANGLE &aAngle)
int GetNumberRows() override
Add mouse and command handling (such as cut, copy, and paste) to a WX_GRID instance.
APP_SETTINGS_BASE * KifaceSettings() const
A logical library item identifier and consists of various portions much like a URI.
bool IsPower() const override
bool HasAlternateBodyStyle() const override
Test if symbol has more than one body conversion type (DeMorgan).
static int Compare(const wxString &lhs, const wxString &rhs)
These are loaded from Eeschema settings but then overwritten by the project settings.
SCHEMATIC_SETTINGS & Settings() const
wxString ConvertKIIDsToRefs(const wxString &aSource) const
wxString ConvertRefsToKIIDs(const wxString &aSource) const
virtual void Push(const wxString &aMessage=wxT("A commit"), int aCommitFlags=0) override
Execute the changes.
Schematic editor (Eeschema) main window.
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
SCHEMATIC & Schematic() const
Instances are attached to a symbol or sheet and provide a place for the symbol's value,...
wxString GetName(bool aUseDefaultName=true) const
Return the field name (not translated).
void SetText(const wxString &aText) override
SCHEMATIC * Schematic() const
Searches the item hierarchy to find a SCHEMATIC.
virtual void SetUnit(int aUnit)
bool IsEmptyCell(int row, int col) override
wxGridCellAttr * m_typeAttr
wxString GetValue(int aRow, int aCol) override
std::vector< wxGridCellAttr * > m_nameAttrs
int GetNumberCols() override
static bool compare(const SCH_PIN &lhs, const SCH_PIN &rhs, int sortCol, bool ascending)
void SortRows(int aSortCol, bool ascending)
~SCH_PIN_TABLE_DATA_MODEL()
wxGridCellAttr * m_shapeAttr
SCH_PIN_TABLE_DATA_MODEL()
int GetNumberRows() override
bool CanSetValueAs(int aRow, int aCol, const wxString &aTypeName) override
static wxString GetValue(const SCH_PIN &aPin, int aCol)
wxGridCellAttr * m_readOnlyAttr
wxString GetColLabelValue(int aCol) override
void SetValue(int aRow, int aCol, const wxString &aValue) override
wxGridCellAttr * GetAttr(int aRow, int aCol, wxGridCellAttr::wxAttrKind aKind) override
void SetAlt(const wxString &aAlt)
const std::map< wxString, ALT > & GetAlternates() const
ALT GetAlt(const wxString &aAlt)
SCH_PIN * GetLibPin() const
const wxString & GetName() const
const wxString & GetNumber() const
GRAPHIC_PINSHAPE GetShape() const
ELECTRICAL_PINTYPE GetType() const
void Append(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
bool Remove(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
Remove aItem from the schematic associated with this screen.
wxString GetUnitDisplayName(int aUnit) const
Return the display name for a given unit aUnit.
std::vector< std::unique_ptr< SCH_PIN > > & GetRawPins()
void SetShowPinNumbers(bool aShow) override
Set or clear the pin number visibility flag.
int GetFieldCount() const
Return the number of fields in this symbol.
wxString SubReference(int aUnit, bool aAddSeparator=true) const
void SetValueFieldText(const wxString &aValue)
void SetBodyStyle(int aBodyStyle) override
void SetShowPinNames(bool aShow) override
Set or clear the pin name visibility flag.
void GetFields(std::vector< SCH_FIELD * > &aVector, bool aVisibleOnly) override
Populate a std::vector with SCH_FIELDs.
void SyncOtherUnits(const SCH_SHEET_PATH &aSourceSheet, SCH_COMMIT &aCommit, PROPERTY_BASE *aProperty)
Keep fields other than the reference, include/exclude flags, and alternate pin assignements in sync i...
void SetRef(const SCH_SHEET_PATH *aSheet, const wxString &aReference)
Set the reference for the given sheet path for this symbol.
void SetOrientation(int aOrientation)
Compute the new transform matrix based on aOrientation for the symbol which is applied to the current...
void SetFootprintFieldText(const wxString &aFootprint)
VECTOR2I GetPosition() const override
const LIB_ID & GetLibId() const override
int GetUnitSelection(const SCH_SHEET_PATH *aSheet) const
Return the instance-specific unit selection for the given sheet path.
SCH_PIN * GetPin(const wxString &number) const
Find a symbol pin by number.
int GetUnitCount() const override
Return the number of units per package of the symbol.
int GetOrientation() const override
Get the display symbol orientation.
void SetUnitSelection(const SCH_SHEET_PATH *aSheet, int aUnitSelection)
Set the selected unit of this symbol on one sheet.
std::unique_ptr< LIB_SYMBOL > & GetLibSymbolRef()
bool HasUnitDisplayName(int aUnit) const
Return true if the given unit aUnit has a display name set.
bool GetExcludedFromBoard() const
bool GetExcludedFromBOM() const
void SetExcludedFromSim(bool aExcludeFromSim) override
Set or clear the exclude from simulation flag.
bool GetDNP() const
Set or clear the 'Do Not Populate' flag.
virtual bool GetShowPinNames() const
void SetExcludedFromBOM(bool aExcludeFromBOM)
Set or clear the exclude from schematic bill of materials flag.
void SetExcludedFromBoard(bool aExcludeFromBoard)
Set or clear exclude from board netlist flag.
virtual bool GetShowPinNumbers() const
bool GetExcludedFromSim() const override
wxGridCellAttr * enhanceAttr(wxGridCellAttr *aInputAttr, int aRow, int aCol, wxGridCellAttr::wxAttrKind aKind)
void ShowHideColumns(const wxString &shownColumns)
Show/hide the grid columns based on a tokenized string of shown column indexes.
void SetTable(wxGridTableBase *table, bool aTakeOwnership=false)
Hide wxGrid's SetTable() method with one which doesn't mess up the grid column widths when setting th...
void DestroyTable(wxGridTableBase *aTable)
Work-around for a bug in wxGrid which crashes when deleting the table if the cell edit control was no...
wxString GetShownColumnsAsString()
Get a tokenized string containing the shown column indexes.
std::bitset< 64 > GetShownColumns()
bool CommitPendingChanges(bool aQuietMode=false)
Close any open cell edit controls.
void DisplayError(wxWindow *aParent, const wxString &aText, int aDisplayTime)
Display an error or warning message box with aMessage.
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
This file is part of the common library.
wxDEFINE_EVENT(SYMBOL_DELAY_FOCUS, wxCommandEvent)
@ SYMBOL_PROPS_EDIT_SCHEMATIC_SYMBOL
@ SYMBOL_PROPS_WANT_EXCHANGE_SYMBOL
@ SYMBOL_PROPS_WANT_UPDATE_SYMBOL
@ SYMBOL_PROPS_EDIT_LIBRARY_SYMBOL
std::uint32_t EDA_ITEM_FLAGS
KICOMMON_API void SelectReferenceNumber(wxTextEntry *aTextEntry)
Select the number (or "?") in a reference for ease of editing.
const std::vector< BITMAPS > & PinTypeIcons()
const wxArrayString & PinTypeNames()
const wxArrayString & PinShapeNames()
const std::vector< BITMAPS > & PinShapeIcons()
std::vector< SCH_FIELD > SCH_FIELDS
A container for several SCH_FIELD items.
int StrNumCmp(const wxString &aString1, const wxString &aString2, bool aIgnoreCase)
Compare two strings with alphanumerical content.
wxString UnescapeString(const wxString &aSource)
Hold a name of a symbol's field, field value, and default visibility.
static const wxString GetDefaultFieldName(int aFieldNdx, bool aTranslateForHI=false)
Return a default symbol field name for field aFieldNdx for all components.
Definition for symbol library class.
@ FOOTPRINT_FIELD
Field Name Module PCB, i.e. "16DIP300".
@ VALUE_FIELD
Field Value of part, i.e. "3.3K".
@ MANDATORY_FIELDS
The first 5 are mandatory, and must be instantiated in SCH_COMPONENT and LIB_PART constructors.
@ REFERENCE_FIELD
Field Reference of part, i.e. "IC21".
VECTOR2< int32_t > VECTOR2I