39#include <wx/filedlg.h>
40#include <fmt/format.h>
46#include <wx/filedlg.h>
51#define FORCE_REFRESH_FROM_MODEL true
54bool equivalent( SIM_MODEL::DEVICE_T a, SIM_MODEL::DEVICE_T b )
65 std::vector<SCH_FIELD>& aFields ) :
84 if constexpr (std::is_same_v<T, SCH_SYMBOL>)
90 if(
EMBEDDED_FILES* symbolEmbeddedFiles = aSymbol.GetEmbeddedFiles() )
92 m_filesStack.push_back( symbolEmbeddedFiles );
94 if constexpr (std::is_same_v<T, SCH_SYMBOL>)
96 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( &aSymbol );
97 symbol->GetLibSymbolRef()->AppendParentEmbeddedFiles( m_filesStack );
99 else if constexpr (std::is_same_v<T, LIB_SYMBOL>)
106 m_libraryModelsMgr.SetFilesStack( m_filesStack );
107 m_builtinModelsMgr.SetFilesStack( m_filesStack );
112 if( !pin->GetParentSymbol()->IsMultiBodyStyle() || pin->GetBodyStyle() < 2 )
113 m_sortedPartPins.push_back( pin );
116 std::sort( m_sortedPartPins.begin(), m_sortedPartPins.end(),
120 return StrNumCmp( lhs->GetNumber(), rhs->GetNumber(), true ) < 0;
123 m_waveformChoice->Clear();
124 m_deviceChoice->Clear();
125 m_deviceSubtypeChoice->Clear();
127 m_scintillaTricksCode =
new SCINTILLA_TRICKS( m_codePreview, wxT(
"{}" ),
false );
128 m_scintillaTricksSubckt =
new SCINTILLA_TRICKS( m_subckt, wxT(
"()" ),
false );
132 wxPropertyGrid*
grid = m_paramGrid->GetGrid();
133 grid->SetCellDisabledTextColour( wxSystemSettings::GetColour( wxSYS_COLOUR_GRAYTEXT ) );
137 grid->DedicateKey( WXK_RETURN );
138 grid->DedicateKey( WXK_NUMPAD_ENTER );
139 grid->DedicateKey( WXK_UP );
140 grid->DedicateKey( WXK_DOWN );
142#if wxCHECK_VERSION( 3, 3, 0 )
143 grid->AddActionTrigger( wxPGKeyboardAction::Edit, WXK_RETURN );
144 grid->AddActionTrigger( wxPGKeyboardAction::NextProperty, WXK_RETURN );
145 grid->AddActionTrigger( wxPGKeyboardAction::Edit, WXK_NUMPAD_ENTER );
146 grid->AddActionTrigger( wxPGKeyboardAction::NextProperty, WXK_NUMPAD_ENTER );
148 grid->AddActionTrigger( wxPG_ACTION_EDIT, WXK_RETURN );
149 grid->AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY, WXK_RETURN );
150 grid->AddActionTrigger( wxPG_ACTION_EDIT, WXK_NUMPAD_ENTER );
151 grid->AddActionTrigger( wxPG_ACTION_NEXT_PROPERTY, WXK_NUMPAD_ENTER );
154 m_pinAssignmentsGrid->ClearRows();
155 m_pinAssignmentsGrid->PushEventHandler(
new GRID_TRICKS( m_pinAssignmentsGrid ) );
158 finishDialogSettings();
167 for( wxPropertyGridIterator it =
m_paramGrid->GetIterator(); !it.AtEnd(); ++it )
184 wxCommandEvent dummyEvent;
187 wxString modelParams;
189 bool storeInValue =
false;
195 &deviceType, &modelType, &modelParams, &pinMap ) )
199 if( !modelType.IsEmpty() )
214 valueField->
SetText( wxT(
"${SIM.PARAMS}" ) );
218 wxFileName tmp( libraryFilename );
220 if( !tmp.GetFullName().IsEmpty() )
245 if( modelIdx == wxNOT_FOUND )
247 m_infoBar->ShowMessage( wxString::Format(
_(
"No model named '%s' in library." ),
279 for(
const std::pair<std::string, std::string>& strs : ibismodel->
GetIbisPins() )
285 ibismodel->
ChangePin( *ibisLibrary, strs.first );
292 if( i <
static_cast<int>( ibismodel->
GetIbisPins().size() ) )
319 if( ibisLibrary && !pinNum.empty() && !modelNm.empty() )
320 ibismodel->
SetIbisModel( *ibisLibrary, pinNum, modelNm );
337 for( SIM_MODEL::TYPE type : SIM_MODEL::TYPE_ITERATOR() )
347 + wxT(
"\n\n" ) +
reporter.GetMessages() );
362 curModel().SetIsStoredInValue(
true );
369 return DIALOG_SIM_MODEL_BASE::TransferDataToWindow();
379 if( !
m_paramGrid->GetGrid()->CommitChangesFromEditor() )
382 if( !DIALOG_SIM_MODEL_BASE::TransferDataFromWindow() )
392 wxFileName fn(
path );
395 && !fn.GetFullPath().StartsWith(
".." ) )
397 path = fn.GetFullPath();
424 std::string differential;
427 pins = ibismodel->GetIbisPins().at(
m_pinCombobox->GetSelection() ).first;
438 if(
model.GetType() == SIM_MODEL::TYPE::RAWSPICE )
443 wxString code =
m_codePreview->GetText().Trim(
true ).Trim(
false );
444 model.SetParamValue(
"model", std::string( code.ToUTF8() ) );
455 std::string( symbolPinName.ToUTF8() ) );
463 model.IsStoredInValue() );
475 wxStringTokenizer sharedTokens(
m_sharedPinsText->GetValue(), wxS(
", \t" ),
478 while( sharedTokens.HasMoreTokens() )
479 decomposition.
sharedModelPins.push_back( sharedTokens.GetNextToken() );
493 const wxString& aOriginalValue,
bool aOverwritten,
494 bool aStoredInValue )
496 if( !aOverwritten || aStoredInValue )
500 valueField->SetText( aOriginalValue );
507 bool multiUnit =
m_symbol.GetUnitCount() > 1;
527 if( !shared.IsEmpty() )
528 shared += wxS(
", " );
599 SendSizeEvent( wxSEND_EVENT_POST );
623 for( SIM_MODEL::TYPE type : { SIM_MODEL::TYPE::KIBIS_DEVICE,
624 SIM_MODEL::TYPE::KIBIS_DRIVER_DC,
625 SIM_MODEL::TYPE::KIBIS_DRIVER_RECT,
626 SIM_MODEL::TYPE::KIBIS_DRIVER_PRBS } )
636 if( type == aModel->
GetType() )
659 for( SIM_MODEL::DEVICE_T deviceType : SIM_MODEL::DEVICE_T_ITERATOR() )
670 for( SIM_MODEL::TYPE type : SIM_MODEL::TYPE_ITERATOR() )
672 if( type == SIM_MODEL::TYPE::KIBIS_DEVICE
673 || type == SIM_MODEL::TYPE::KIBIS_DRIVER_DC
674 || type == SIM_MODEL::TYPE::KIBIS_DRIVER_RECT
675 || type == SIM_MODEL::TYPE::KIBIS_DRIVER_PRBS )
688 if( type == aModel->
GetType() )
745 m_paramGrid->Append(
new wxPropertyCategory(
"AC" ) );
748 m_paramGrid->Append(
new wxPropertyCategory(
"DC" ) );
751 m_paramGrid->Append(
new wxPropertyCategory(
"S-Parameters" ) );
754 m_paramGrid->Append(
new wxPropertyCategory(
"Capacitance" ) );
757 m_paramGrid->Append(
new wxPropertyCategory(
"Temperature" ) );
760 m_paramGrid->Append(
new wxPropertyCategory(
"Noise" ) );
763 m_paramGrid->Append(
new wxPropertyCategory(
"Distributed Quantities" ) );
764 m_paramGrid->HideProperty(
"Distributed Quantities" );
766 m_paramGrid->Append(
new wxPropertyCategory(
"Waveform" ) );
769 m_paramGrid->Append(
new wxPropertyCategory(
"Limiting Values" ) );
772 m_paramGrid->Append(
new wxPropertyCategory(
"Advanced" ) );
775 m_paramGrid->Append(
new wxPropertyCategory(
"Flags" ) );
792 for( wxPropertyGridIterator it =
m_paramGrid->GetIterator(); !it.AtEnd(); ++it )
794 wxColour bgCol =
m_paramGrid->GetGrid()->GetPropertyDefaultCell().GetBgCol();
795 wxColour fgCol =
m_paramGrid->GetGrid()->GetPropertyDefaultCell().GetFgCol();
799 ( *it )->GetCell( col ).SetBgCol( bgCol );
800 ( *it )->GetCell( col ).SetFgCol( fgCol );
814 ( *it )->SetValueFromString( param.
value );
857 aForceRefreshFromModel =
true;
860 if( aForceRefreshFromModel )
867 for(
int modelPinIndex = 0; modelPinIndex < aModel->
GetPinCount(); ++modelPinIndex )
871 if( symbolPinNumber ==
"" )
876 if( symbolPinRow == -1 )
887 std::vector<BITMAPS> modelPinIcons;
888 wxArrayString modelPinChoices;
890 for(
int jj = 0; jj < aModel->
GetPinCount(); ++jj )
901 modelPinChoices.Add(
_(
"Not Connected" ) );
910 if( modelPinIndex >= 0 )
916 if( aModel->
GetType() == SIM_MODEL::TYPE::SUBCKT )
962 wxArrayString emptyArray;
977 for(
const auto& [baseModelName, baseModel] :
library()->GetModels() )
979 if( baseModelName == modelName )
988 wxArrayString modelNames;
990 bool modelNameExists =
false;
993 modelNames.Add(
name );
996 if(
name == modelName )
997 modelNameExists =
true;
1005 if( !modelNameExists )
1007 m_infoBar->ShowMessage( wxString::Format(
_(
"No model named '%s' in '%s'." ),
1015 wxArrayString emptyArray;
1034template <
typename T>
1052 case CATEGORY::S_PARAM:
1053 m_paramGrid->HideProperty(
"S-Parameters",
false );
1057 case CATEGORY::CAPACITANCE:
1058 m_paramGrid->HideProperty(
"Capacitance",
false );
1062 case CATEGORY::TEMPERATURE:
1063 m_paramGrid->HideProperty(
"Temperature",
false );
1067 case CATEGORY::NOISE:
1072 case CATEGORY::DISTRIBUTED_QUANTITIES:
1073 m_paramGrid->HideProperty(
"Distributed Quantities",
false );
1077 case CATEGORY::WAVEFORM:
1082 case CATEGORY::GEOMETRY:
1087 case CATEGORY::LIMITING_VALUES:
1088 m_paramGrid->HideProperty(
"Limiting Values",
false );
1092 case CATEGORY::ADVANCED:
1097 case CATEGORY::FLAGS:
1106 case CATEGORY::INITIAL_CONDITIONS:
1107 case CATEGORY::SUPERFLUOUS:
1113template <
typename T>
1117 wxString paramDescription;
1120 paramDescription = wxString::Format(
"%s", param.
info.
name );
1124 wxPGProperty* prop =
nullptr;
1130 prop->SetAttribute( wxPG_BOOL_USE_CHECKBOX,
true );
1152 wxArrayString inductors;
1163 if( item.model->GetDeviceType() == SIM_MODEL::DEVICE_T::L )
1164 inductors.push_back( item.refName );
1168 [](
const wxString& a,
const wxString& b ) ->
int
1174 if( inductors.empty() )
1192 wxArrayString values;
1195 values.Add(
string );
1203 prop =
new wxStringProperty( paramDescription, param.
info.
name );
1207 prop->SetAttribute( wxPG_ATTR_UNITS, wxString::FromUTF8( param.
info.
unit.c_str() ) );
1233template <
typename T>
1236 for(
int row = 0; row < static_cast<int>(
m_sortedPartPins.size() ); ++row )
1240 if(
pin->GetNumber() == aSymbolPinNumber )
1248template <
typename T>
1273template <
typename T>
1283template <
typename T>
1292 pinNumber =
pin->GetShownNumber();
1293 pinName =
pin->GetShownName();
1296 if( !pinName.IsEmpty() && pinName != pinNumber )
1297 pinNumber += wxString::Format( wxT(
" (\"%s\")" ), pinName );
1303template <
typename T>
1306 wxString modelPinName;
1308 if( aModelPinIndex >= 0 && aModelPinIndex < aModel->GetPinCount() )
1311 wxString modelPinNumber = wxString::Format(
"%d", aModelPinIndex + 1 );
1313 if( !modelPinName.IsEmpty() && modelPinName != modelPinNumber )
1314 modelPinNumber += wxString::Format( wxT(
" (\"%s\")" ), modelPinName );
1316 return modelPinNumber;
1320template <
typename T>
1323 if( aModelPinString ==
"Not Connected" )
1326 int length = aModelPinString.Find(
" " );
1328 if( length == wxNOT_FOUND )
1329 length =
static_cast<int>( aModelPinString.Length() );
1332 aModelPinString.Mid( 0, length ).ToCLong( &
result );
1334 return static_cast<int>(
result - 1 );
1338template <
typename T>
1346template <
typename T>
1353template <
typename T>
1370template <
typename T>
1380 wxCommandEvent
dummy;
1388template <
typename T>
1391 static wxString s_mruPath;
1394 wxFileDialog dlg(
this,
_(
"Browse Models" ),
path );
1397 dlg.SetCustomizeHook( customize );
1401 if( dlg.ShowModal() == wxID_CANCEL )
1406 path = dlg.GetPath();
1407 wxFileName fn(
path );
1408 s_mruPath = fn.GetPath();
1415 else if( fn.MakeRelativeTo(
Prj().GetProjectPath() ) && !fn.GetFullPath().StartsWith( wxS(
".." ) ) )
1417 path = fn.GetFullPath();
1431template <
typename T>
1444 switch( aKeyStroke.GetKeyCode() )
1447 if( sel == wxNOT_FOUND )
1450 sel = std::max( sel - 1, 0 );
1455 if( sel == wxNOT_FOUND )
1458 sel = std::min( sel + 1, count - 1 );
1463 wxPostEvent(
this, wxCommandEvent( wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK ) );
1475template <
typename T>
1481 wxArrayString modelNames;
1487 wxString wx_name(
name );
1489 if( wx_name.Matches(
filter ) )
1490 modelNames.Add( wx_name );
1506template <
typename T>
1511 wxArrayString pinLabels;
1514 wxCHECK2( modelkibis,
return );
1516 for( std::pair<wxString, wxString> strs : modelkibis->
GetIbisPins() )
1517 pinLabels.Add( strs.first + wxT(
" - " ) + strs.second );
1521 wxArrayString emptyArray;
1530 wxArrayString lines = wxSplit( fallback->GetSpiceCode(),
'\n' );
1533 for(
const wxString& line : lines )
1535 if( !line.StartsWith(
'*' ) )
1537 if( !code.IsEmpty() )
1544 m_infoBar->ShowMessage( wxString::Format(
_(
"Failed to parse:\n\n"
1546 "Using generic SPICE model." ),
1558template <
typename T>
1561 wxArrayString modelLabels;
1565 std::vector<std::pair<std::string, std::string>> strs = ibisModel.
GetIbisPins();
1566 std::string pinNumber = strs.at(
m_pinCombobox->GetSelection() ).first;
1570 ibisModel.
ChangePin( *ibisLibrary, pinNumber );
1575 modelLabels.Add( modelName );
1588template <
typename T>
1597template <
typename T>
1609 std::string pinNumber = ibismodel->GetIbisPins()
1614 ibismodel->SetIbisModel( *ibisLibrary, pinNumber, modelName );
1622template <
typename T>
1629template <
typename T>
1635 modelibis->SwitchSingleEndedDiff( diff );
1642template <
typename T>
1647 for( SIM_MODEL::DEVICE_T deviceType : SIM_MODEL::DEVICE_T_ITERATOR() )
1660template <
typename T>
1663 SIM_MODEL::DEVICE_T deviceType =
curModel().GetDeviceType();
1666 for( SIM_MODEL::TYPE type : { SIM_MODEL::TYPE::KIBIS_DEVICE,
1667 SIM_MODEL::TYPE::KIBIS_DRIVER_DC,
1668 SIM_MODEL::TYPE::KIBIS_DRIVER_RECT,
1669 SIM_MODEL::TYPE::KIBIS_DRIVER_PRBS } )
1682 m_libraryModelsMgr.SetModel( idx, std::make_unique<SIM_MODEL_IBIS>( type, baseModel ) );
1704template <
typename T>
1707 SIM_MODEL::DEVICE_T deviceType =
curModel().GetDeviceType();
1710 for( SIM_MODEL::TYPE type : SIM_MODEL::TYPE_ITERATOR() )
1725template <
typename T>
1732template <
typename T>
1735 int symbolPinIndex = aEvent.GetRow();
1736 wxString oldModelPinName = aEvent.GetString();
1737 wxString modelPinName =
m_pinAssignmentsGrid->GetCellValue( aEvent.GetRow(), aEvent.GetCol() );
1743 curModel().AssignSymbolPinNumberToModelPin( oldModelPinIndex,
"" );
1758template <
typename T>
1771template <
typename T>
1778 wxPGProperty* selected =
grid->GetSelection();
1781 selected =
grid->wxPropertyGridInterface::GetFirst();
1783#if wxCHECK_VERSION( 3, 3, 0 )
1785 grid->DoSelectProperty( selected, wxPGSelectPropertyFlags::Focus );
1788 grid->DoSelectProperty( selected, wxPG_SEL_FOCUS );
1795template <
typename T>
1801 if(
grid->GetSelection() &&
grid->GetSelection()->IsCategory() )
1803 wxPGProperty* selection =
grid->GetSelection();
1808 wxPropertyGridIterator it =
grid->GetIterator( wxPG_ITERATE_VISIBLE, selection );
1811 wxKeyEvent* keyEvent =
new wxKeyEvent( wxEVT_KEY_DOWN );
1815 if( !selection->IsExpanded() )
1817 grid->Expand( selection );
1818 keyEvent->m_keyCode = WXK_DOWN;
1819 wxQueueEvent(
grid, keyEvent );
1827 keyEvent->m_keyCode = WXK_UP;
1828 wxQueueEvent(
grid, keyEvent );
1833 if( !selection->IsExpanded() )
1834 grid->Expand( selection );
1836 keyEvent->m_keyCode = WXK_DOWN;
1837 wxQueueEvent(
grid, keyEvent );
1844 wxWindow* editorControl =
grid->GetEditorControl();
1846 if( !editorControl )
1853 editorControl->SetFocus();
1858template <
typename T>
1870 wxTextCtrl* ctrl =
grid->GetEditorTextCtrl();
1874 wxRect ctrlRect = ctrl->GetScreenRect();
1875 wxRect gridRect =
grid->GetScreenRect();
1877 if( ctrlRect.GetTop() < gridRect.GetTop() || ctrlRect.GetBottom() > gridRect.GetBottom() )
1878 grid->ClearSelection();
1884template <
typename T>
1897 std::vector<int> colWidths;
1899 for(
size_t ii = 0; ii <
grid->GetColumnCount(); ii++ )
1902 colWidths.push_back(
grid->GetState()->GetColumnWidth( ii ) + margin + indent );
1904 colWidths.push_back( std::max( 72,
grid->GetState()->GetColumnWidth( ii ) ) + margin );
1906 colWidths.push_back( 60 + margin );
1908 aWidth -= colWidths[ ii ];
1911 for(
size_t ii = 0; ii <
grid->GetColumnCount(); ii++ )
1912 grid->SetColumnProportion( ii, colWidths[ ii ] );
1914 grid->ResetColumnSizes();
1915 grid->RefreshEditor();
1920template <
typename T>
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
wxNotebook * m_modelNotebook
wxStaticText * m_subcktLabel
wxStaticText * m_sharedPinsLabel
wxStaticText * m_modelNameLabel
wxPropertyGridManager * m_paramGridMgr
wxStaticText * m_pathLabel
wxRadioButton * m_rbBuiltinModel
wxListBox * m_modelListBox
wxComboBox * m_pinCombobox
DIALOG_SIM_MODEL_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("Simulation Model Editor"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
wxChoice * m_deviceSubtypeChoice
wxSearchCtrl * m_modelFilter
wxStaticText * m_waveformLabel
wxTextCtrl * m_libraryPathText
wxStaticText * m_pinLabel
wxChoice * m_deviceChoice
wxComboBox * m_pinModelCombobox
wxRadioButton * m_rbLibraryModel
wxChoice * m_decompositionChoice
wxChoice * m_waveformChoice
wxStaticText * m_deviceLabel
wxStaticText * m_decompositionLabel
WX_GRID * m_pinAssignmentsGrid
wxStaticText * m_pinModelLabel
wxPanel * m_parametersPanel
wxStaticText * m_deviceSubtypeLabel
wxTextCtrl * m_sharedPinsText
wxCheckBox * m_saveInValueCheckbox
STD_BITMAP_BUTTON * m_browseButton
wxStyledTextCtrl * m_subckt
wxPropertyGridPage * m_paramGrid
wxPanel * m_pinAssignmentsPanel
wxCheckBox * m_differentialCheckbox
wxStyledTextCtrl * m_codePreview
const SIM_MODEL * m_prevModel
void onTypeChoice(wxCommandEvent &aEvent) override
void onLibraryPathTextKillFocus(wxFocusEvent &aEvent) override
wxString getSymbolPinString(int aSymbolPinNumber) const
void updateBuiltinModelWidgets(SIM_MODEL *aModel)
void onPinAssignmentsGridCellChange(wxGridEvent &aEvent) override
void onFilterCharHook(wxKeyEvent &aKeyStroke) override
int findSymbolPinRow(const wxString &aSymbolPinNumber) const
void onModelNameChoice(wxCommandEvent &aEvent) override
void onRadioButton(wxCommandEvent &aEvent) override
SCINTILLA_TRICKS * m_scintillaTricksSubckt
bool loadLibrary(const wxString &aLibraryPath, REPORTER &aReporter, bool aForceReload=false)
SIM_LIB_MGR m_builtinModelsMgr
int getModelPinIndex(const wxString &aModelPinString) const
void onModelFilter(wxCommandEvent &aEvent) override
void onLibraryPathText(wxCommandEvent &aEvent) override
void onDifferentialCheckbox(wxCommandEvent &event) override
void onParamGridSelectionChange(wxPropertyGridEvent &aEvent)
void removeOrphanedPinAssignments(SIM_MODEL *aModel)
bool m_inferredValueOverwritten
void adjustParamGridColumns(int aWidth, bool aForce)
Show/populate the decomposition controls (multi-unit only) and sync their enabled state.
std::vector< SCH_FIELD > & m_fields
std::vector< SCH_PIN * > m_sortedPartPins
Pins of the current part.
wxPGProperty * newParamProperty(SIM_MODEL *aModel, int aParamIndex) const
void onDecompositionModeChoice(wxCommandEvent &aEvent) override
wxPGProperty * m_prevParamGridSelection
void onPinModelCombobox(wxCommandEvent &event) override
const SIM_LIBRARY * library() const
SIM_MODEL & curModel() const
SIM_LIB_MGR m_libraryModelsMgr
void onBrowseButtonClick(wxCommandEvent &aEvent) override
void onPinComboboxTextEnter(wxCommandEvent &event) override
void onPinCombobox(wxCommandEvent &event) override
wxPGProperty * m_firstCategory
SCINTILLA_TRICKS * m_scintillaTricksCode
wxString m_inferredValueRestore
std::map< wxString, int > m_modelListBoxEntryToLibraryIdx
void updatePinAssignments(SIM_MODEL *aModel, bool aForceUpdatePins)
void onUpdateUI(wxUpdateUIEvent &aEvent)
DIALOG_SIM_MODEL(wxWindow *aParent, EDA_BASE_FRAME *aFrame, T &aSymbol, std::vector< SCH_FIELD > &aFields)
wxString getModelPinString(SIM_MODEL *aModel, int aModelPinIndex) const
void onPinAssignmentsGridSize(wxSizeEvent &aEvent) override
void updateIbisWidgets(SIM_MODEL *aModel)
void onParamGridSetFocus(wxFocusEvent &aEvent)
void updateModelParamsTab(SIM_MODEL *aModel)
bool TransferDataFromWindow() override
SIM_MODEL::TYPE m_curModelType
void updateModelCodeTab(SIM_MODEL *aModel)
void onSizeParamGrid(wxSizeEvent &event) override
void onPageChanging(wxNotebookEvent &event) override
std::vector< EMBEDDED_FILES * > m_filesStack
void updateDecompositionControls()
void onWaveformChoice(wxCommandEvent &aEvent) override
std::map< SIM_MODEL::DEVICE_T, SIM_MODEL::TYPE > m_curModelTypeOfDeviceType
void onPinModelComboboxTextEnter(wxCommandEvent &event) override
void onLibraryPathTextEnter(wxCommandEvent &aEvent) override
static void RestoreInferredValue(std::vector< SCH_FIELD > &aFields, const wxString &aOriginalValue, bool aOverwritten, bool aStoredInValue)
Restore an inferred passive's Value field after WriteFields().
void onDeviceTypeChoice(wxCommandEvent &aEvent) override
bool TransferDataToWindow() override
void addParamPropertyIfRelevant(SIM_MODEL *aModel, int aParamIndex)
The base frame for deriving all KiCad main window classes.
Add mouse and command handling (such as cut, copy, and paste) to a WX_GRID instance.
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual const wxString What() const
A composite of Problem() and Where()
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
Define a library symbol object.
void AppendParentEmbeddedFiles(std::vector< EMBEDDED_FILES * > &aStack) const
virtual bool ReadSchematicAndLibraries(unsigned aNetlistOptions, REPORTER &aReporter)
Process the schematic and Spice libraries to create net mapping and a list of SPICE_ITEMs.
const std::list< SPICE_ITEM > & GetItems() const
Return the list of items representing schematic symbols in the Spice world.
A singleton reporter that reports to nowhere.
virtual const wxString GetProjectPath() const
Return the full path of the project.
A pure virtual class used to derive REPORTER objects from.
virtual bool HasMessageOfSeverity(int aSeverityMask) const
Returns true if the reporter has one or more messages matching the specified severity mask.
EMBEDDED_FILES * GetEmbeddedFiles() override
Schematic editor (Eeschema) main window.
virtual const wxString & GetText() const override
Return the string associated with the text object.
void SetText(const wxString &aText) override
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
const wxString & GetShownNumber() const
Add cut/copy/paste, dark theme, autocomplete and brace highlighting to a wxStyleTextCtrl instance.
static constexpr auto MODEL_FIELD
static constexpr auto PIN_FIELD
static constexpr auto DIFF_FIELD
bool isPinDiff(const std::string &aComp, const std::string &aPinNumber) const
static constexpr auto LIBRARY_FIELD
static constexpr auto NAME_FIELD
bool SetIbisModel(const SIM_LIBRARY_IBIS &aLib, const std::string &aPinNumber, const std::string &aModelName)
Bind to a KIBIS model, set IO mode from its type, manage sw_state.
std::vector< std::pair< std::string, std::string > > GetIbisPins() const
void SwitchSingleEndedDiff(bool aDiff) override
bool CanDifferential() const
std::vector< std::string > GetIbisModels() const
bool ChangePin(const SIM_LIBRARY_IBIS &aLib, const std::string &aPinNumber)
update the list of available models based on the pin number.
std::string GetComponentName() const
static INFO TypeInfo(TYPE aType)
static bool InferSimModel(const wxString &aPrefix, std::span< const wxString > aPins, std::vector< SCH_FIELD > *aFields, bool aResolve, int aDepth, SIM_VALUE_GRAMMAR::NOTATION aNotation, wxString *aDeviceType, wxString *aModelType, wxString *aModelParams, wxString *aPinMap)
aPins follows lexical symbol-pin number order, including duplicate numbers.
const SPICE_GENERATOR & SpiceGenerator() const
virtual const PARAM & GetParam(unsigned aParamIndex) const
static TYPE ReadTypeFromFields(const std::vector< SCH_FIELD > &aFields, bool aResolve, int aDepth, REPORTER &aReporter)
int GetParamCount() const
void AssignSymbolPinNumberToModelPin(int aPinIndex, const wxString &aSymbolPinNumber)
DEVICE_INFO GetDeviceInfo() const
DEVICE_T GetDeviceType() const
static DEVICE_INFO DeviceInfo(DEVICE_T aDeviceType)
virtual bool HasAutofill() const
const SIM_MODEL_PIN & GetPin(unsigned aIndex) const
virtual bool HasPrimaryValue() const
static std::vector< wxString > PinNumbers(std::span< const SCH_PIN *const > aPins)
const SIM_MODEL::PARAM & GetParam() const
Special netlist exporter flavor that allows one to override simulation commands.
virtual std::string Preview(const SPICE_ITEM &aItem) const
A wrapper for reporting to a wxString object.
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
This file is part of the common library.
static bool empty(const wxTextEntryBase *aCtrl)
bool equivalent(SIM_MODEL::DEVICE_T a, SIM_MODEL::DEVICE_T b)
#define FORCE_REFRESH_FROM_MODEL
SIM_MODEL::PARAM::CATEGORY CATEGORY
static const std::string KiCadUriPrefix
static bool loadLibrary(SYMBOL_LIBRARY_ADAPTER &aAdapter, const wxString &aNickname, std::vector< KI_ERROR > &aErrors)
KICOMMON_API wxFont GetStatusFont(wxWindow *aWindow)
BITMAPS PinShapeGetBitmap(GRAPHIC_PINSHAPE shape)
void SetFieldValue(std::vector< SCH_FIELD > &aFields, const wxString &aFieldName, const std::string &aValue, bool aIsVisible=true, const SCH_SHEET_PATH *aSheetPath=nullptr, const wxString &aVariantName=wxEmptyString)
wxString GetFieldValue(const std::vector< SCH_FIELD > *aFields, FIELD_T aFieldType)
const SCH_FIELD * FindField(const std::vector< SCH_FIELD > &aFields, FIELD_T aFieldId)
#define SIM_REFERENCE_FIELD
#define SIM_DECOMPOSITION_FIELD
#define SIM_DEVICE_SUBTYPE_FIELD
std::vector< FAB_LAYER_COLOR > dummy
int StrNumCmp(const wxString &aString1, const wxString &aString2, bool aIgnoreCase)
Compare two strings with alphanumerical content.
Per-component decomposition descriptor stored in the Sim.Decomposition field.
static SIM_DECOMPOSITION Parse(const wxString &aField)
std::vector< wxString > sharedModelPins
std::vector< std::string > enumValues
static constexpr auto NOT_CONNECTED
const std::string modelPinName
@ REFERENCE
Field Reference of part, i.e. "IC21".
@ VALUE
Field Value of part, i.e. "3.3K".
IbisParser parser & reporter
wxString result
Test unit parsing edge cases and error handling.