2017-11-12 17:55:20 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017 CERN
|
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
#include "symbol_tree_pane.h"
|
2017-11-12 17:55:20 +00:00
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
#include <widgets/lib_tree.h>
|
2017-11-12 17:55:20 +00:00
|
|
|
#include <eeschema_id.h>
|
|
|
|
#include <lib_manager.h>
|
2018-01-30 10:49:51 +00:00
|
|
|
#include <lib_edit_frame.h>
|
2017-11-12 17:55:20 +00:00
|
|
|
#include <symbol_lib_table.h>
|
2018-01-07 12:18:18 +00:00
|
|
|
#include <menus_helpers.h>
|
2017-11-12 17:55:20 +00:00
|
|
|
|
2017-11-30 11:31:36 +00:00
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
SYMBOL_TREE_PANE::SYMBOL_TREE_PANE( LIB_EDIT_FRAME* aParent, LIB_MANAGER* aLibMgr )
|
2017-11-12 17:55:20 +00:00
|
|
|
: wxPanel( aParent ),
|
2017-11-30 11:31:36 +00:00
|
|
|
m_libEditFrame( aParent ), m_tree( nullptr ), m_libMgr( aLibMgr )
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
|
|
|
// Create widgets
|
|
|
|
wxBoxSizer* boxSizer = new wxBoxSizer( wxVERTICAL );
|
2018-07-27 20:47:51 +00:00
|
|
|
m_tree = new LIB_TREE( this, &SYMBOL_LIB_TABLE::GetGlobalLibTable(),
|
|
|
|
m_libMgr->GetAdapter(), LIB_TREE::SEARCH );
|
2018-07-24 21:16:59 +00:00
|
|
|
boxSizer->Add( m_tree, 1, wxEXPAND, 5 );
|
2017-11-12 17:55:20 +00:00
|
|
|
|
2017-11-30 11:31:36 +00:00
|
|
|
SetSizer( boxSizer ); // should remove the previous sizer according to wxWidgets docs
|
2017-11-12 17:55:20 +00:00
|
|
|
Layout();
|
|
|
|
boxSizer->Fit( this );
|
|
|
|
|
|
|
|
// Setup right click-context menus
|
|
|
|
std::unique_ptr<wxMenu> menuLibrary = std::make_unique<wxMenu>();
|
2018-01-07 12:18:18 +00:00
|
|
|
|
|
|
|
AddMenuItem( menuLibrary.get(), ID_LIBEDIT_NEW_LIBRARY, _( "&New Library..." ),
|
|
|
|
KiBitmap( new_library_xpm ) );
|
|
|
|
AddMenuItem( menuLibrary.get(), ID_LIBEDIT_ADD_LIBRARY, _( "&Add Library..." ),
|
|
|
|
KiBitmap( add_library_xpm ) );
|
2018-07-27 10:46:09 +00:00
|
|
|
AddMenuItem( menuLibrary.get(), ID_LIBEDIT_SAVE, _( "&Save" ),
|
|
|
|
KiBitmap( save_xpm ) );
|
|
|
|
AddMenuItem( menuLibrary.get(), ID_LIBEDIT_SAVE_AS, _( "Save As..." ),
|
|
|
|
KiBitmap( save_as_xpm ) );
|
|
|
|
AddMenuItem( menuLibrary.get(), ID_LIBEDIT_REVERT, _( "Revert" ),
|
2018-01-07 12:18:18 +00:00
|
|
|
KiBitmap( undo_xpm ) );
|
|
|
|
|
2017-11-12 17:55:20 +00:00
|
|
|
menuLibrary->AppendSeparator();
|
2018-01-18 10:23:59 +00:00
|
|
|
AddMenuItem( menuLibrary.get(), ID_LIBEDIT_NEW_PART, _( "New Sy&mbol..." ),
|
2018-01-07 12:18:18 +00:00
|
|
|
KiBitmap( new_component_xpm ) );
|
2018-01-18 10:23:59 +00:00
|
|
|
AddMenuItem( menuLibrary.get(), ID_LIBEDIT_IMPORT_PART, _( "&Import Symbol..." ),
|
2018-01-07 12:18:18 +00:00
|
|
|
KiBitmap( import_part_xpm ) );
|
2018-08-29 20:53:41 +00:00
|
|
|
AddMenuItem( menuLibrary.get(), ID_LIBEDIT_PASTE_PART, _( "Paste Symbol" ),
|
|
|
|
KiBitmap( paste_xpm ) );
|
2017-11-12 17:55:20 +00:00
|
|
|
|
|
|
|
std::unique_ptr<wxMenu> menuPart = std::make_unique<wxMenu>();
|
2018-01-18 10:23:59 +00:00
|
|
|
AddMenuItem( menuPart.get(), ID_LIBEDIT_EDIT_PART, _( "&Edit Symbol" ),
|
2018-01-07 12:18:18 +00:00
|
|
|
KiBitmap( edit_xpm ) );
|
2018-07-24 21:16:59 +00:00
|
|
|
|
|
|
|
menuPart->AppendSeparator();
|
2018-07-27 10:46:09 +00:00
|
|
|
AddMenuItem( menuPart.get(), ID_LIBEDIT_SAVE, _( "&Save" ),
|
|
|
|
KiBitmap( save_xpm ) );
|
2018-10-03 21:44:17 +00:00
|
|
|
AddMenuItem( menuPart.get(), ID_LIBEDIT_SAVE_AS, _( "Save a Copy As..." ),
|
2018-07-27 10:46:09 +00:00
|
|
|
KiBitmap( save_xpm ) );
|
|
|
|
AddMenuItem( menuPart.get(), ID_LIBEDIT_DUPLICATE_PART, _( "Duplicate" ),
|
2018-07-24 21:16:59 +00:00
|
|
|
KiBitmap( duplicate_xpm ) );
|
2018-07-27 10:46:09 +00:00
|
|
|
AddMenuItem( menuPart.get(), ID_LIBEDIT_REMOVE_PART, _( "Delete" ),
|
2018-07-24 21:16:59 +00:00
|
|
|
KiBitmap( delete_xpm ) );
|
2018-07-27 10:46:09 +00:00
|
|
|
AddMenuItem( menuPart.get(), ID_LIBEDIT_REVERT, _( "Revert" ),
|
2018-01-07 12:18:18 +00:00
|
|
|
KiBitmap( undo_xpm ) );
|
|
|
|
|
2018-08-29 20:53:41 +00:00
|
|
|
menuPart->AppendSeparator();
|
|
|
|
AddMenuItem( menuPart.get(), ID_LIBEDIT_CUT_PART, _( "Cut" ),
|
|
|
|
KiBitmap( cut_xpm ) );
|
|
|
|
AddMenuItem( menuPart.get(), ID_LIBEDIT_COPY_PART, _( "Copy" ),
|
|
|
|
KiBitmap( copy_xpm ) );
|
|
|
|
|
2017-11-12 17:55:20 +00:00
|
|
|
menuPart->AppendSeparator();
|
2018-07-24 21:16:59 +00:00
|
|
|
AddMenuItem( menuPart.get(), ID_LIBEDIT_EXPORT_PART, _( "E&xport Symbol..." ),
|
|
|
|
KiBitmap( export_part_xpm ) );
|
2017-11-12 17:55:20 +00:00
|
|
|
|
2017-11-20 20:03:54 +00:00
|
|
|
// Menu displayed when nothing is selected
|
2017-11-12 17:55:20 +00:00
|
|
|
std::unique_ptr<wxMenu> menuNoSelection = std::make_unique<wxMenu>();
|
2018-01-07 12:18:18 +00:00
|
|
|
AddMenuItem( menuNoSelection.get(), ID_LIBEDIT_NEW_LIBRARY, _( "&New Library..." ),
|
|
|
|
KiBitmap( new_library_xpm ) );
|
|
|
|
AddMenuItem( menuNoSelection.get(), ID_LIBEDIT_ADD_LIBRARY, _( "&Add Library..." ),
|
|
|
|
KiBitmap( add_library_xpm ) );
|
2017-11-12 17:55:20 +00:00
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
m_tree->SetMenu( LIB_TREE_NODE::LIBID, std::move( menuPart ) );
|
|
|
|
m_tree->SetMenu( LIB_TREE_NODE::LIB, std::move( menuLibrary ) );
|
|
|
|
m_tree->SetMenu( LIB_TREE_NODE::INVALID, std::move( menuNoSelection ) );
|
2017-11-12 17:55:20 +00:00
|
|
|
|
|
|
|
// Event handlers
|
2018-07-27 20:47:51 +00:00
|
|
|
Bind( COMPONENT_SELECTED, &SYMBOL_TREE_PANE::onComponentSelected, this );
|
2017-11-12 17:55:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
SYMBOL_TREE_PANE::~SYMBOL_TREE_PANE()
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
2017-11-30 11:31:36 +00:00
|
|
|
m_tree->Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
void SYMBOL_TREE_PANE::Regenerate()
|
2017-11-30 11:31:36 +00:00
|
|
|
{
|
|
|
|
if( m_tree )
|
2018-11-25 01:38:00 +00:00
|
|
|
m_tree->Regenerate( true );
|
2017-11-12 17:55:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
void SYMBOL_TREE_PANE::onComponentSelected( wxCommandEvent& aEvent )
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
|
|
|
wxCommandEvent evt( ID_LIBEDIT_EDIT_PART );
|
|
|
|
m_libEditFrame->OnEditPart( evt );
|
2018-01-20 17:15:46 +00:00
|
|
|
|
|
|
|
// Make sure current-part highlighting doesn't get lost in seleciton highlighting
|
|
|
|
m_tree->Unselect();
|
2017-11-12 17:55:20 +00:00
|
|
|
}
|