2009-11-04 20:46:53 +00:00
|
|
|
/******************/
|
|
|
|
/* tool_lib.cpp */
|
|
|
|
/******************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "common.h"
|
2009-09-22 12:27:57 +00:00
|
|
|
#include "hotkeys.h"
|
|
|
|
#include "bitmaps.h"
|
|
|
|
#include "eeschema_id.h"
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
#include "program.h"
|
|
|
|
#include "general.h"
|
|
|
|
#include "protos.h"
|
2010-02-16 16:21:52 +00:00
|
|
|
#include "libeditframe.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2010-06-30 11:15:34 +00:00
|
|
|
#include "help_common_strings.h"
|
|
|
|
|
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
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
void WinEDA_LibeditFrame::ReCreateVToolbar()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2009-09-14 13:24:17 +00:00
|
|
|
if( m_VToolBar != NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_VToolBar = new WinEDA_Toolbar( TOOLBAR_TOOL, this, ID_V_TOOLBAR, false );
|
|
|
|
|
|
|
|
// Set up toolbar
|
|
|
|
m_VToolBar->AddTool( ID_NO_SELECT_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( cursor_xpm ),
|
|
|
|
_( "Deselect current tool" ), wxITEM_CHECK );
|
|
|
|
|
|
|
|
m_VToolBar->AddSeparator();
|
|
|
|
m_VToolBar->AddTool( ID_LIBEDIT_PIN_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( pin_xpm ),
|
2010-06-30 11:15:34 +00:00
|
|
|
HELP_ADD_PIN, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
|
|
|
m_VToolBar->AddTool( ID_LIBEDIT_BODY_TEXT_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( add_text_xpm ),
|
2010-06-30 11:15:34 +00:00
|
|
|
HELP_ADD_BODYTEXT, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
|
|
|
m_VToolBar->AddTool( ID_LIBEDIT_BODY_RECT_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( add_rectangle_xpm ),
|
2010-06-30 11:15:34 +00:00
|
|
|
HELP_ADD_BODYRECT, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
|
|
|
m_VToolBar->AddTool( ID_LIBEDIT_BODY_CIRCLE_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( add_circle_xpm ),
|
2010-06-30 11:15:34 +00:00
|
|
|
HELP_ADD_BODYCIRCLE, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
|
|
|
m_VToolBar->AddTool( ID_LIBEDIT_BODY_ARC_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( add_arc_xpm ),
|
2010-06-30 11:15:34 +00:00
|
|
|
HELP_ADD_BODYARC, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
|
|
|
m_VToolBar->AddTool( ID_LIBEDIT_BODY_LINE_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( add_polygon_xpm ),
|
2010-06-30 11:15:34 +00:00
|
|
|
HELP_ADD_BODYPOLYGON, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
|
|
|
m_VToolBar->AddSeparator();
|
|
|
|
m_VToolBar->AddTool( ID_LIBEDIT_ANCHOR_ITEM_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( anchor_xpm ),
|
|
|
|
_( "Move part anchor" ), wxITEM_CHECK );
|
|
|
|
|
|
|
|
m_VToolBar->AddSeparator();
|
|
|
|
m_VToolBar->AddTool( ID_LIBEDIT_IMPORT_BODY_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( import_xpm ),
|
|
|
|
_( "Import existing drawings" ), wxITEM_CHECK );
|
|
|
|
|
|
|
|
m_VToolBar->AddTool( ID_LIBEDIT_EXPORT_BODY_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( export_xpm ),
|
|
|
|
_( "Export current drawing" ), wxITEM_CHECK );
|
|
|
|
|
|
|
|
m_VToolBar->AddSeparator();
|
|
|
|
m_VToolBar->AddTool( ID_LIBEDIT_DELETE_ITEM_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( delete_body_xpm ),
|
2010-06-30 11:15:34 +00:00
|
|
|
HELP_DELETE_ITEMS, wxITEM_CHECK );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
|
|
|
m_VToolBar->Realize();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
void WinEDA_LibeditFrame::ReCreateHToolbar()
|
2007-08-30 08:15:05 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
|
|
|
|
// Create the toolbar if not exists
|
2009-09-14 13:24:17 +00:00
|
|
|
if( m_HToolBar != NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_HToolBar = new WinEDA_Toolbar( TOOLBAR_MAIN, this, ID_H_TOOLBAR, true );
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2009-09-14 13:24:17 +00:00
|
|
|
// Set up toolbar
|
|
|
|
m_HToolBar->AddTool( ID_LIBEDIT_SAVE_CURRENT_LIB, wxEmptyString,
|
|
|
|
wxBitmap( save_library_xpm ),
|
|
|
|
_( "Save current library to disk" ) );
|
|
|
|
|
|
|
|
m_HToolBar->AddTool( ID_LIBEDIT_SELECT_CURRENT_LIB, wxEmptyString,
|
|
|
|
wxBitmap( library_xpm ),
|
|
|
|
_( "Select working library" ) );
|
|
|
|
|
|
|
|
m_HToolBar->AddTool( ID_LIBEDIT_DELETE_PART, wxEmptyString,
|
|
|
|
wxBitmap( delete_xpm ),
|
|
|
|
_( "Delete component in current library" ) );
|
|
|
|
|
|
|
|
m_HToolBar->AddSeparator();
|
|
|
|
m_HToolBar->AddTool( ID_LIBEDIT_NEW_PART, wxEmptyString,
|
|
|
|
wxBitmap( new_component_xpm ),
|
|
|
|
_( "New component" ) );
|
|
|
|
|
|
|
|
m_HToolBar->AddTool( ID_LIBEDIT_SELECT_PART, wxEmptyString,
|
|
|
|
wxBitmap( add_component_xpm ),
|
|
|
|
_( "Select component to edit" ) );
|
|
|
|
|
|
|
|
m_HToolBar->AddTool( ID_LIBEDIT_SAVE_CURRENT_PART, wxEmptyString,
|
|
|
|
wxBitmap( save_part_in_mem_xpm ),
|
|
|
|
_( "Update current component in current library" ) );
|
|
|
|
|
|
|
|
m_HToolBar->AddTool( ImportPartId, wxEmptyString, wxBitmap( import_xpm ),
|
|
|
|
_( "Import component" ) );
|
|
|
|
|
|
|
|
m_HToolBar->AddTool( ExportPartId, wxEmptyString, wxBitmap( export_xpm ),
|
|
|
|
_( "Export component" ) );
|
|
|
|
|
|
|
|
m_HToolBar->AddTool( CreateNewLibAndSavePartId, wxEmptyString,
|
|
|
|
wxBitmap( new_library_xpm ),
|
|
|
|
_( "Save current component to new library" ) );
|
|
|
|
|
|
|
|
m_HToolBar->AddSeparator();
|
|
|
|
msg = AddHotkeyName( _( "Undo last command" ), s_Schematic_Hokeys_Descr,
|
2010-02-16 10:42:57 +00:00
|
|
|
HK_UNDO, false );
|
2010-01-19 20:43:44 +00:00
|
|
|
m_HToolBar->AddTool( wxID_UNDO, wxEmptyString, wxBitmap( undo_xpm ),
|
2009-09-14 13:24:17 +00:00
|
|
|
msg );
|
|
|
|
msg = AddHotkeyName( _( "Redo the last command" ), s_Schematic_Hokeys_Descr,
|
2010-02-16 10:42:57 +00:00
|
|
|
HK_REDO, false );
|
2010-01-19 20:43:44 +00:00
|
|
|
m_HToolBar->AddTool( wxID_REDO, wxEmptyString, wxBitmap( redo_xpm ),
|
2009-09-14 13:24:17 +00:00
|
|
|
msg );
|
|
|
|
|
|
|
|
m_HToolBar->AddSeparator();
|
|
|
|
m_HToolBar->AddTool( ID_LIBEDIT_GET_FRAME_EDIT_PART, wxEmptyString,
|
|
|
|
wxBitmap( part_properties_xpm ),
|
|
|
|
_( "Edit component properties" ) );
|
|
|
|
|
|
|
|
m_HToolBar->AddTool( ID_LIBEDIT_GET_FRAME_EDIT_FIELDS, wxEmptyString,
|
|
|
|
wxBitmap( add_text_xpm ),
|
|
|
|
_( "Add and remove fields and edit field properties" ) );
|
|
|
|
|
|
|
|
m_HToolBar->AddSeparator();
|
|
|
|
m_HToolBar->AddTool( ID_LIBEDIT_CHECK_PART, wxEmptyString,
|
2009-11-04 20:46:53 +00:00
|
|
|
wxBitmap( erc_xpm ),
|
|
|
|
_( "Test for duplicate pins and off grid pins" ) );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
|
|
|
m_HToolBar->AddSeparator();
|
2010-06-30 11:15:34 +00:00
|
|
|
msg = AddHotkeyName( HELP_ZOOM_IN, s_Libedit_Hokeys_Descr, HK_ZOOM_IN, false );
|
2009-09-14 13:24:17 +00:00
|
|
|
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, wxBitmap( zoom_in_xpm ),
|
|
|
|
msg );
|
|
|
|
|
2010-06-30 11:15:34 +00:00
|
|
|
msg = AddHotkeyName( HELP_ZOOM_OUT, s_Libedit_Hokeys_Descr, HK_ZOOM_OUT, false );
|
2009-09-14 13:24:17 +00:00
|
|
|
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, wxBitmap( zoom_out_xpm ),
|
|
|
|
msg );
|
|
|
|
|
2010-06-30 11:15:34 +00:00
|
|
|
msg = AddHotkeyName( HELP_ZOOM_REDRAW, s_Libedit_Hokeys_Descr,
|
2010-02-16 10:42:57 +00:00
|
|
|
HK_ZOOM_REDRAW, false );
|
2009-09-14 13:24:17 +00:00
|
|
|
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString,
|
|
|
|
wxBitmap( zoom_redraw_xpm ), msg );
|
|
|
|
|
2010-06-30 11:15:34 +00:00
|
|
|
msg = AddHotkeyName( HELP_ZOOM_FIT, s_Libedit_Hokeys_Descr, HK_ZOOM_AUTO, false );
|
2009-09-14 13:24:17 +00:00
|
|
|
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString,
|
2009-09-27 14:09:26 +00:00
|
|
|
wxBitmap( zoom_auto_xpm ), msg );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
|
|
|
m_HToolBar->AddSeparator();
|
|
|
|
m_HToolBar->AddTool( ID_DE_MORGAN_NORMAL_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( morgan1_xpm ),
|
|
|
|
_( "Show as \"De Morgan\" normal part" ),
|
|
|
|
wxITEM_CHECK );
|
|
|
|
m_HToolBar->AddTool( ID_DE_MORGAN_CONVERT_BUTT, wxEmptyString,
|
|
|
|
wxBitmap( morgan2_xpm ),
|
|
|
|
_( "Show as \"De Morgan\" convert part" ),
|
|
|
|
wxITEM_CHECK );
|
|
|
|
|
|
|
|
m_HToolBar->AddSeparator();
|
|
|
|
m_HToolBar->AddTool( ID_LIBEDIT_VIEW_DOC, wxEmptyString,
|
|
|
|
wxBitmap( datasheet_xpm ), _( "Edit document file" ) );
|
|
|
|
|
|
|
|
m_HToolBar->AddSeparator();
|
|
|
|
m_SelpartBox = new WinEDAChoiceBox( m_HToolBar,
|
|
|
|
ID_LIBEDIT_SELECT_PART_NUMBER,
|
|
|
|
wxDefaultPosition,
|
|
|
|
wxSize( LISTBOX_WIDTH, -1 ) );
|
|
|
|
m_HToolBar->AddControl( m_SelpartBox );
|
|
|
|
|
|
|
|
m_SelAliasBox = new WinEDAChoiceBox( m_HToolBar, ID_LIBEDIT_SELECT_ALIAS,
|
|
|
|
wxDefaultPosition,
|
|
|
|
wxSize( LISTBOX_WIDTH, -1 ) );
|
|
|
|
m_HToolBar->AddControl( m_SelAliasBox );
|
|
|
|
|
|
|
|
m_HToolBar->AddSeparator();
|
2010-03-05 19:49:08 +00:00
|
|
|
msg = _( "Edit pins part per part ( Use carefully!)" );
|
|
|
|
msg << wxT("\n");
|
|
|
|
msg += _("Usual option = OFF when parts are not locked");
|
|
|
|
msg << wxT("\n");
|
|
|
|
msg += _("Usual option = ON when parts are locked");
|
2009-09-14 13:24:17 +00:00
|
|
|
m_HToolBar->AddTool( ID_LIBEDIT_EDIT_PIN_BY_PIN, wxEmptyString,
|
|
|
|
wxBitmap( pin2pin_xpm ),
|
2010-03-05 19:49:08 +00:00
|
|
|
msg,
|
2009-09-14 13:24:17 +00:00
|
|
|
wxITEM_CHECK );
|
|
|
|
|
|
|
|
// after adding the buttons to the toolbar, must call Realize() to reflect
|
|
|
|
// the changes
|
|
|
|
m_HToolBar->Realize();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|