2011-10-28 13:43:37 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
|
|
|
* Copyright (C) 2008-2011 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 2004-2011 KiCad Developers, see change_log.txt for contributors.
|
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* 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:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file tool_lib.cpp
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <hotkeys.h>
|
|
|
|
#include <eeschema_id.h>
|
2009-09-22 12:27:57 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <general.h>
|
|
|
|
#include <libeditframe.h>
|
|
|
|
#include <dialog_helpers.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <help_common_strings.h>
|
2010-06-30 11:15:34 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
#ifdef __UNIX__
|
|
|
|
#define LISTBOX_WIDTH 140
|
|
|
|
#else
|
|
|
|
#define LISTBOX_WIDTH 120
|
|
|
|
#endif
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
extern int ExportPartId;
|
|
|
|
extern int ImportPartId;
|
|
|
|
extern int CreateNewLibAndSavePartId;
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2010-11-19 16:28:46 +00:00
|
|
|
void LIB_EDIT_FRAME::ReCreateVToolbar()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-12-14 20:03:15 +00:00
|
|
|
if( m_drawToolBar != NULL )
|
2009-09-14 13:24:17 +00:00
|
|
|
return;
|
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_drawToolBar = new wxAuiToolBar( this, ID_V_TOOLBAR, wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_VERTICAL );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
|
|
|
// Set up toolbar
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->AddTool( ID_NO_TOOL_SELECTED, wxEmptyString, KiBitmap( cursor_xpm ),
|
|
|
|
_( "Deselect current tool" ), wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->AddTool( ID_LIBEDIT_PIN_BUTT, wxEmptyString, KiBitmap( pin_xpm ),
|
|
|
|
HELP_ADD_PIN, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->AddTool( ID_LIBEDIT_BODY_TEXT_BUTT, wxEmptyString, KiBitmap( add_text_xpm ),
|
|
|
|
HELP_ADD_BODYTEXT, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->AddTool( ID_LIBEDIT_BODY_RECT_BUTT, wxEmptyString, KiBitmap( add_rectangle_xpm ),
|
|
|
|
HELP_ADD_BODYRECT, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->AddTool( ID_LIBEDIT_BODY_CIRCLE_BUTT, wxEmptyString, KiBitmap( add_circle_xpm ),
|
|
|
|
HELP_ADD_BODYCIRCLE, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->AddTool( ID_LIBEDIT_BODY_ARC_BUTT, wxEmptyString, KiBitmap( add_arc_xpm ),
|
|
|
|
HELP_ADD_BODYARC, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->AddTool( ID_LIBEDIT_BODY_LINE_BUTT, wxEmptyString, KiBitmap( add_polygon_xpm ),
|
|
|
|
HELP_ADD_BODYPOLYGON, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->AddTool( ID_LIBEDIT_ANCHOR_ITEM_BUTT, wxEmptyString, KiBitmap( anchor_xpm ),
|
|
|
|
_( "Move part anchor" ), wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->AddTool( ID_LIBEDIT_IMPORT_BODY_BUTT, wxEmptyString, KiBitmap( import_xpm ),
|
|
|
|
_( "Import existing drawings" ), wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->AddTool( ID_LIBEDIT_EXPORT_BODY_BUTT, wxEmptyString, KiBitmap( export_xpm ),
|
|
|
|
_( "Export current drawing" ), wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2012-03-20 14:17:58 +00:00
|
|
|
m_drawToolBar->AddTool( ID_LIBEDIT_DELETE_ITEM_BUTT, wxEmptyString, KiBitmap( delete_xpm ),
|
2011-12-14 20:03:15 +00:00
|
|
|
HELP_DELETE_ITEMS, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_drawToolBar->Realize();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-19 16:28:46 +00:00
|
|
|
void LIB_EDIT_FRAME::ReCreateHToolbar()
|
2007-08-30 08:15:05 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
|
|
|
|
// Create the toolbar if not exists
|
2011-12-16 13:32:23 +00:00
|
|
|
if( m_mainToolBar != NULL )
|
2009-09-14 13:24:17 +00:00
|
|
|
return;
|
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar = new wxAuiToolBar( this, ID_H_TOOLBAR, wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_HORZ_LAYOUT );
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2009-09-14 13:24:17 +00:00
|
|
|
// Set up toolbar
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_SAVE_CURRENT_LIB, wxEmptyString,
|
|
|
|
KiBitmap( save_library_xpm ),
|
|
|
|
_( "Save current library to disk" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_SELECT_CURRENT_LIB, wxEmptyString, KiBitmap( library_xpm ),
|
|
|
|
_( "Select working library" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_DELETE_PART, wxEmptyString, KiBitmap( delete_xpm ),
|
|
|
|
_( "Delete component in current library" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2012-02-19 19:53:11 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
|
|
|
m_mainToolBar->AddTool( ID_TO_LIBVIEW, wxEmptyString, KiBitmap( library_browse_xpm ),
|
|
|
|
HELP_RUN_LIB_VIEWER );
|
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_NEW_PART, wxEmptyString, KiBitmap( new_component_xpm ),
|
|
|
|
_( "Create a new component" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_SELECT_PART, wxEmptyString,
|
|
|
|
KiBitmap( import_cmp_from_lib_xpm ),
|
|
|
|
_( "Load component to edit from the current library" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_NEW_PART_FROM_EXISTING, wxEmptyString,
|
|
|
|
KiBitmap( copycomponent_xpm ),
|
|
|
|
_( "Create a new component from the current one" ) );
|
2010-12-02 21:41:56 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_SAVE_CURRENT_PART, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( save_part_in_mem_xpm ),
|
2011-12-16 13:32:23 +00:00
|
|
|
_( "Update current component in current library" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ImportPartId, wxEmptyString, KiBitmap( import_xpm ),
|
|
|
|
_( "Import component" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ExportPartId, wxEmptyString, KiBitmap( export_xpm ),
|
|
|
|
_( "Export component" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( CreateNewLibAndSavePartId, wxEmptyString, KiBitmap( new_library_xpm ),
|
|
|
|
_( "Save current component to new library" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
2014-10-15 11:40:38 +00:00
|
|
|
msg = AddHotkeyName( _( "Undo last command" ), g_Libedit_Hokeys_Descr, HK_UNDO, IS_COMMENT );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( wxID_UNDO, wxEmptyString, KiBitmap( undo_xpm ), msg );
|
2014-10-15 11:40:38 +00:00
|
|
|
msg = AddHotkeyName( _( "Redo the last command" ), g_Libedit_Hokeys_Descr, HK_REDO,
|
2011-12-14 20:03:15 +00:00
|
|
|
IS_COMMENT );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( wxID_REDO, wxEmptyString, KiBitmap( redo_xpm ), msg );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_GET_FRAME_EDIT_PART, wxEmptyString,
|
|
|
|
KiBitmap( part_properties_xpm ), _( "Edit component properties" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_GET_FRAME_EDIT_FIELDS, wxEmptyString,
|
|
|
|
KiBitmap( add_text_xpm ),
|
|
|
|
_( "Add and remove fields and edit field properties" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_CHECK_PART, wxEmptyString, KiBitmap( erc_xpm ),
|
|
|
|
_( "Test for duplicate and off grid pins" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
2014-10-15 11:40:38 +00:00
|
|
|
msg = AddHotkeyName( HELP_ZOOM_IN, g_Libedit_Hokeys_Descr, HK_ZOOM_IN, IS_COMMENT );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2014-10-15 11:40:38 +00:00
|
|
|
msg = AddHotkeyName( HELP_ZOOM_OUT, g_Libedit_Hokeys_Descr, HK_ZOOM_OUT, IS_COMMENT );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2014-10-15 11:40:38 +00:00
|
|
|
msg = AddHotkeyName( HELP_ZOOM_REDRAW, g_Libedit_Hokeys_Descr, HK_ZOOM_REDRAW, IS_COMMENT );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2014-10-15 11:40:38 +00:00
|
|
|
msg = AddHotkeyName( HELP_ZOOM_FIT, g_Libedit_Hokeys_Descr, HK_ZOOM_AUTO, IS_COMMENT );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
|
|
|
m_mainToolBar->AddTool( ID_DE_MORGAN_NORMAL_BUTT, wxEmptyString, KiBitmap( morgan1_xpm ),
|
|
|
|
_( "Show as \"De Morgan\" normal part" ), wxITEM_CHECK );
|
|
|
|
m_mainToolBar->AddTool( ID_DE_MORGAN_CONVERT_BUTT, wxEmptyString, KiBitmap( morgan2_xpm ),
|
|
|
|
_( "Show as \"De Morgan\" convert part" ), wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_VIEW_DOC, wxEmptyString, KiBitmap( datasheet_xpm ),
|
2015-04-20 14:59:25 +00:00
|
|
|
_( "Show the associated datasheet or document" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
|
|
|
m_partSelectBox = new wxComboBox( m_mainToolBar,
|
2011-12-09 16:37:11 +00:00
|
|
|
ID_LIBEDIT_SELECT_PART_NUMBER,
|
|
|
|
wxEmptyString,
|
|
|
|
wxDefaultPosition,
|
|
|
|
wxSize( LISTBOX_WIDTH, -1 ),
|
|
|
|
0, NULL, wxCB_READONLY );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddControl( m_partSelectBox );
|
2011-12-09 16:37:11 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_aliasSelectBox = new wxComboBox( m_mainToolBar,
|
2011-12-09 16:37:11 +00:00
|
|
|
ID_LIBEDIT_SELECT_ALIAS,
|
|
|
|
wxEmptyString,
|
|
|
|
wxDefaultPosition,
|
|
|
|
wxSize( LISTBOX_WIDTH, -1 ),
|
|
|
|
0, NULL, wxCB_READONLY );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddControl( m_aliasSelectBox );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddSeparator();
|
2011-10-28 13:43:37 +00:00
|
|
|
msg = _( "Edit pins per part or body style (Use carefully!)" );
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_EDIT_PIN_BY_PIN, wxEmptyString, KiBitmap( pin2pin_xpm ),
|
|
|
|
msg, wxITEM_CHECK );
|
2015-03-27 10:26:07 +00:00
|
|
|
m_mainToolBar->AddTool( ID_LIBEDIT_EDIT_PIN_BY_TABLE, wxEmptyString, KiBitmap( pin_table_xpm ),
|
|
|
|
_( "Show pin table" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2011-02-23 14:20:01 +00:00
|
|
|
// after adding the buttons to the toolbar, must call Realize() to reflect the changes
|
2011-12-16 13:32:23 +00:00
|
|
|
m_mainToolBar->Realize();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2011-02-23 14:20:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
void LIB_EDIT_FRAME::CreateOptionToolbar()
|
|
|
|
{
|
2011-12-14 20:03:15 +00:00
|
|
|
if( m_optionsToolBar )
|
2011-02-23 14:20:01 +00:00
|
|
|
return;
|
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
m_optionsToolBar = new wxAuiToolBar( this, ID_OPT_TOOLBAR, wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_VERTICAL );
|
2011-02-23 14:20:01 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_GRID, wxEmptyString, KiBitmap( grid_xpm ),
|
2011-02-23 14:20:01 +00:00
|
|
|
_( "Turn grid off" ), wxITEM_CHECK );
|
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_INCH, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( unit_inch_xpm ), _( "Units in inches" ), wxITEM_CHECK );
|
2011-02-23 14:20:01 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_MM, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( unit_mm_xpm ),
|
2011-02-23 14:20:01 +00:00
|
|
|
_( "Units in millimeters" ), wxITEM_CHECK );
|
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_CURSOR, wxEmptyString,
|
2011-08-28 20:02:27 +00:00
|
|
|
KiBitmap( cursor_shape_xpm ),
|
2011-02-23 14:20:01 +00:00
|
|
|
_( "Change cursor shape" ), wxITEM_CHECK );
|
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
m_optionsToolBar->Realize();
|
2011-02-23 14:20:01 +00:00
|
|
|
}
|