/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2018 CERN * Copyright (C) 2021-2022 KiCad Developers, see AUTHORS.txt for contributors. * @author Jon Evans * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 3 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef PANEL_SETUP_BUSES_H #define PANEL_SETUP_BUSES_H #include #include #include class SCH_EDIT_FRAME; class SCH_SCREEN; class BUS_ALIAS; class PANEL_SETUP_BUSES : public PANEL_SETUP_BUSES_BASE { public: PANEL_SETUP_BUSES( wxWindow* aWindow, SCH_EDIT_FRAME* aFrame ); ~PANEL_SETUP_BUSES(); bool TransferDataFromWindow() override; bool TransferDataToWindow() override; protected: void OnAddAlias( wxCommandEvent& aEvent ) override; void OnDeleteAlias( wxCommandEvent& aEvent ) override; void OnAddMember( wxCommandEvent& aEvent ) override; void OnRemoveMember( wxCommandEvent& aEvent ) override; void OnAliasesGridCellChanging( wxGridEvent& event ); void OnMemberGridCellChanging( wxGridEvent& event ); void OnSizeGrid( wxSizeEvent& event ) override; void OnUpdateUI( wxUpdateUIEvent& event ) override; void reloadMembersGridOnIdle( wxIdleEvent& aEvent ); void doReloadMembersGrid(); private: SCH_EDIT_FRAME* m_frame; wxString m_membersLabelTemplate; std::vector< std::shared_ptr > m_aliases; int m_lastAlias; wxString m_lastAliasName; bool m_membersGridDirty; wxString m_errorMsg; WX_GRID* m_errorGrid; int m_errorRow; }; #endif // PANEL_SETUP_BUSES_H