34 m_membersGridDirty( false ),
35 m_errorGrid( nullptr ),
51 [
this]( wxCommandEvent& aEvent )
57 [
this]( wxCommandEvent& aEvent )
95 [&](
const std::shared_ptr<BUS_ALIAS>& alias ) ->
bool
97 wxString aName = alias->GetName();
98 std::vector<wxString> aMembers = alias->Members();
100 std::sort( aMembers.begin(), aMembers.end() );
102 for(
const std::shared_ptr<BUS_ALIAS>& candidate :
m_aliases )
104 wxString bName = candidate->GetName();
105 std::vector<wxString> bMembers = candidate->Members();
107 std::sort( bMembers.begin(), bMembers.end() );
109 if( aName == bName && aMembers == bMembers )
121 for(
const std::shared_ptr<BUS_ALIAS>& alias : screen->GetBusAliases() )
123 if( !contains( alias ) )
133 for(
const std::shared_ptr<BUS_ALIAS>& alias :
m_aliases )
159 screen->ClearBusAliases();
161 for(
const std::shared_ptr<BUS_ALIAS>& alias :
m_aliases )
162 alias->GetParent()->AddBusAlias( alias );
208 m_aliasesGrid->MakeCellVisible( std::max( 0, curRow-1 ), 0 );
244 alias->Members().clear();
247 alias->Members().push_back(
m_membersGrid->GetCellValue( ii, 0 ) );
251 m_membersGrid->MakeCellVisible( std::max( 0, curRow-1 ), 0 );
259 int row =
event.GetRow();
263 wxString
name =
event.GetString();
267 if( ii == event.GetRow() )
273 m_errorMsg = wxString::Format(
_(
"Alias name '%s' already in use." ),
name );
289 int row =
event.GetRow();
293 wxString
name =
event.GetString();
297 m_errorMsg =
_(
"Member net/alias name cannot be empty." );
307 alias->Members().clear();
314 wxStringTokenizer tok(
name,
" " );
316 if( tok.CountTokens() > 1 )
322 while( tok.HasMoreTokens() )
323 alias->Members().push_back( tok.GetNextToken() );
327 alias->Members().push_back(
m_membersGrid->GetCellValue( ii, 0 ) );
336 if(
m_lastAlias >= 0 && m_lastAlias < m_aliasesGrid->GetNumberRows() )
340 wxString membersLabel;
342 if( alias->GetParent() )
344 wxFileName sheet_name( alias->GetParent()->GetFileName() );
345 source.Printf( wxS(
"(" ) + sheet_name.GetFullName() + wxS(
")" ) );
358 for(
const wxString& member : alias->Members() )
381 int colSize = std::max(
grid->GetClientSize().x,
grid->GetVisibleWidth( 0 ) );
383 if(
grid->GetColSize( 0 ) != colSize )
384 grid->SetColSize( 0, colSize );
406 wxWindow* topLevelParent = wxGetTopLevelParent(
this );
428 wxGridCellEditor* cellEditor =
m_aliasesGrid->GetCellEditor( row, 0 );
430 if( wxTextEntry* txt =
dynamic_cast<wxTextEntry*
>( cellEditor->GetControl() ) )
431 aliasName = txt->GetValue();
433 cellEditor->DecRef();
440 else if(
m_lastAlias >= 0 && m_lastAlias < m_aliasesGrid->GetNumberRows() )
458 const std::shared_ptr<BUS_ALIAS>& alias =
m_aliases[ row ];
459 alias->SetName( aliasName );
473 for(
const std::shared_ptr<BUS_ALIAS>& alias :
m_aliases )
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap)
Add mouse and command handling (such as cut, copy, and paste) to a WX_GRID instance.
Class PANEL_SETUP_BUSES_BASE.
STD_BITMAP_BUTTON * m_addAlias
wxSimplebook * m_membersBook
STD_BITMAP_BUTTON * m_addMember
STD_BITMAP_BUTTON * m_deleteAlias
wxStaticText * m_membersLabel
STD_BITMAP_BUTTON * m_removeMember
void OnAliasesGridCellChanging(wxGridEvent &event)
std::vector< std::shared_ptr< BUS_ALIAS > > m_aliases
void reloadMembersGridOnIdle(wxIdleEvent &aEvent)
void OnDeleteAlias(wxCommandEvent &aEvent) override
void OnUpdateUI(wxUpdateUIEvent &event) override
void loadAliases(const SCHEMATIC &aSchematic)
void OnSizeGrid(wxSizeEvent &event) override
PANEL_SETUP_BUSES(wxWindow *aWindow, SCH_EDIT_FRAME *aFrame)
bool TransferDataToWindow() override
void ImportSettingsFrom(const SCHEMATIC &aOtherSchematic)
wxString m_membersLabelTemplate
void OnRemoveMember(wxCommandEvent &aEvent) override
void OnMemberGridCellChanging(wxGridEvent &event)
bool TransferDataFromWindow() override
void OnAddMember(wxCommandEvent &aEvent) override
void doReloadMembersGrid()
void OnAddAlias(wxCommandEvent &aEvent) override
Holds all the data relating to one schematic.
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
Container class that holds multiple SCH_SCREEN objects in a hierarchy.
void ClearRows()
wxWidgets recently added an ASSERT which fires if the position is greater than or equal to the number...
bool CommitPendingChanges(bool aQuietMode=false)
Close any open cell edit controls.
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
This file is part of the common library.
KICOMMON_API wxFont GetInfoFont(wxWindow *aWindow)