2013-05-28 16:54:59 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1992-2012 KiCad Developers, see AUTHORS.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 edit.cpp
|
|
|
|
* @brief Module editor dialog box for editing module properties and characteristics.
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <confirm.h>
|
2013-03-23 13:30:00 +00:00
|
|
|
#include <class_drawpanel.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <wxPcbStruct.h>
|
|
|
|
#include <module_editor_frame.h>
|
|
|
|
#include <3d_viewer.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_module.h>
|
|
|
|
#include <class_pad.h>
|
|
|
|
#include <class_edge_mod.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_edit_module_for_BoardEditor.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/*
|
|
|
|
* Show module property dialog.
|
|
|
|
*/
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::InstallModuleOptionsFrame( MODULE* Module, wxDC* DC )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2009-08-11 10:27:21 +00:00
|
|
|
if( Module == NULL )
|
|
|
|
return;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2012-11-25 08:08:25 +00:00
|
|
|
#ifndef __WXMAC__
|
2011-09-07 19:41:04 +00:00
|
|
|
DIALOG_MODULE_BOARD_EDITOR* dialog = new DIALOG_MODULE_BOARD_EDITOR( this, Module, DC );
|
2012-11-25 08:08:25 +00:00
|
|
|
#else
|
|
|
|
// avoid Avoid "writes" in the dialog, creates errors with WxOverlay and NSView & Modal
|
|
|
|
// Raising an Exception - Fixes #764678
|
|
|
|
DIALOG_MODULE_BOARD_EDITOR* dialog = new DIALOG_MODULE_BOARD_EDITOR( this, Module, NULL );
|
|
|
|
#endif
|
2013-03-23 13:30:00 +00:00
|
|
|
|
2009-08-11 10:27:21 +00:00
|
|
|
int retvalue = dialog->ShowModal(); /* retvalue =
|
|
|
|
* -1 if abort,
|
|
|
|
* 0 if exchange module,
|
|
|
|
* 1 for normal edition
|
|
|
|
* and 2 for a goto editor command
|
|
|
|
*/
|
|
|
|
dialog->Destroy();
|
|
|
|
|
2012-11-25 08:08:25 +00:00
|
|
|
#ifdef __WXMAC__
|
|
|
|
// If something edited, push a refresh request
|
|
|
|
if (retvalue == 0 || retvalue == 1)
|
2013-09-06 09:31:16 +00:00
|
|
|
RefreshCanvas();
|
2012-11-25 08:08:25 +00:00
|
|
|
#endif
|
|
|
|
|
2009-08-11 10:27:21 +00:00
|
|
|
if( retvalue == 2 )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2013-05-28 16:54:59 +00:00
|
|
|
FOOTPRINT_EDIT_FRAME* editorFrame = FOOTPRINT_EDIT_FRAME::GetActiveFootprintEditor();
|
|
|
|
|
2012-09-12 09:53:11 +00:00
|
|
|
if( editorFrame == NULL )
|
2013-05-28 16:54:59 +00:00
|
|
|
editorFrame = new FOOTPRINT_EDIT_FRAME( this, m_footprintLibTable );
|
2012-09-12 09:53:11 +00:00
|
|
|
|
|
|
|
editorFrame->Load_Module_From_BOARD( Module );
|
2007-09-12 02:14:07 +00:00
|
|
|
SetCurItem( NULL );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2012-09-12 09:53:11 +00:00
|
|
|
editorFrame->Show( true );
|
|
|
|
editorFrame->Iconize( false );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-26 17:01:17 +00:00
|
|
|
void FOOTPRINT_EDIT_FRAME::RemoveStruct( EDA_ITEM* Item )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-20 01:20:48 +00:00
|
|
|
if( Item == NULL )
|
|
|
|
return;
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
switch( Item->Type() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_PAD_T:
|
2010-08-11 13:15:30 +00:00
|
|
|
DeletePad( (D_PAD*) Item, false );
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MODULE_TEXT_T:
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
|
|
|
TEXTE_MODULE* text = (TEXTE_MODULE*) Item;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
switch( text->GetType() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2013-04-07 11:55:18 +00:00
|
|
|
case TEXTE_MODULE::TEXT_is_REFERENCE:
|
2013-03-23 13:30:00 +00:00
|
|
|
DisplayError( this, _( "Cannot delete REFERENCE!" ) );
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
case TEXTE_MODULE::TEXT_is_VALUE:
|
2013-03-23 13:30:00 +00:00
|
|
|
DisplayError( this, _( "Cannot delete VALUE!" ) );
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2013-05-28 16:54:59 +00:00
|
|
|
default:
|
2013-04-07 11:55:18 +00:00
|
|
|
DeleteTextModule( text );
|
|
|
|
}
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
2009-08-11 10:27:21 +00:00
|
|
|
break;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MODULE_EDGE_T:
|
2009-05-23 07:16:05 +00:00
|
|
|
Delete_Edge_Module( (EDGE_MODULE*) Item );
|
2013-09-06 09:31:16 +00:00
|
|
|
RefreshCanvas();
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
2011-10-01 19:24:27 +00:00
|
|
|
case PCB_MODULE_T:
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
wxString Line;
|
2013-03-23 13:30:00 +00:00
|
|
|
Line.Printf( wxT( " RemoveStruct: item type %d unknown." ), Item->Type() );
|
|
|
|
wxMessageBox( Line );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
2009-08-11 10:27:21 +00:00
|
|
|
break;
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|