/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2017 CERN * @author Maciej Suminski * * 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, you may find one here: * https://www.gnu.org/licenses/gpl-3.0.html * or you may search the http://www.gnu.org website for the version 3 license, * or you may write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #include "symbol_tree_pane.h" #include #include #include #include #include #include SYMBOL_TREE_PANE::SYMBOL_TREE_PANE( LIB_EDIT_FRAME* aParent, LIB_MANAGER* aLibMgr ) : wxPanel( aParent ), m_libEditFrame( aParent ), m_tree( nullptr ), m_libMgr( aLibMgr ) { // Create widgets wxBoxSizer* boxSizer = new wxBoxSizer( wxVERTICAL ); m_tree = new LIB_TREE( this, &SYMBOL_LIB_TABLE::GetGlobalLibTable(), m_libMgr->GetAdapter(), LIB_TREE::SEARCH ); boxSizer->Add( m_tree, 1, wxEXPAND, 5 ); SetSizer( boxSizer ); // should remove the previous sizer according to wxWidgets docs Layout(); boxSizer->Fit( this ); // Event handlers Bind( COMPONENT_SELECTED, &SYMBOL_TREE_PANE::onComponentSelected, this ); } SYMBOL_TREE_PANE::~SYMBOL_TREE_PANE() { m_tree->Destroy(); } void SYMBOL_TREE_PANE::Regenerate() { if( m_tree ) m_tree->Regenerate( true ); } void SYMBOL_TREE_PANE::onComponentSelected( wxCommandEvent& aEvent ) { m_libEditFrame->GetToolManager()->RunAction( EE_ACTIONS::editSymbol, true ); // Make sure current-part highlighting doesn't get lost in selection highlighting m_tree->Unselect(); }