49 m_currentLabel( aLabel ),
50 m_activeTextEntry( nullptr ),
51 m_netNameValidator( true ),
53 m_textSize( aParent, m_textSizeLabel, m_textSizeCtrl, m_textSizeUnits, false ),
54 m_helpWindow( nullptr )
58 bool multiLine =
false;
61 multiLine = cfg->m_Appearance.edit_label_multiple;
78 if( multiLine && aNew )
100 if( multiLine && aNew )
139 case SCH_LABEL_T: SetTitle(
_(
"Label Properties" ) );
break;
141 case SCH_SHEET_PIN_T: SetTitle(
_(
"Hierarchical Sheet Pin Properties" ) );
break;
146 m_grid->SetDefaultRowSize(
m_grid->GetDefaultRowSize() + 4 );
150 [&]( wxCommandEvent& aEvent )
154 m_grid->SetSelectionMode( wxGrid::wxGridSelectRows );
224 wxEXPAND | wxRIGHT, 5 );
239 wxSizer* parentSizer =
m_autoRotate->GetContainingSizer();
241 parentSizer->Layout();
260 if( cfg->m_Appearance.edit_label_width > 0 && cfg->m_Appearance.edit_label_height > 0 )
261 SetSize( cfg->m_Appearance.edit_label_width, cfg->m_Appearance.edit_label_height );
275 cfg->m_Appearance.edit_label_width = GetSize().x;
276 cfg->m_Appearance.edit_label_height = GetSize().y;
277 cfg->m_Appearance.edit_label_multiple =
m_cbMultiLine->IsChecked();
284 m_grid->PopEventHandler(
true );
296 if( !wxDialog::TransferDataToWindow() )
313 std::set<wxString> existingLabels;
314 std::vector<std::shared_ptr<BUS_ALIAS>> busAliases;
360 auto& sheetAliases = screen->GetBusAliases();
361 busAliases.insert( busAliases.end(), sheetAliases.begin(), sheetAliases.end() );
365 for(
const std::shared_ptr<BUS_ALIAS>& busAlias : busAliases )
366 existingLabels.insert( wxT(
"{" ) + busAlias->GetName() + wxT(
"}" ) );
368 for(
const wxString& label : existingLabels )
386 wxGridTableMessage msg(
m_fields, wxGRIDTABLE_NOTIFY_ROWS_APPENDED, (
int)
m_fields->size() );
387 m_grid->ProcessTableMessage( msg );
394 case LABEL_FLAG_SHAPE::L_INPUT:
m_input->SetValue(
true );
break;
395 case LABEL_FLAG_SHAPE::L_OUTPUT:
m_output->SetValue(
true );
break;
396 case LABEL_FLAG_SHAPE::L_BIDI:
m_bidirectional->SetValue(
true );
break;
397 case LABEL_FLAG_SHAPE::L_TRISTATE:
m_triState->SetValue(
true );
break;
398 case LABEL_FLAG_SHAPE::L_UNSPECIFIED:
m_passive->SetValue(
true );
break;
399 case LABEL_FLAG_SHAPE::F_DOT:
m_dot->SetValue(
true );
break;
400 case LABEL_FLAG_SHAPE::F_ROUND:
m_circle->SetValue(
true );
break;
401 case LABEL_FLAG_SHAPE::F_DIAMOND:
m_diamond->SetValue(
true );
break;
402 case LABEL_FLAG_SHAPE::F_RECTANGLE:
m_rectangle->SetValue(
true );
break;
434 wxPostEvent(
this, wxCommandEvent( wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK ) );
440 if( aEvent.GetKeyCode() == WXK_TAB )
442 if( aEvent.ShiftDown() )
448 m_grid->SetFocusFromKbd();
449 m_grid->MakeCellVisible( 0, 0 );
450 m_grid->SetGridCursor( 0, 0 );
475 for(
size_t i = 0; i < a->size() && i < b.size(); ++i )
490 if( !wxDialog::TransferDataFromWindow() )
516 text.Replace( wxS(
"\r" ), wxS(
"\n" ) );
533 if( field.GetCanonicalName() == wxT(
"Netclass" ) )
537 else if( field.GetId() == FIELD_T::INTERSHEET_REFS )
542 "controlled globally from "
543 "Schematic Setup > General > Formatting" ) );
561 const wxString& fieldText = field.
GetText();
563 if( fieldName.IsEmpty() && fieldText.IsEmpty() )
568 else if( fieldName == wxT(
"Netclass" ) && fieldText.IsEmpty() )
571 int netclassFieldCount = 0;
575 if(
m_fields->at( jj ).GetCanonicalName() == wxT(
"Netclass" ) )
576 netclassFieldCount++;
579 if( netclassFieldCount > 1 )
582 else if( fieldName.IsEmpty() )
593 if( !field.IsMandatory() )
594 field.SetOrdinal( ordinal++ );
611 else if(
m_dot->GetValue() )
668 if( !commit.
Empty() )
669 commit.
Push(
_(
"Edit Label Properties" ) );
675 text.Replace( wxS(
"\r" ), wxS(
"\n" ) );
676 wxArrayString lines = wxSplit(
text,
'\n' );
678 for(
const wxString& line : lines )
681 text.Trim(
false ).Trim(
true );
695 m_labelList->push_back( std::unique_ptr<SCH_LABEL_BASE>( label ) );
702 m_labelList->push_back( std::unique_ptr<SCH_LABEL_BASE>( label ) );
709 m_labelList->push_back( std::unique_ptr<SCH_LABEL_BASE>( label ) );
721 m_labelList->push_back( std::unique_ptr<SCH_LABEL_BASE>( label ) );
732 if( btn->IsChecked() && btn != aEvent.GetEventObject() )
749 wxString fieldName = wxT(
"Netclass" );
753 if( field.GetId() != FIELD_T::INTERSHEET_REFS && field.GetName() != wxT(
"Netclass" ) )
755 fieldName = wxEmptyString;
780 wxGridTableMessage msg(
m_fields, wxGRIDTABLE_NOTIFY_ROWS_APPENDED, 1 );
781 m_grid->ProcessTableMessage( msg );
786 m_grid->EnableCellEditControl();
787 m_grid->ShowCellEditControl();
793 wxArrayInt selectedRows =
m_grid->GetSelectedRows();
795 if( selectedRows.empty() &&
m_grid->GetGridCursorRow() >= 0 )
796 selectedRows.push_back(
m_grid->GetGridCursorRow() );
798 if( selectedRows.empty() )
801 for(
int row : selectedRows )
803 if( row < m_currentLabel->GetMandatoryFieldCount() )
813 selectedRows.Sort( [](
int* first,
int* second )
815 return *second - *first;
818 for(
int row : selectedRows )
821 m_grid->DeselectRow( row );
825 wxGridTableMessage msg(
m_fields, wxGRIDTABLE_NOTIFY_ROWS_DELETED, row, 1 );
826 m_grid->ProcessTableMessage( msg );
828 if(
m_grid->GetNumberRows() > 0 )
830 m_grid->MakeCellVisible( std::max( 0, row-1 ),
m_grid->GetGridCursorCol() );
831 m_grid->SetGridCursor( std::max( 0, row-1 ),
m_grid->GetGridCursorCol() );
842 int i =
m_grid->GetGridCursorRow();
851 m_grid->SetGridCursor( i - 1,
m_grid->GetGridCursorCol() );
866 int i =
m_grid->GetGridCursorRow();
875 m_grid->SetGridCursor( i + 1,
m_grid->GetGridCursorCol() );
889 aWidth -= (
m_grid->GetSize().x -
m_grid->GetClientSize().x );
891 m_grid->AutoSizeColumn( 0 );
892 m_grid->SetColSize( 0, std::max( 72,
m_grid->GetColSize( 0 ) ) );
894 int fixedColsWidth =
m_grid->GetColSize( 0 );
896 for(
int i = 2; i <
m_grid->GetNumberCols(); i++ )
897 fixedColsWidth +=
m_grid->GetColSize( i );
899 m_grid->SetColSize( 1, std::max( 120, aWidth - fixedColsWidth ) );
911 if( !
m_grid->IsCellEditControlShown() )
930 int new_size =
event.GetSize().GetX();
960 static bool isFiltering =
false;
975 long insertionPoint =
m_valueCombo->GetInsertionPoint();
977 wxArrayString filteredLabels;
979 if( currentLabelText.IsEmpty() )
987 wxString filterText = currentLabelText.Lower();
990 std::back_inserter( filteredLabels ),
991 [&filterText](
const wxString& label )
993 return label.Lower().Contains( filterText );
1008 isFiltering =
false;
1038 m_valueCombo->SetValue( multiText.BeforeFirst(
'\n' ) );
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
Color settings are a bit different than most of the settings objects in that there can be more than o...
COLOR4D GetColor(int aLayer) const
void SetSwatchColor(const KIGFX::COLOR4D &aColor, bool aSendEvent)
Set the current swatch color directly.
KIGFX::COLOR4D GetSwatchColor() const
void SetDefaultColor(const KIGFX::COLOR4D &aColor)
Sets the color that will be chosen with the "Reset to Default" button in the chooser.
void SetSwatchBackground(const KIGFX::COLOR4D &aBackground)
Set the swatch background color.
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Modify a given item in the model.
Class DIALOG_LABEL_PROPERTIES_BASE.
wxStaticText * m_textSizeLabel
wxRadioButton * m_triState
COLOR_SWATCH * m_textColorSwatch
STD_BITMAP_BUTTON * m_bpMoveUp
wxFlexGridSizer * m_textEntrySizer
wxStaticText * m_labelMultiLine
wxStaticBoxSizer * m_shapeSizer
wxRadioButton * m_diamond
BITMAP_BUTTON * m_separator3
wxTextCtrl * m_valueMultiLine
STD_BITMAP_BUTTON * m_bpAdd
wxHyperlinkCtrl * m_syntaxHelp
wxRadioButton * m_rectangle
wxStaticText * m_labelCombo
wxComboBox * m_valueCombo
wxStaticText * m_labelSingleLine
wxRadioButton * m_passive
wxCheckBox * m_cbMultiLine
STD_BITMAP_BUTTON * m_bpMoveDown
STD_BITMAP_BUTTON * m_bpDelete
BITMAP_BUTTON * m_separator1
wxTextCtrl * m_textSizeCtrl
wxCheckBox * m_autoRotate
wxGridBagSizer * m_formattingGB
wxRadioButton * m_bidirectional
BITMAP_BUTTON * m_separator2
wxStaticText * m_fontLabel
wxTextCtrl * m_valueSingleLine
void OnLabelItemSelected(wxCommandEvent &event)
Handles the selection of an item from the wxComboBox dropdown.
HTML_MESSAGE_BOX * m_helpWindow
std::list< std::unique_ptr< SCH_LABEL_BASE > > * m_labelList
wxString m_previousLabelText
void OnSizeGrid(wxSizeEvent &event) override
~DIALOG_LABEL_PROPERTIES()
wxTextEntry * m_activeTextEntry
SCH_LABEL_BASE * m_currentLabel
void OnMoveUp(wxCommandEvent &event) override
void OnMoveDown(wxCommandEvent &event) override
DIALOG_LABEL_PROPERTIES(SCH_EDIT_FRAME *parent, SCH_LABEL_BASE *aLabel, bool aNew)
void OnEnterKey(wxCommandEvent &aEvent) override
wxEVT_COMMAND_ENTER event handler for single-line control.
std::bitset< 64 > m_shownColumns
void OnAddField(wxCommandEvent &event) override
void AdjustGridColumns(int aWidth)
SCH_NETNAME_VALIDATOR m_netNameValidator
void OnFormattingHelp(wxHyperlinkEvent &aEvent) override
bool TransferDataFromWindow() override
wxArrayString m_existingLabelArray
void OnUpdateUI(wxUpdateUIEvent &event) override
void onSpinButton(wxCommandEvent &aEvent)
void onMultiLabelCheck(wxCommandEvent &aEvent) override
FIELDS_GRID_TABLE * m_fields
void OnDeleteField(wxCommandEvent &event) override
void OnLabelFilter(wxCommandEvent &event)
Handles the filtering of items in the wxComboBox based on user input.
void OnValueCharHook(wxKeyEvent &aEvent) override
bool TransferDataToWindow() override
SCH_EDIT_FRAME * m_Parent
void SetInitialFocus(wxWindow *aWindow)
Sets the window (usually a wxTextCtrl) that should be focused when the dialog is shown.
void SetupStandardButtons(std::map< int, wxString > aLabels={})
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
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
EDA_ITEM_FLAGS GetEditFlags() const
KICAD_T Type() const
Returns the type of object.
void SetTextColor(const COLOR4D &aColor)
COLOR4D GetTextColor() const
const EDA_ANGLE & GetTextAngle() const
void SetTextSize(VECTOR2I aNewSize, bool aEnforceMinTextSize=true)
virtual const wxString & GetText() const
Return the string associated with the text object.
KIFONT::FONT * GetFont() const
void Offset(const VECTOR2I &aOffset)
GR_TEXT_H_ALIGN_T GetHorizJustify() const
virtual void SetVisible(bool aVisible)
void SetBold(bool aBold)
Set the text to be bold - this will also update the font if needed.
GR_TEXT_V_ALIGN_T GetVertJustify() const
virtual void SetText(const wxString &aText)
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)
int GetNumberRows() override
void SetFontSelection(KIFONT::FONT *aFont, bool aSilentMode=false)
Set the selection in wxChoice widget.
KIFONT::FONT * GetFontSelection(bool aBold, bool aItalic, bool aForDrawingSheet=false) const
bool HaveFontSelection() const
APP_SETTINGS_BASE * KifaceSettings() const
A color representation with 4 components: red, green, blue, alpha.
bool m_IntersheetRefsShow
SCHEMATIC_SETTINGS & Settings() const
wxString ConvertKIIDsToRefs(const wxString &aSource) const
wxString ConvertRefsToKIIDs(const wxString &aSource) const
SCH_DRAW_PANEL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
COLOR_SETTINGS * GetColorSettings(bool aForceRefresh=false) const override
Returns a pointer to the active color theme settings.
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
void AutoRotateItem(SCH_SCREEN *aScreen, SCH_ITEM *aItem)
Automatically set the rotation of an item (if the item supports it).
VECTOR2I GetPosition() const override
wxString GetCanonicalName() const
Get a non-language-specific name for a field which can be used for storage, variable look-up,...
void SetName(const wxString &aName)
Base class for any item which can be embedded within the SCHEMATIC container class,...
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
void SetFieldsAutoplaced(AUTOPLACE_ALGO aAlgo)
AUTOPLACE_ALGO GetFieldsAutoplaced() const
Return whether the fields have been automatically placed.
void SetFields(const std::vector< SCH_FIELD > &aFields)
Set multiple schematic fields.
bool AutoRotateOnPlacement() const
autoRotateOnPlacement
SPIN_STYLE GetSpinStyle() const
void SetShape(LABEL_FLAG_SHAPE aShape)
LABEL_FLAG_SHAPE GetShape() const
virtual bool AutoRotateOnPlacementSupported() const =0
void SetAutoRotateOnPlacement(bool autoRotate=true)
static const wxString GetDefaultFieldName(const wxString &aName, bool aUseDefaultName)
void AutoplaceFields(SCH_SCREEN *aScreen, AUTOPLACE_ALGO aAlgo) override
virtual int GetMandatoryFieldCount()
std::vector< SCH_FIELD > & GetFields()
virtual wxString GetClass() const override=0
Return the class name.
virtual void SetSpinStyle(SPIN_STYLE aSpinStyle)
Container class that holds multiple SCH_SCREEN objects in a hierarchy.
bool IsSymbolLikePowerGlobalLabel() const
bool IsSymbolLikePowerLocalLabel() const
SCH_FIELD * GetField(FIELD_T aFieldType)
Return a mandatory field in this symbol.
static HTML_MESSAGE_BOX * ShowSyntaxHelp(wxWindow *aParentWindow)
VECTOR2I GetPosition() const override
virtual bool Validate(double aMin, double aMax, EDA_UNITS aUnits=EDA_UNITS::UNSCALED)
Validate the control against the given range, informing the user of any errors found.
virtual void SetValue(long long int aValue)
Set new value (in Internal Units) for the text field, taking care of units conversion.
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 DisplayInfoMessage(wxWindow *aParent, const wxString &aMessage, const wxString &aExtraInfo)
Display an informational message box with aMessage.
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
This file is part of the common library.
static bool positioningChanged(const SCH_FIELD &a, const SCH_FIELD &b)
@ LAYER_SCHEMATIC_BACKGROUND
#define UNIMPLEMENTED_FOR(type)
wxString UnescapeString(const wxString &aSource)
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
@ SCH_SYMBOL_LOCATE_POWER_T
VECTOR2< int32_t > VECTOR2I