2007-09-15 04:25:54 +00:00
|
|
|
|
/****************************/
|
|
|
|
|
/* EESchema - libframe.cpp */
|
|
|
|
|
/****************************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
/* Gestion de la frame d'edition des composants en librairie
|
2007-09-15 04:25:54 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
|
#include "appl_wxstruct.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#include "common.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
|
#include "class_drawpanel.h"
|
|
|
|
|
#include "confirm.h"
|
|
|
|
|
#include "eda_doc.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#include "program.h"
|
|
|
|
|
#include "libcmp.h"
|
|
|
|
|
#include "general.h"
|
|
|
|
|
#include "bitmaps.h"
|
|
|
|
|
#include "protos.h"
|
|
|
|
|
#include "id.h"
|
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
|
|
/* Library editor wxConfig entry names. */
|
|
|
|
|
const wxString lastLibExportPathEntry( wxT( "LastLibraryExportPath" ) );
|
|
|
|
|
const wxString lastLibImportPathEntry( wxT( "LastLibraryImportPath" ) );
|
|
|
|
|
const wxString showGridPathEntry( wxT( "ShowGrid" ) );
|
|
|
|
|
|
|
|
|
|
/* This method guarentees unique IDs for the library this run of Eeschema
|
|
|
|
|
* which prevents ID conflicts and eliminates the need to recompile every
|
|
|
|
|
* source file in the project when adding IDs to include/id.h. */
|
|
|
|
|
int ExportPartId = ::wxNewId();
|
|
|
|
|
int ImportPartId = ::wxNewId();
|
|
|
|
|
int CreateNewLibAndSavePartId = ::wxNewId();
|
|
|
|
|
|
|
|
|
|
|
2007-09-15 04:25:54 +00:00
|
|
|
|
/*****************************/
|
|
|
|
|
/* class WinEDA_LibeditFrame */
|
|
|
|
|
/*****************************/
|
2009-01-07 15:59:49 +00:00
|
|
|
|
BEGIN_EVENT_TABLE( WinEDA_LibeditFrame, WinEDA_DrawFrame )
|
2008-12-08 15:27:13 +00:00
|
|
|
|
EVT_CLOSE( WinEDA_LibeditFrame::OnCloseWindow )
|
|
|
|
|
EVT_SIZE( WinEDA_LibeditFrame::OnSize )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2009-01-07 15:59:49 +00:00
|
|
|
|
EVT_TOOL_RANGE( ID_ZOOM_IN, ID_ZOOM_PAGE, WinEDA_LibeditFrame::OnZoom )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-09-15 04:25:54 +00:00
|
|
|
|
// Tools et boutons de Libedit:
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-09-15 04:25:54 +00:00
|
|
|
|
/* Main horizontal toolbar */
|
2008-12-08 15:27:13 +00:00
|
|
|
|
EVT_TOOL_RANGE( ID_LIBEDIT_START_H_TOOL, ID_LIBEDIT_END_H_TOOL,
|
|
|
|
|
WinEDA_LibeditFrame::Process_Special_Functions )
|
|
|
|
|
EVT_KICAD_CHOICEBOX( ID_LIBEDIT_SELECT_PART_NUMBER,
|
|
|
|
|
WinEDA_LibeditFrame::Process_Special_Functions )
|
|
|
|
|
EVT_KICAD_CHOICEBOX( ID_LIBEDIT_SELECT_ALIAS,
|
|
|
|
|
WinEDA_LibeditFrame::Process_Special_Functions )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-09-15 04:25:54 +00:00
|
|
|
|
/* Right Vertical toolbar */
|
2008-12-08 15:27:13 +00:00
|
|
|
|
EVT_TOOL( ID_NO_SELECT_BUTT, WinEDA_LibeditFrame::Process_Special_Functions )
|
|
|
|
|
EVT_TOOL_RANGE( ID_LIBEDIT_START_V_TOOL, ID_LIBEDIT_END_V_TOOL,
|
|
|
|
|
WinEDA_LibeditFrame::Process_Special_Functions )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-09-15 04:25:54 +00:00
|
|
|
|
/* PopUp events and commands: */
|
2008-12-08 15:27:13 +00:00
|
|
|
|
EVT_MENU_RANGE( ID_POPUP_START_RANGE, ID_POPUP_END_RANGE,
|
|
|
|
|
WinEDA_LibeditFrame::Process_Special_Functions )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-09-15 04:25:54 +00:00
|
|
|
|
// Annulation de commande en cours
|
2008-12-08 15:27:13 +00:00
|
|
|
|
EVT_MENU_RANGE( ID_POPUP_GENERAL_START_RANGE, ID_POPUP_GENERAL_END_RANGE,
|
|
|
|
|
WinEDA_LibeditFrame::Process_Special_Functions )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
|
EVT_TOOL( ExportPartId, WinEDA_LibeditFrame::OnExportPart )
|
|
|
|
|
EVT_TOOL( CreateNewLibAndSavePartId, WinEDA_LibeditFrame::OnExportPart )
|
|
|
|
|
EVT_TOOL( ImportPartId, WinEDA_LibeditFrame::OnImportPart )
|
|
|
|
|
EVT_UPDATE_UI( ExportPartId, WinEDA_LibeditFrame::OnUpdateEditingPart )
|
|
|
|
|
EVT_UPDATE_UI( CreateNewLibAndSavePartId,
|
|
|
|
|
WinEDA_LibeditFrame::OnUpdateEditingPart )
|
|
|
|
|
|
2008-02-12 21:12:46 +00:00
|
|
|
|
// PopUp Menus pour Zooms trait<69>s dans drawpanel.cpp
|
2007-05-06 16:03:28 +00:00
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
|
|
|
2007-09-19 15:29:50 +00:00
|
|
|
|
WinEDA_LibeditFrame::WinEDA_LibeditFrame( wxWindow* father,
|
2007-09-15 04:25:54 +00:00
|
|
|
|
const wxString& title,
|
2007-09-19 15:29:50 +00:00
|
|
|
|
const wxPoint& pos,
|
2007-10-27 12:24:09 +00:00
|
|
|
|
const wxSize& size,
|
2009-04-05 20:49:15 +00:00
|
|
|
|
long style ) :
|
2008-12-08 15:27:13 +00:00
|
|
|
|
WinEDA_DrawFrame( father, LIBEDITOR_FRAME, title, pos, size, style )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2007-09-15 04:25:54 +00:00
|
|
|
|
m_FrameName = wxT( "LibeditFrame" );
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_Draw_Axis = true; // true pour avoir les axes dessines
|
|
|
|
|
m_Draw_Grid = true; // true pour avoir la axes dessinee
|
2009-04-05 20:49:15 +00:00
|
|
|
|
m_ConfigPath = wxT( "LibraryEditor" );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
|
|
|
|
|
// Give an icon
|
|
|
|
|
SetIcon( wxIcon( libedit_xpm ) );
|
2008-09-19 08:19:15 +00:00
|
|
|
|
SetBaseScreen( g_ScreenLib );
|
2008-12-06 19:44:02 +00:00
|
|
|
|
GetScreen()->m_Center = true; // set to true to have the coordinates origine -0,0) centered on screen
|
2009-04-05 20:49:15 +00:00
|
|
|
|
LoadSettings();
|
2007-09-15 04:25:54 +00:00
|
|
|
|
SetSize( m_FramePos.x, m_FramePos.y, m_FrameSize.x, m_FrameSize.y );
|
|
|
|
|
if( DrawPanel )
|
2008-12-30 19:18:56 +00:00
|
|
|
|
DrawPanel->m_Block_Enable = true;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
ReCreateHToolbar();
|
|
|
|
|
ReCreateVToolbar();
|
|
|
|
|
DisplayLibInfos();
|
2008-12-06 19:44:02 +00:00
|
|
|
|
BestZoom();
|
2008-12-30 19:18:56 +00:00
|
|
|
|
Show( true );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-09-15 04:25:54 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**********************************************/
|
2007-09-13 11:55:46 +00:00
|
|
|
|
WinEDA_LibeditFrame::~WinEDA_LibeditFrame()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**********************************************/
|
|
|
|
|
{
|
2008-12-08 15:27:13 +00:00
|
|
|
|
WinEDA_SchematicFrame* frame =
|
|
|
|
|
(WinEDA_SchematicFrame*) wxGetApp().GetTopWindow();
|
|
|
|
|
frame->m_LibeditFrame = NULL;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-09-15 04:25:54 +00:00
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
|
/**
|
|
|
|
|
* Load library editor frame specific configuration settings.
|
|
|
|
|
*
|
|
|
|
|
* Don't forget to call this base method from any derived classes or the
|
|
|
|
|
* settings will not get loaded.
|
|
|
|
|
*/
|
|
|
|
|
void WinEDA_LibeditFrame::LoadSettings( )
|
|
|
|
|
{
|
|
|
|
|
wxConfig* cfg;
|
|
|
|
|
|
|
|
|
|
WinEDA_DrawFrame::LoadSettings();
|
|
|
|
|
|
|
|
|
|
wxConfigPathChanger cpc( wxGetApp().m_EDA_Config, m_ConfigPath );
|
|
|
|
|
cfg = wxGetApp().m_EDA_Config;
|
|
|
|
|
|
|
|
|
|
m_LastLibExportPath = cfg->Read( lastLibExportPathEntry, ::wxGetCwd() );
|
|
|
|
|
m_LastLibImportPath = cfg->Read( lastLibImportPathEntry, ::wxGetCwd() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Save library editor frame specific configuration settings.
|
|
|
|
|
*
|
|
|
|
|
* Don't forget to call this base method from any derived classes or the
|
|
|
|
|
* settings will not get saved.
|
|
|
|
|
*/
|
|
|
|
|
void WinEDA_LibeditFrame::SaveSettings()
|
|
|
|
|
{
|
|
|
|
|
wxConfig* cfg;
|
|
|
|
|
|
|
|
|
|
WinEDA_DrawFrame::SaveSettings();
|
|
|
|
|
|
|
|
|
|
wxConfigPathChanger cpc( wxGetApp().m_EDA_Config, m_ConfigPath );
|
|
|
|
|
cfg = wxGetApp().m_EDA_Config;
|
|
|
|
|
|
|
|
|
|
cfg->Write( lastLibExportPathEntry, m_LastLibExportPath );
|
|
|
|
|
cfg->Write( lastLibImportPathEntry, m_LastLibImportPath );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***********************************************************/
|
2007-09-15 04:25:54 +00:00
|
|
|
|
void WinEDA_LibeditFrame::OnCloseWindow( wxCloseEvent& Event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***********************************************************/
|
|
|
|
|
{
|
2007-09-15 04:25:54 +00:00
|
|
|
|
LibraryStruct* Lib;
|
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
if( GetScreen()->IsModify() )
|
2007-09-15 04:25:54 +00:00
|
|
|
|
{
|
2007-11-10 22:36:36 +00:00
|
|
|
|
if( !IsOK( this, _( "Component was modified!\nDiscard changes?" ) ) )
|
2007-09-15 04:25:54 +00:00
|
|
|
|
{
|
2009-04-05 20:49:15 +00:00
|
|
|
|
Event.Veto();
|
|
|
|
|
return;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2008-04-17 16:25:29 +00:00
|
|
|
|
GetScreen()->ClrModify();
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for( Lib = g_LibraryList; Lib != NULL; Lib = Lib->m_Pnext )
|
|
|
|
|
{
|
|
|
|
|
if( Lib->m_Modified )
|
|
|
|
|
{
|
|
|
|
|
wxString msg;
|
2009-04-05 20:49:15 +00:00
|
|
|
|
msg.Printf( _( "Library \"%s\" was modified!\nDiscard changes?" ),
|
|
|
|
|
Lib->m_Name.GetData() );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
if( !IsOK( this, msg ) )
|
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
|
Event.Veto();
|
|
|
|
|
return;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SaveSettings();
|
|
|
|
|
Destroy();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************/
|
2007-09-13 11:55:46 +00:00
|
|
|
|
void WinEDA_LibeditFrame::SetToolbars()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/******************************************/
|
2007-09-15 04:25:54 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* Enable or disable tools of the differents toolbars,
|
2007-09-15 04:25:54 +00:00
|
|
|
|
* according to the current conditions or options
|
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2007-09-15 04:25:54 +00:00
|
|
|
|
if( m_HToolBar == NULL )
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if( CurrentLib == NULL )
|
|
|
|
|
{
|
|
|
|
|
if( m_HToolBar )
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_SAVE_CURRENT_LIB, false );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if( m_HToolBar )
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_SAVE_CURRENT_LIB, true );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( CurrentLibEntry == NULL )
|
|
|
|
|
{
|
|
|
|
|
if( m_HToolBar )
|
|
|
|
|
{
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_SAVE_CURRENT_PART, false );
|
|
|
|
|
m_HToolBar->EnableTool( ID_DE_MORGAN_CONVERT_BUTT, false );
|
|
|
|
|
m_HToolBar->EnableTool( ID_DE_MORGAN_NORMAL_BUTT, false );
|
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_EDIT_PIN_BY_PIN, false );
|
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_VIEW_DOC, false );
|
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_CHECK_PART, false );
|
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_GET_FRAME_EDIT_FIELDS, false );
|
|
|
|
|
m_SelpartBox->Enable( false );
|
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_UNDO, false );
|
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_REDO, false );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
2008-12-30 19:18:56 +00:00
|
|
|
|
g_EditPinByPinIsOn = false;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
m_HToolBar->ToggleTool( ID_LIBEDIT_EDIT_PIN_BY_PIN, g_EditPinByPinIsOn );
|
|
|
|
|
|
|
|
|
|
if( m_VToolBar )
|
|
|
|
|
{
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_BODY_TEXT_BUTT, false );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_BODY_LINE_BUTT, false );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_BODY_RECT_BUTT, false );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_BODY_CIRCLE_BUTT, false );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_BODY_ARC_BUTT, false );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_DELETE_ITEM_BUTT, false );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_ANCHOR_ITEM_BUTT, false );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_IMPORT_BODY_BUTT, false );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_EXPORT_BODY_BUTT, false );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2008-12-30 19:18:56 +00:00
|
|
|
|
else // if we have a current entry to edit:
|
2007-09-15 04:25:54 +00:00
|
|
|
|
{
|
|
|
|
|
if( m_HToolBar )
|
|
|
|
|
{
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_SAVE_CURRENT_PART, true );
|
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_GET_FRAME_EDIT_FIELDS, true );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
if( (CurrentLibEntry->m_UnitCount > 1) || g_AsDeMorgan )
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_EDIT_PIN_BY_PIN, true );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
else
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_EDIT_PIN_BY_PIN, false );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
|
|
|
|
|
m_HToolBar->ToggleTool( ID_LIBEDIT_EDIT_PIN_BY_PIN, g_EditPinByPinIsOn );
|
|
|
|
|
|
|
|
|
|
m_HToolBar->EnableTool( ID_DE_MORGAN_CONVERT_BUTT, g_AsDeMorgan );
|
|
|
|
|
m_HToolBar->EnableTool( ID_DE_MORGAN_NORMAL_BUTT, g_AsDeMorgan );
|
|
|
|
|
/* Enable the "get doc" tool */
|
2008-12-30 19:18:56 +00:00
|
|
|
|
bool enable_dtool = false;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
if( !CurrentAliasName.IsEmpty() )
|
|
|
|
|
{
|
|
|
|
|
int AliasLocation = LocateAlias( CurrentLibEntry->m_AliasList, CurrentAliasName );
|
|
|
|
|
if( AliasLocation >= 0 )
|
2007-09-19 15:29:50 +00:00
|
|
|
|
if( !CurrentLibEntry->m_AliasList[AliasLocation +
|
|
|
|
|
ALIAS_DOC_FILENAME].IsEmpty() )
|
2008-12-30 19:18:56 +00:00
|
|
|
|
enable_dtool = true;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
else if( !CurrentLibEntry->m_DocFile.IsEmpty() )
|
2008-12-30 19:18:56 +00:00
|
|
|
|
enable_dtool = true;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
if( enable_dtool )
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_VIEW_DOC, true );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
else
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_VIEW_DOC, false );
|
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_CHECK_PART, true );
|
|
|
|
|
m_SelpartBox->Enable( (CurrentLibEntry->m_UnitCount > 1 ) ? true : false );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
|
|
|
|
|
if( GetScreen() )
|
|
|
|
|
{
|
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_UNDO, GetScreen()->m_UndoList );
|
|
|
|
|
m_HToolBar->EnableTool( ID_LIBEDIT_REDO, GetScreen()->m_RedoList );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( m_VToolBar )
|
|
|
|
|
{
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_BODY_TEXT_BUTT, true );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_BODY_LINE_BUTT, true );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_BODY_RECT_BUTT, true );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_BODY_CIRCLE_BUTT, true );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_BODY_ARC_BUTT, true );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_DELETE_ITEM_BUTT, true );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_ANCHOR_ITEM_BUTT, true );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_IMPORT_BODY_BUTT, true );
|
|
|
|
|
m_VToolBar->EnableTool( ID_LIBEDIT_EXPORT_BODY_BUTT, true );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DisplayUnitsMsg();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-09-15 04:25:54 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**************************************/
|
2007-09-13 11:55:46 +00:00
|
|
|
|
int WinEDA_LibeditFrame::BestZoom()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**************************************/
|
|
|
|
|
{
|
2007-09-15 04:25:54 +00:00
|
|
|
|
int dx, dy, ii, jj;
|
|
|
|
|
int bestzoom;
|
|
|
|
|
wxSize size;
|
|
|
|
|
EDA_Rect BoundaryBox;
|
|
|
|
|
|
|
|
|
|
if( CurrentLibEntry )
|
|
|
|
|
{
|
|
|
|
|
BoundaryBox = CurrentLibEntry->GetBoundaryBox( CurrentUnit, CurrentConvert );
|
|
|
|
|
dx = BoundaryBox.GetWidth();
|
|
|
|
|
dy = BoundaryBox.GetHeight();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
|
dx = GetScreen()->m_CurrentSheetDesc->m_Size.x;
|
|
|
|
|
dy = GetScreen()->m_CurrentSheetDesc->m_Size.y;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
size = DrawPanel->GetClientSize();
|
2008-12-08 18:56:43 +00:00
|
|
|
|
size -= wxSize(100,100); // reserve 100 mils margin
|
2007-09-15 04:25:54 +00:00
|
|
|
|
ii = abs( dx / size.x );
|
|
|
|
|
jj = abs( dy / size.y );
|
|
|
|
|
|
|
|
|
|
bestzoom = MAX( ii, jj ) + 1;
|
|
|
|
|
|
|
|
|
|
if( CurrentLibEntry )
|
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
|
GetScreen()->m_Curseur = BoundaryBox.Centre();
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
|
GetScreen()->m_Curseur.x = 0;
|
|
|
|
|
GetScreen()->m_Curseur.y = 0;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-01-29 14:26:20 +00:00
|
|
|
|
return bestzoom * GetScreen()->m_ZoomScalar;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
|
void WinEDA_LibeditFrame::OnUpdateEditingPart( wxUpdateUIEvent& event )
|
|
|
|
|
{
|
|
|
|
|
event.Enable( CurrentLibEntry != NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WinEDA_LibeditFrame::OnUpdateNotEditingPart( wxUpdateUIEvent& event )
|
|
|
|
|
{
|
|
|
|
|
event.Enable( CurrentLibEntry == NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*************************************************************************/
|
2007-09-15 04:25:54 +00:00
|
|
|
|
void WinEDA_LibeditFrame::Process_Special_Functions( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*************************************************************************/
|
|
|
|
|
{
|
2007-09-19 15:29:50 +00:00
|
|
|
|
int id = event.GetId();
|
|
|
|
|
wxPoint pos;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
|
|
|
|
|
wxClientDC dc( DrawPanel );
|
|
|
|
|
|
2008-12-30 19:18:56 +00:00
|
|
|
|
DrawPanel->m_IgnoreMouseEvents = true;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
|
|
|
|
|
DrawPanel->PrepareGraphicContext( &dc );
|
|
|
|
|
|
|
|
|
|
wxGetMousePosition( &pos.x, &pos.y );
|
|
|
|
|
pos.y += 20;
|
|
|
|
|
|
2008-02-12 21:12:46 +00:00
|
|
|
|
switch( id ) // Arret de la commande de d<>placement en cours
|
2007-09-15 04:25:54 +00:00
|
|
|
|
{
|
|
|
|
|
case ID_POPUP_LIBEDIT_END_CREATE_ITEM:
|
|
|
|
|
case ID_POPUP_LIBEDIT_PIN_EDIT:
|
|
|
|
|
case ID_POPUP_LIBEDIT_BODY_EDIT_ITEM:
|
|
|
|
|
case ID_POPUP_LIBEDIT_FIELD_ROTATE_ITEM:
|
|
|
|
|
case ID_POPUP_LIBEDIT_FIELD_EDIT_ITEM:
|
|
|
|
|
case ID_POPUP_LIBEDIT_PIN_GLOBAL_CHANGE_PINSIZE_ITEM:
|
|
|
|
|
case ID_POPUP_LIBEDIT_PIN_GLOBAL_CHANGE_PINNAMESIZE_ITEM:
|
|
|
|
|
case ID_POPUP_LIBEDIT_PIN_GLOBAL_CHANGE_PINNUMSIZE_ITEM:
|
|
|
|
|
case ID_POPUP_LIBEDIT_CANCEL_EDITING:
|
|
|
|
|
case ID_POPUP_ZOOM_BLOCK:
|
|
|
|
|
case ID_POPUP_DELETE_BLOCK:
|
|
|
|
|
case ID_POPUP_COPY_BLOCK:
|
|
|
|
|
case ID_POPUP_SELECT_ITEMS_BLOCK:
|
|
|
|
|
case ID_POPUP_INVERT_BLOCK:
|
|
|
|
|
case ID_POPUP_PLACE_BLOCK:
|
|
|
|
|
case ID_POPUP_LIBEDIT_DELETE_CURRENT_POLY_SEGMENT:
|
|
|
|
|
case ID_POPUP_LIBEDIT_ROTATE_GRAPHIC_TEXT:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_LIBEDIT_DELETE_ITEM:
|
|
|
|
|
if( DrawPanel->ManageCurseur && DrawPanel->ForceCloseManageCurseur )
|
|
|
|
|
DrawPanel->ForceCloseManageCurseur( DrawPanel, &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
if( DrawPanel->ManageCurseur && DrawPanel->ForceCloseManageCurseur )
|
|
|
|
|
DrawPanel->ForceCloseManageCurseur( DrawPanel, &dc );
|
|
|
|
|
SetToolID( 0, wxCURSOR_ARROW, wxEmptyString );
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch( id )
|
|
|
|
|
{
|
|
|
|
|
case ID_LIBEDIT_SAVE_CURRENT_LIB:
|
2008-04-17 16:25:29 +00:00
|
|
|
|
if( GetScreen()->IsModify() )
|
2007-09-15 04:25:54 +00:00
|
|
|
|
{
|
2007-11-11 19:30:22 +00:00
|
|
|
|
if( IsOK( this, _( "Include last component changes?" ) ) )
|
2007-09-15 04:25:54 +00:00
|
|
|
|
SaveOnePartInMemory();
|
|
|
|
|
}
|
|
|
|
|
SaveActiveLibrary();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_NEW_PART:
|
|
|
|
|
{
|
2008-12-30 19:18:56 +00:00
|
|
|
|
g_EditPinByPinIsOn = false;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
LibItemToRepeat = NULL;
|
|
|
|
|
CreateNewLibraryPart();
|
|
|
|
|
GetScreen()->ClearUndoRedoList();
|
2008-12-20 13:12:57 +00:00
|
|
|
|
DrawPanel->Refresh();
|
2007-09-15 04:25:54 +00:00
|
|
|
|
SetToolbars();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_SELECT_CURRENT_LIB:
|
|
|
|
|
SelectActiveLibrary();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_SELECT_PART:
|
|
|
|
|
LibItemToRepeat = NULL;
|
|
|
|
|
if( LoadOneLibraryPart() )
|
|
|
|
|
{
|
2008-12-30 19:18:56 +00:00
|
|
|
|
g_EditPinByPinIsOn = false;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
GetScreen()->ClearUndoRedoList();
|
|
|
|
|
SetToolbars();
|
|
|
|
|
}
|
2008-12-20 13:12:57 +00:00
|
|
|
|
DrawPanel->Refresh();
|
2007-09-15 04:25:54 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_SAVE_CURRENT_PART:
|
|
|
|
|
SaveOnePartInMemory();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_GET_FRAME_EDIT_PART:
|
2008-12-31 15:01:29 +00:00
|
|
|
|
InstallLibeditFrame( );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2008-12-30 19:18:56 +00:00
|
|
|
|
case ID_LIBEDIT_GET_FRAME_EDIT_FIELDS:
|
|
|
|
|
InstallFieldsEditorDialog( );
|
|
|
|
|
break;
|
|
|
|
|
|
2007-09-15 04:25:54 +00:00
|
|
|
|
case ID_LIBEDIT_DELETE_PART:
|
|
|
|
|
LibItemToRepeat = NULL;
|
|
|
|
|
DeleteOnePart();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_CHECK_PART:
|
|
|
|
|
if( CurrentLibEntry )
|
2008-12-30 19:18:56 +00:00
|
|
|
|
if( TestPins( CurrentLibEntry ) == false )
|
2009-04-17 08:51:02 +00:00
|
|
|
|
DisplayInfoMessage( this, _( " Pins Test OK!" ) );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_DE_MORGAN_NORMAL_BUTT:
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_HToolBar->ToggleTool( ID_DE_MORGAN_NORMAL_BUTT, true );
|
|
|
|
|
m_HToolBar->ToggleTool( ID_DE_MORGAN_CONVERT_BUTT, false );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
LibItemToRepeat = NULL;
|
|
|
|
|
CurrentConvert = 1;
|
2008-12-20 13:12:57 +00:00
|
|
|
|
DrawPanel->Refresh();
|
2007-09-15 04:25:54 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_DE_MORGAN_CONVERT_BUTT:
|
2008-12-30 19:18:56 +00:00
|
|
|
|
m_HToolBar->ToggleTool( ID_DE_MORGAN_NORMAL_BUTT, false );
|
|
|
|
|
m_HToolBar->ToggleTool( ID_DE_MORGAN_CONVERT_BUTT, true );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
LibItemToRepeat = NULL;
|
|
|
|
|
CurrentConvert = 2;
|
2008-12-20 13:12:57 +00:00
|
|
|
|
DrawPanel->Refresh();
|
2007-09-15 04:25:54 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_VIEW_DOC:
|
|
|
|
|
if( CurrentLibEntry )
|
|
|
|
|
{
|
|
|
|
|
wxString docfilename;
|
|
|
|
|
if( !CurrentAliasName.IsEmpty() )
|
|
|
|
|
{
|
|
|
|
|
int AliasLocation = LocateAlias( CurrentLibEntry->m_AliasList, CurrentAliasName );
|
|
|
|
|
if( AliasLocation >= 0 )
|
|
|
|
|
docfilename = CurrentLibEntry->m_AliasList[AliasLocation + ALIAS_DOC_FILENAME];
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
docfilename = CurrentLibEntry->m_DocFile;
|
|
|
|
|
|
|
|
|
|
if( !docfilename.IsEmpty() )
|
2009-04-07 15:54:40 +00:00
|
|
|
|
GetAssociatedDocument( this, docfilename, & wxGetApp().GetLibraryPathList() );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_EDIT_PIN_BY_PIN:
|
2008-12-30 19:18:56 +00:00
|
|
|
|
g_EditPinByPinIsOn = g_EditPinByPinIsOn ? false : true;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
m_HToolBar->ToggleTool( ID_LIBEDIT_EDIT_PIN_BY_PIN, g_EditPinByPinIsOn );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_SELECT_PART_NUMBER:
|
|
|
|
|
{
|
|
|
|
|
int ii = m_SelpartBox->GetChoice();
|
|
|
|
|
if( ii < 0 )
|
|
|
|
|
return;
|
|
|
|
|
LibItemToRepeat = NULL;
|
|
|
|
|
CurrentUnit = ii + 1;
|
2008-12-20 13:12:57 +00:00
|
|
|
|
DrawPanel->Refresh();
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_SELECT_ALIAS:
|
|
|
|
|
{
|
|
|
|
|
int ii = m_SelAliasBox->GetChoice();
|
|
|
|
|
if( ii < 0 )
|
|
|
|
|
return;
|
|
|
|
|
LibItemToRepeat = NULL;
|
|
|
|
|
if( ii > 0 )
|
|
|
|
|
CurrentAliasName = m_SelAliasBox->GetValue();
|
|
|
|
|
else
|
|
|
|
|
CurrentAliasName.Empty();
|
2008-12-20 13:12:57 +00:00
|
|
|
|
DrawPanel->Refresh();
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_LIBEDIT_PIN_EDIT:
|
|
|
|
|
InstallPineditFrame( this, &dc, pos );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_PIN_BUTT:
|
|
|
|
|
if( CurrentLibEntry )
|
|
|
|
|
{
|
|
|
|
|
SetToolID( id, wxCURSOR_PENCIL, _( "Add Pin" ) );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2007-11-10 22:36:36 +00:00
|
|
|
|
SetToolID( id, wxCURSOR_ARROW, _( "Set Pin Options" ) );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
InstallPineditFrame( this, &dc, pos );
|
|
|
|
|
SetToolID( 0, wxCURSOR_ARROW, wxEmptyString );
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_LIBEDIT_CANCEL_EDITING:
|
|
|
|
|
if( DrawPanel->ManageCurseur && DrawPanel->ForceCloseManageCurseur )
|
|
|
|
|
DrawPanel->ForceCloseManageCurseur( DrawPanel, &dc );
|
|
|
|
|
else
|
|
|
|
|
SetToolID( 0, wxCURSOR_ARROW, wxEmptyString );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_NO_SELECT_BUTT:
|
|
|
|
|
SetToolID( 0, wxCURSOR_ARROW, wxEmptyString );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_BODY_TEXT_BUTT:
|
|
|
|
|
SetToolID( id, wxCURSOR_PENCIL, _( "Add Text" ) );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_BODY_RECT_BUTT:
|
|
|
|
|
SetToolID( id, wxCURSOR_PENCIL, _( "Add Rectangle" ) );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_BODY_CIRCLE_BUTT:
|
|
|
|
|
SetToolID( id, wxCURSOR_PENCIL, _( "Add Circle" ) );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_BODY_ARC_BUTT:
|
|
|
|
|
SetToolID( id, wxCURSOR_PENCIL, _( "Add Arc" ) );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_BODY_LINE_BUTT:
|
|
|
|
|
SetToolID( id, wxCURSOR_PENCIL, _( "Add Line" ) );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_ANCHOR_ITEM_BUTT:
|
|
|
|
|
SetToolID( id, wxCURSOR_HAND, _( "Anchor" ) );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_IMPORT_BODY_BUTT:
|
|
|
|
|
SetToolID( id, wxCURSOR_ARROW, _( "Import" ) );
|
2009-03-04 17:19:08 +00:00
|
|
|
|
LoadOneSymbol( );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
SetToolID( 0, wxCURSOR_ARROW, wxEmptyString );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_EXPORT_BODY_BUTT:
|
|
|
|
|
SetToolID( id, wxCURSOR_ARROW, _( "Export" ) );
|
|
|
|
|
SaveOneSymbol();
|
|
|
|
|
SetToolID( 0, wxCURSOR_ARROW, wxEmptyString );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_LIBEDIT_END_CREATE_ITEM:
|
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
if( CurrentDrawItem )
|
|
|
|
|
{
|
|
|
|
|
EndDrawGraphicItem( &dc );
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_LIBEDIT_BODY_EDIT_ITEM:
|
|
|
|
|
if( CurrentDrawItem )
|
|
|
|
|
{
|
|
|
|
|
DrawPanel->CursorOff( &dc );
|
|
|
|
|
|
|
|
|
|
switch( CurrentDrawItem->Type() )
|
|
|
|
|
{
|
|
|
|
|
case COMPONENT_ARC_DRAW_TYPE:
|
|
|
|
|
case COMPONENT_CIRCLE_DRAW_TYPE:
|
|
|
|
|
case COMPONENT_RECT_DRAW_TYPE:
|
|
|
|
|
case COMPONENT_POLYLINE_DRAW_TYPE:
|
|
|
|
|
case COMPONENT_LINE_DRAW_TYPE:
|
|
|
|
|
EditGraphicSymbol( &dc, CurrentDrawItem );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case COMPONENT_GRAPHIC_TEXT_DRAW_TYPE:
|
|
|
|
|
EditSymbolText( &dc, CurrentDrawItem );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DrawPanel->CursorOn( &dc );
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_DELETE_ITEM_BUTT:
|
|
|
|
|
if( CurrentLibEntry == NULL )
|
|
|
|
|
{
|
|
|
|
|
wxBell(); break;
|
|
|
|
|
}
|
|
|
|
|
SetToolID( id, wxCURSOR_BULLSEYE, _( "Delete item" ) );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_LIBEDIT_DELETE_CURRENT_POLY_SEGMENT:
|
|
|
|
|
|
|
|
|
|
// Delete the last created segment, while creating a polyline draw item
|
|
|
|
|
if( CurrentDrawItem == NULL )
|
|
|
|
|
break;
|
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
DeleteDrawPoly( &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_LIBEDIT_DELETE_ITEM:
|
|
|
|
|
if( CurrentDrawItem == NULL )
|
|
|
|
|
break;
|
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
DrawPanel->CursorOff( &dc );
|
|
|
|
|
SaveCopyInUndoList( CurrentLibEntry );
|
|
|
|
|
if( CurrentDrawItem->Type() == COMPONENT_PIN_DRAW_TYPE )
|
|
|
|
|
{
|
|
|
|
|
DeletePin( &dc, CurrentLibEntry, (LibDrawPin*) CurrentDrawItem );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if( DrawPanel->ManageCurseur && DrawPanel->ForceCloseManageCurseur )
|
|
|
|
|
DrawPanel->ForceCloseManageCurseur( DrawPanel, &dc );
|
|
|
|
|
else
|
2008-12-30 19:18:56 +00:00
|
|
|
|
DeleteOneLibraryDrawStruct( DrawPanel, &dc, CurrentLibEntry, CurrentDrawItem, true );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CurrentDrawItem = NULL;
|
2008-04-17 16:25:29 +00:00
|
|
|
|
GetScreen()->SetModify();
|
2007-09-15 04:25:54 +00:00
|
|
|
|
DrawPanel->CursorOn( &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_LIBEDIT_MOVE_ITEM_REQUEST:
|
|
|
|
|
if( CurrentDrawItem == NULL )
|
|
|
|
|
break;
|
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
if( CurrentDrawItem->Type() == COMPONENT_PIN_DRAW_TYPE )
|
|
|
|
|
StartMovePin( &dc );
|
|
|
|
|
else if( CurrentDrawItem->Type() == COMPONENT_FIELD_DRAW_TYPE )
|
|
|
|
|
StartMoveField( &dc, (LibDrawField*) CurrentDrawItem );
|
|
|
|
|
else
|
|
|
|
|
StartMoveDrawSymbol( &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_LIBEDIT_ROTATE_GRAPHIC_TEXT:
|
|
|
|
|
if( CurrentDrawItem == NULL )
|
|
|
|
|
break;
|
|
|
|
|
DrawPanel->CursorOff( &dc );
|
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
if( (CurrentDrawItem->m_Flags & IS_NEW) == 0 )
|
|
|
|
|
SaveCopyInUndoList( CurrentLibEntry );
|
|
|
|
|
RotateSymbolText( &dc );
|
|
|
|
|
DrawPanel->CursorOn( &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_LIBEDIT_FIELD_ROTATE_ITEM:
|
|
|
|
|
if( CurrentDrawItem == NULL )
|
|
|
|
|
break;
|
|
|
|
|
DrawPanel->CursorOff( &dc );
|
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
if( CurrentDrawItem->Type() == COMPONENT_FIELD_DRAW_TYPE )
|
|
|
|
|
{
|
|
|
|
|
SaveCopyInUndoList( CurrentLibEntry );
|
|
|
|
|
RotateField( &dc, (LibDrawField*) CurrentDrawItem );
|
|
|
|
|
}
|
|
|
|
|
DrawPanel->CursorOn( &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_LIBEDIT_FIELD_EDIT_ITEM:
|
|
|
|
|
if( CurrentDrawItem == NULL )
|
|
|
|
|
break;
|
|
|
|
|
DrawPanel->CursorOff( &dc );
|
|
|
|
|
if( CurrentDrawItem->Type() == COMPONENT_FIELD_DRAW_TYPE )
|
|
|
|
|
{
|
|
|
|
|
EditField( &dc, (LibDrawField*) CurrentDrawItem );
|
|
|
|
|
}
|
2008-04-17 16:25:29 +00:00
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
2007-09-15 04:25:54 +00:00
|
|
|
|
DrawPanel->CursorOn( &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_LIBEDIT_PIN_GLOBAL_CHANGE_PINSIZE_ITEM:
|
|
|
|
|
case ID_POPUP_LIBEDIT_PIN_GLOBAL_CHANGE_PINNAMESIZE_ITEM:
|
|
|
|
|
case ID_POPUP_LIBEDIT_PIN_GLOBAL_CHANGE_PINNUMSIZE_ITEM:
|
|
|
|
|
if( (CurrentDrawItem == NULL)
|
|
|
|
|
|| (CurrentDrawItem->Type() != COMPONENT_PIN_DRAW_TYPE) )
|
|
|
|
|
break;
|
|
|
|
|
SaveCopyInUndoList( CurrentLibEntry );
|
|
|
|
|
GlobalSetPins( &dc, (LibDrawPin*) CurrentDrawItem, id );
|
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_ZOOM_BLOCK:
|
2008-12-30 19:18:56 +00:00
|
|
|
|
DrawPanel->m_AutoPAN_Request = false;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
GetScreen()->BlockLocate.m_Command = BLOCK_ZOOM;
|
|
|
|
|
HandleBlockEnd( &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_DELETE_BLOCK:
|
2008-12-30 19:18:56 +00:00
|
|
|
|
DrawPanel->m_AutoPAN_Request = false;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
GetScreen()->BlockLocate.m_Command = BLOCK_DELETE;
|
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
HandleBlockEnd( &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_COPY_BLOCK:
|
2008-12-30 19:18:56 +00:00
|
|
|
|
DrawPanel->m_AutoPAN_Request = false;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
GetScreen()->BlockLocate.m_Command = BLOCK_COPY;
|
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
HandleBlockPlace( &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_SELECT_ITEMS_BLOCK:
|
2008-12-30 19:18:56 +00:00
|
|
|
|
DrawPanel->m_AutoPAN_Request = false;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
GetScreen()->BlockLocate.m_Command = BLOCK_SELECT_ITEMS_ONLY;
|
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
HandleBlockEnd( &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_INVERT_BLOCK:
|
2008-12-30 19:18:56 +00:00
|
|
|
|
DrawPanel->m_AutoPAN_Request = false;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
GetScreen()->BlockLocate.m_Command = BLOCK_INVERT;
|
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
HandleBlockPlace( &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_POPUP_PLACE_BLOCK:
|
2008-12-30 19:18:56 +00:00
|
|
|
|
DrawPanel->m_AutoPAN_Request = false;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
DrawPanel->MouseToCursorSchema();
|
|
|
|
|
HandleBlockPlace( &dc );
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_UNDO:
|
2007-09-19 15:29:50 +00:00
|
|
|
|
if( GetComponentFromUndoList() )
|
2008-12-30 19:18:56 +00:00
|
|
|
|
DrawPanel->Refresh( true );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case ID_LIBEDIT_REDO:
|
2007-09-19 15:29:50 +00:00
|
|
|
|
if( GetComponentFromRedoList() )
|
2008-12-30 19:18:56 +00:00
|
|
|
|
DrawPanel->Refresh( true );
|
2007-09-15 04:25:54 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
DisplayError( this, wxT( "WinEDA_LibeditFrame::Process_Special_Functions error" ) );
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-30 19:18:56 +00:00
|
|
|
|
DrawPanel->m_IgnoreMouseEvents = false;
|
2007-09-15 04:25:54 +00:00
|
|
|
|
|
|
|
|
|
if( m_ID_current_state == 0 )
|
|
|
|
|
LibItemToRepeat = NULL;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|