41#include <wx/settings.h>
55#define DEFAULT_FONT_NAME _( "Default Font" )
73 std::vector<wxString> expanded =
pin->GetStackedPinNumbers( &valid );
75 if( valid && !expanded.empty() )
77 for(
const wxString& number : expanded )
78 pins.push_back( number +
' ' +
pin->GetShownName() );
82 pins.push_back(
pin->GetNumber() +
' ' +
pin->GetShownName() );
89 wxString pinList = wxJoin( pins,
'\t' );
90 wxLogTrace(
"FOOTPRINT_CHOOSER", wxS(
"Chooser payload pins: %s" ), pinList );
100 if( !fpFilters.IsEmpty() )
112 if( aSymbols.empty() || !aSymbols.front() )
113 return wxEmptyString;
117 for(
size_t i = 1; i < aSymbols.size(); ++i )
122 return wxEmptyString;
125 return symbolNetlist;
130 std::vector<EMBEDDED_FILES*> aFilesStack ) :
168 m_ownedPart = std::make_unique<LIB_SYMBOL>( *libSymbol );
169 m_part = m_ownedPart.get();
221 int mandatoryRows = 0;
229 return mandatoryRows;
235 std::vector<SCH_FIELD>::push_back( aField );
306 wxString wildCard(
_(
"Schematic Files" ) );
307 std::vector<std::string> exts;
316 m_boolAttr->SetRenderer(
new wxGridCellBoolRenderer() );
317 m_boolAttr->SetEditor(
new wxGridCellBoolEditor() );
318 m_boolAttr->SetAlignment( wxALIGN_CENTER, wxALIGN_CENTER );
320 wxArrayString vAlignNames;
321 vAlignNames.Add(
_(
"Top" ) );
322 vAlignNames.Add(
_(
"Center" ) );
323 vAlignNames.Add(
_(
"Bottom" ) );
325 m_vAlignAttr->SetEditor(
new wxGridCellChoiceEditor( vAlignNames ) );
326 m_vAlignAttr->SetAlignment( wxALIGN_CENTER, wxALIGN_CENTER );
328 wxArrayString hAlignNames;
329 hAlignNames.Add(
_(
"Left" ) );
330 hAlignNames.Add(
_(
"Center" ) );
331 hAlignNames.Add(
_(
"Right" ) );
333 m_hAlignAttr->SetEditor(
new wxGridCellChoiceEditor( hAlignNames ) );
334 m_hAlignAttr->SetAlignment( wxALIGN_CENTER, wxALIGN_CENTER );
336 wxArrayString orientationNames;
337 orientationNames.Add(
_(
"Horizontal" ) );
338 orientationNames.Add(
_(
"Vertical" ) );
344 wxArrayString existingNetclasses;
347 std::vector<std::string> fontNames;
353 const std::shared_ptr<NET_SETTINGS>& settings = projectFile.
NetSettings();
355 existingNetclasses.push_back( settings->GetDefaultNetclass()->GetName() );
357 for(
const auto& [
name, netclass] : settings->GetNetclasses() )
358 existingNetclasses.push_back(
name );
362 const std::vector<wxString>* fontFiles =
nullptr;
365 fontFiles =
m_frame->GetScreen()->Schematic()->GetEmbeddedFiles()->GetFontFiles();
367 Fontconfig()->ListFonts( fontNames, std::string(
Pgm().GetLanguageTag().utf8_str() ),
372 const std::vector<wxString>* fontFiles =
m_part->GetEmbeddedFiles()->UpdateFontFiles();
376 Fontconfig()->ListFonts( fontNames, std::string(
Pgm().GetLanguageTag().utf8_str() ),
377 fontFiles, !fontFiles->empty() );
383 for(
const std::string&
name : fontNames )
397 m_eval = std::make_unique<NUMERIC_EVALUATOR>(
m_frame->GetUserUnits() );
424 field.SetParent(
nullptr );
433 GetView()->ForceRefresh();
469 return (
int) this->size();
485 if( visibleRow == aRow )
491 wxFAIL_MSG( wxT(
"Row index off end of visible row count" ) );
494 return this->at( aRow );
518 default: wxFAIL;
return wxEmptyString;
537 return aTypeName == wxGRID_VALUE_STRING;
545 return aTypeName == wxGRID_VALUE_BOOL;
565 wxGridCellAttr* attr =
nullptr;
573 attr->SetReadOnly(
true );
636 m_frame->Prj().GetProjectFile().m_TemplateFieldNames.GetFieldName( fn );
704 wxGridCellAttr* text_attr = attr ? attr->Clone() :
new wxGridCellAttr;
707 if( !text_attr->HasFont() )
708 font = wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT );
710 font = text_attr->GetFont();
713 text_attr->SetFont( font );
714 text_attr->SetTextColour( wxSystemSettings::GetColour( wxSYS_COLOUR_GRAYTEXT ) );
730 wxGrid*
grid = GetView();
733 if(
grid->GetGridCursorRow() == aRow &&
grid->GetGridCursorCol() == aCol
734 &&
grid->IsCellEditControlShown() )
801 return _(
"Horizontal" );
803 return _(
"Vertical" );
832 return wxT(
"bad wxWidgets!" );
850 wxFAIL_MSG( wxString::Format( wxT(
"column %d doesn't hold a bool value" ), aCol ) );
861 wxString value = aValue;
864 value.Trim(
true ).Trim(
false );
870 if(
m_eval->Process( value ) )
912 if( value ==
_(
"Left" ) )
914 else if( value ==
_(
"Center" ) )
916 else if( value ==
_(
"Right" ) )
934 if( value ==
_(
"Top" ) )
936 else if( value ==
_(
"Center" ) )
938 else if( value ==
_(
"Bottom" ) )
965 if( value ==
_(
"Horizontal" ) )
967 else if( value ==
_(
"Vertical" ) )
970 wxFAIL_MSG( wxT(
"unknown orientation: " ) + value );
979 pos.
x =
m_frame->ValueFromString( value );
981 pos.
y =
m_frame->ValueFromString( value );
1009 wxFAIL_MSG( wxString::Format( wxT(
"column %d doesn't hold a string value" ), aCol ) );
1015 GetView()->Refresh();
1051 wxFAIL_MSG( wxString::Format( wxT(
"column %d doesn't hold a bool value" ), aCol ) );
1070 if( aValue == wxS(
"1" ) )
1074 else if( aValue == wxS(
"0" ) )
1080 wxFAIL_MSG( wxString::Format(
"string '%s' can't be converted to boolean correctly and "
1081 "will be perceived as FALSE", aValue ) );
1091 if( field.
GetId() == aFieldId )
1101 for(
int ii = 0; ii < (int) this->size(); ++ii )
1103 if( this->at( ii ).GetId() == aFieldId )
1113 back().SetParent(
m_part );
1135 std::vector<SCH_FIELD>::erase( begin() + aRow );
1141 wxCHECK( a < this->size() && b < this->size(), );
1146 std::swap( at( a ), at( b ) );
1179 menu.AppendSeparator();
1186 menu.AppendSeparator();
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...
bool IsHorizontal() const
virtual void SetParent(EDA_ITEM *aParent)
void SetTextColor(const COLOR4D &aColor)
COLOR4D GetTextColor() const
virtual VECTOR2I GetTextPos() const
virtual void SetTextSize(VECTOR2I aNewSize, bool aEnforceMinTextSize=true)
virtual bool IsVisible() const
virtual void SetTextPos(const VECTOR2I &aPoint)
virtual int GetTextHeight() const
KIFONT::FONT * GetFont() const
void SetVertJustify(GR_TEXT_V_ALIGN_T aType)
virtual void SetVisible(bool aVisible)
static GR_TEXT_H_ALIGN_T MapHorizJustify(int aHorizJustify)
virtual EDA_ANGLE GetTextAngle() const
void SetBold(bool aBold)
Set the text to be bold - this will also update the font if needed.
static GR_TEXT_V_ALIGN_T MapVertJustify(int aVertJustify)
virtual void SetTextAngle(const EDA_ANGLE &aAngle)
void SetItalic(bool aItalic)
Set the text to be italic - this will also update the font if needed.
void SetFont(KIFONT::FONT *aFont)
void SetHorizJustify(GR_TEXT_H_ALIGN_T aType)
wxGridCellAttr * GetAttr(int aRow, int aCol, wxGridCellAttr::wxAttrKind aKind) override
std::vector< bool > m_isInherited
bool IsInherited(size_t aRow) const
SCH_FIELD * GetField(FIELD_T aFieldId)
wxString StringFromBool(bool aValue) const
bool GetValueAsBool(int aRow, int aCol) override
FIELD_VALIDATOR m_fieldNameValidator
bool CanSetValueAs(int aRow, int aCol, const wxString &aTypeName) override
void initGrid(WX_GRID *aGrid)
wxGridCellAttr * m_fieldNameAttr
int getColumnCount() const
int GetNumberRows() override
void push_back(const SCH_FIELD &field)
wxGridCellAttr * m_readOnlyAttr
int GetMandatoryRowCount() const
FIELDS_GRID_TABLE(DIALOG_SHIM *aDialog, SCH_BASE_FRAME *aFrame, WX_GRID *aGrid, LIB_SYMBOL *aSymbol, std::vector< EMBEDDED_FILES * > aFilesStack={})
FIELD_VALIDATOR m_urlValidator
~FIELDS_GRID_TABLE() override
bool CanGetValueAs(int aRow, int aCol, const wxString &aTypeName) override
wxGridCellAttr * m_colorAttr
wxGridCellAttr * m_nonUrlAttr
bool EraseRow(size_t row)
wxGridCellAttr * m_referenceAttr
FIELD_VALIDATOR m_referenceValidator
FIELD_VALIDATOR m_valueValidator
std::map< std::pair< int, int >, wxString > m_evalOriginal
int getVisibleRowCount() const
wxGridCellAttr * m_footprintAttr
wxGridCellAttr * m_boolAttr
std::vector< EMBEDDED_FILES * > m_filesStack
int GetFieldRow(FIELD_T aFieldId)
bool BoolFromString(const wxString &aValue) const
wxGridCellAttr * m_fontAttr
wxGridCellAttr * m_urlAttr
wxGridCellAttr * m_valueAttr
wxGridCellAttr * m_hAlignAttr
void AddInheritedField(const SCH_FIELD &aParent)
wxGridCellAttr * m_orientationAttr
void SetValue(int aRow, int aCol, const wxString &aValue) override
wxGridCellAttr * m_vAlignAttr
wxGridCellAttr * m_filepathAttr
SCH_FIELD & getField(int aRow)
wxGridCellAttr * m_netclassAttr
void SetValueAsBool(int aRow, int aCol, bool aValue) override
wxString GetValue(int aRow, int aCol) override
void SwapRows(size_t a, size_t b)
void onUnitsChanged(wxCommandEvent &aEvent)
std::unique_ptr< NUMERIC_EVALUATOR > m_eval
std::vector< SCH_FIELD > m_parentFields
FIELD_VALIDATOR m_nonUrlValidator
FIELD_VALIDATOR m_filepathValidator
wxString GetColLabelValue(int aCol) override
void showPopupMenu(wxMenu &menu, wxGridEvent &aEvent) override
int getFieldRow(FIELD_T aFieldId)
std::vector< EMBEDDED_FILES * > m_filesStack
void doPopupSelection(wxCommandEvent &event) override
Editor for wxGrid cells that adds a file/folder browser to the grid input field.
This class works around a bug in wxGrid where the first keystroke doesn't get sent through the valida...
virtual void SetValidator(const wxValidator &validator) override
virtual void doPopupSelection(wxCommandEvent &event)
virtual void showPopupMenu(wxMenu &menu, wxGridEvent &aEvent)
WX_GRID * m_grid
I don't own the grid, but he owns me.
static FONT * GetFont(const wxString &aFontName=wxEmptyString, bool aBold=false, bool aItalic=false, const std::vector< wxString > *aEmbeddedFiles=nullptr, bool aForDrawingSheet=false)
const wxString & GetName() const
wxString ToCSSString() const
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
Define a library symbol object.
std::vector< const SCH_PIN * > GetGraphicalPins(int aUnit=0, int aBodyStyle=0) const
Graphical pins: Return schematic pin objects as drawn (unexpanded), filtered by unit/body.
wxArrayString GetFPFilters() const
The backing store for a PROJECT, in JSON format.
std::shared_ptr< NET_SETTINGS > & NetSettings()
static SEARCH_STACK * SchSearchS(PROJECT *aProject)
Accessor for Eeschema search stack.
virtual PROJECT_FILE & GetProjectFile() const
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...
Schematic editor (Eeschema) main window.
GR_TEXT_V_ALIGN_T GetEffectiveVertJustify() const
bool HasHypertext() const override
Indicates that the item has at least one hypertext action.
bool IsHorizJustifyFlipped() const
Return whether the field will be rendered with the horizontal justification inverted due to rotation ...
bool IsVertJustifyFlipped() const
virtual const wxString & GetText() const override
Return the string associated with the text object.
void SetCanAutoplace(bool aCanPlace)
wxString GetUntranslatedName() const
Get the untranslated field name for storage, variable look-up, etc.
GR_TEXT_H_ALIGN_T GetEffectiveHorizJustify() const
wxString GetName(bool aUseDefaultName=true) const
Return the field name (not translated).
void SetName(const wxString &aName)
bool CanAutoplace() const
void SetText(const wxString &aText) override
void OnScintillaCharAdded(SCINTILLA_TRICKS *aScintillaTricks, wxStyledTextEvent &aEvent) const
void SetNameShown(bool aShown=true)
void SetPrivate(bool aPrivate)
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
static const wxString GetDefaultFieldName(const wxString &aName, bool aUseDefaultName)
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
std::unique_ptr< LIB_SYMBOL > & GetLibSymbolRef()
Add cut/copy/paste, dark theme, autocomplete and brace highlighting to a wxStyleTextCtrl instance.
Look for files in a number of paths.
wxGridCellAttr * enhanceAttr(wxGridCellAttr *aInputAttr, int aRow, int aCol, wxGridCellAttr::wxAttrKind aKind)
void SetupColumnAutosizer(int aFlexibleCol)
Set autosize behaviour using wxFormBuilder column widths as minimums, with a single specified growabl...
wxString EnsureFileExtension(const wxString &aFilename, const wxString &aExtension)
It's annoying to throw up nag dialogs when the extension isn't right.
static constexpr EDA_ANGLE ANGLE_VERTICAL
static constexpr EDA_ANGLE ANGLE_HORIZONTAL
bool GetAssociatedDocument(wxWindow *aParent, const wxString &aDocName, PROJECT *aProject, SEARCH_STACK *aPaths, std::vector< EMBEDDED_FILES * > aFilesStack)
Open a document (file) with the suitable browser.
This file is part of the common library.
#define DEFAULT_FONT_NAME
wxString BuildFootprintChooserSymbolNetlist(const LIB_SYMBOL *aSymbol)
@ FDC_SYMBOL_EDITOR_COUNT
wxString BuildFootprintChooserSymbolNetlist(const LIB_SYMBOL *aSymbol)
FONTCONFIG * Fontconfig()
bool SelectFootprintFromChooser(DIALOG_SHIM *aDialog, wxString &aFootprint, const wxString &aSymbolNetlist)
@ GRIDTRICKS_FIRST_CLIENT_ID
static const std::string KiCadSchematicFileExtension
@ USER
The main config directory (e.g. ~/.config/kicad/)
PGM_BASE & Pgm()
The global program "get" accessor.
Definitions of control validators for schematic dialogs.
wxString UnescapeString(const wxString &aSource)
wxString ConvertPathToFileUri(const wxString &aPath, const PROJECT *aProject)
Convert a file path to a file:// URI.
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
Hold a name of a symbol's field, field value, and default visibility.
wxString GetDefaultFieldName(FIELD_T aFieldId, TRANSLATION aTranslation)
Return a default symbol field name for a mandatory field type.
FIELD_T
The set of all field indices assuming an array like sequence that a SCH_COMPONENT or LIB_PART can hol...
@ FOOTPRINT
Field Name Module PCB, i.e. "16DIP300".
@ DATASHEET
name of datasheet
@ REFERENCE
Field Reference of part, i.e. "IC21".
@ VALUE
Field Value of part, i.e. "3.3K".
GR_TEXT_H_ALIGN_T
This is API surface mapped to common.types.HorizontalAlignment.
@ GR_TEXT_H_ALIGN_INDETERMINATE
GR_TEXT_V_ALIGN_T
This is API surface mapped to common.types.VertialAlignment.
@ GR_TEXT_V_ALIGN_INDETERMINATE
#define INDETERMINATE_STATE
Used for holding indeterminate values, such as with multiple selections holding different values or c...
Custom text control validator definitions.
VECTOR2< int32_t > VECTOR2I
wxString AddFileExtListToFilter(const std::vector< std::string > &aExts)
Build the wildcard extension file dialog wildcard filter to add to the base message dialog.
Definition of file extensions used in Kicad.