2014-07-09 13:02:56 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-02-21 20:16:28 +00:00
|
|
|
* Copyright (C) 2014-2015 CERN
|
2014-07-09 13:02:56 +00:00
|
|
|
* @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 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
|
|
|
|
*/
|
|
|
|
|
2017-01-27 11:07:29 +00:00
|
|
|
#include "module_editor_tools.h"
|
2014-07-09 13:02:56 +00:00
|
|
|
#include "selection_tool.h"
|
2017-02-21 12:42:08 +00:00
|
|
|
#include "pcb_actions.h"
|
2015-05-05 18:39:41 +00:00
|
|
|
#include <tool/tool_manager.h>
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
#include <class_draw_panel_gal.h>
|
|
|
|
#include <view/view_controls.h>
|
|
|
|
#include <view/view_group.h>
|
2014-07-09 13:10:32 +00:00
|
|
|
#include <pcb_painter.h>
|
2015-09-05 19:47:35 +00:00
|
|
|
#include <origin_viewitem.h>
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
#include <kicad_plugin.h>
|
|
|
|
#include <pcbnew_id.h>
|
2014-07-09 13:02:56 +00:00
|
|
|
#include <collectors.h>
|
|
|
|
#include <confirm.h>
|
2014-07-09 13:10:32 +00:00
|
|
|
#include <dialogs/dialog_enum_pads.h>
|
2017-02-20 18:10:20 +00:00
|
|
|
#include <hotkeys.h>
|
|
|
|
#include <bitmaps.h>
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
#include <wxPcbStruct.h>
|
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_module.h>
|
|
|
|
#include <class_edge_mod.h>
|
2016-06-21 15:06:28 +00:00
|
|
|
#include <board_commit.h>
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-02-04 05:09:50 +00:00
|
|
|
#include <tools/tool_event_utils.h>
|
|
|
|
|
2016-06-29 10:23:11 +00:00
|
|
|
#include <functional>
|
|
|
|
using namespace std::placeholders;
|
2014-07-09 13:10:32 +00:00
|
|
|
#include <wx/defs.h>
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-02-20 18:10:20 +00:00
|
|
|
// Module editor tools
|
|
|
|
TOOL_ACTION PCB_ACTIONS::placePad( "pcbnew.ModuleEditor.placePad",
|
|
|
|
AS_GLOBAL, 0,
|
|
|
|
_( "Add Pad" ), _( "Add a pad" ), NULL, AF_ACTIVATE );
|
|
|
|
|
|
|
|
TOOL_ACTION PCB_ACTIONS::enumeratePads( "pcbnew.ModuleEditor.enumeratePads",
|
|
|
|
AS_GLOBAL, 0,
|
|
|
|
_( "Enumerate Pads" ), _( "Enumerate pads" ), pad_enumerate_xpm, AF_ACTIVATE );
|
|
|
|
|
|
|
|
TOOL_ACTION PCB_ACTIONS::copyItems( "pcbnew.ModuleEditor.copyItems",
|
|
|
|
AS_GLOBAL, TOOL_ACTION::LegacyHotKey( HK_COPY_ITEM ),
|
|
|
|
_( "Copy" ), _( "Copy items" ), NULL, AF_ACTIVATE );
|
|
|
|
|
|
|
|
TOOL_ACTION PCB_ACTIONS::pasteItems( "pcbnew.ModuleEditor.pasteItems",
|
|
|
|
AS_GLOBAL, MD_CTRL + int( 'V' ),
|
|
|
|
_( "Paste" ), _( "Paste items" ), NULL, AF_ACTIVATE );
|
|
|
|
|
|
|
|
TOOL_ACTION PCB_ACTIONS::moduleEdgeOutlines( "pcbnew.ModuleEditor.graphicOutlines",
|
|
|
|
AS_GLOBAL, 0,
|
|
|
|
"", "" );
|
|
|
|
|
|
|
|
TOOL_ACTION PCB_ACTIONS::moduleTextOutlines( "pcbnew.ModuleEditor.textOutlines",
|
|
|
|
AS_GLOBAL, 0,
|
|
|
|
"", "" );
|
|
|
|
|
|
|
|
|
2017-01-27 11:07:29 +00:00
|
|
|
MODULE_EDITOR_TOOLS::MODULE_EDITOR_TOOLS() :
|
2017-04-18 15:32:05 +00:00
|
|
|
PCB_TOOL( "pcbnew.ModuleEditor" )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
2015-09-05 19:47:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-27 11:07:29 +00:00
|
|
|
MODULE_EDITOR_TOOLS::~MODULE_EDITOR_TOOLS()
|
2015-09-05 19:47:35 +00:00
|
|
|
{
|
2014-07-09 13:02:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-27 11:07:29 +00:00
|
|
|
void MODULE_EDITOR_TOOLS::Reset( RESET_REASON aReason )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-22 15:46:31 +00:00
|
|
|
|
2017-01-27 11:07:29 +00:00
|
|
|
int MODULE_EDITOR_TOOLS::PlacePad( const TOOL_EVENT& aEvent )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
2017-04-22 15:46:31 +00:00
|
|
|
struct PAD_PLACER : public INTERACTIVE_PLACER_BASE
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
2017-04-22 15:46:31 +00:00
|
|
|
std::unique_ptr<BOARD_ITEM> CreateItem() override
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
2017-04-22 15:46:31 +00:00
|
|
|
D_PAD* pad = new D_PAD ( m_board->m_Modules );
|
|
|
|
m_frame->Import_Pad_Settings( pad, false ); // use the global settings for pad
|
2017-06-23 13:19:04 +00:00
|
|
|
pad->IncrementPadName( true, true );
|
2017-04-22 15:46:31 +00:00
|
|
|
return std::unique_ptr<BOARD_ITEM>( pad );
|
2014-07-09 13:02:56 +00:00
|
|
|
}
|
2017-04-22 15:46:31 +00:00
|
|
|
};
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-04-22 15:46:31 +00:00
|
|
|
PAD_PLACER placer;
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-04-22 15:46:31 +00:00
|
|
|
frame()->SetToolID( ID_MODEDIT_PAD_TOOL, wxCURSOR_PENCIL, _( "Add pads" ) );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-04-22 15:46:31 +00:00
|
|
|
assert( board()->m_Modules );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-04-22 15:46:31 +00:00
|
|
|
doInteractiveItemPlacement( &placer, _( "Place pad" ), IPO_REPEAT | IPO_SINGLE_CLICK | IPO_ROTATE | IPO_FLIP | IPO_PROPERTIES );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-04-18 15:32:05 +00:00
|
|
|
frame()->SetNoToolSelected();
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-27 11:07:29 +00:00
|
|
|
int MODULE_EDITOR_TOOLS::EnumeratePads( const TOOL_EVENT& aEvent )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
2017-04-25 09:06:24 +00:00
|
|
|
if( !board()->m_Modules || !board()->m_Modules->PadsList() )
|
2015-08-25 08:22:52 +00:00
|
|
|
return 0;
|
|
|
|
|
2017-07-19 13:58:53 +00:00
|
|
|
DIALOG_ENUM_PADS settingsDlg( frame() );
|
|
|
|
|
|
|
|
if( settingsDlg.ShowModal() != wxID_OK )
|
|
|
|
return 0;
|
|
|
|
|
2017-03-02 11:34:19 +00:00
|
|
|
Activate();
|
|
|
|
|
2014-07-09 13:02:56 +00:00
|
|
|
GENERAL_COLLECTOR collector;
|
|
|
|
const KICAD_T types[] = { PCB_PAD_T, EOT };
|
|
|
|
|
2017-04-18 15:32:05 +00:00
|
|
|
GENERAL_COLLECTORS_GUIDE guide = frame()->GetCollectorsGuide();
|
2014-07-09 13:02:56 +00:00
|
|
|
guide.SetIgnoreMTextsMarkedNoShow( true );
|
2014-09-11 16:35:19 +00:00
|
|
|
guide.SetIgnoreMTextsOnBack( true );
|
|
|
|
guide.SetIgnoreMTextsOnFront( true );
|
2014-07-09 13:02:56 +00:00
|
|
|
guide.SetIgnoreModulesVals( true );
|
|
|
|
guide.SetIgnoreModulesRefs( true );
|
|
|
|
|
2014-07-09 13:10:32 +00:00
|
|
|
int padNumber = settingsDlg.GetStartNumber();
|
|
|
|
wxString padPrefix = settingsDlg.GetPrefix();
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-04-18 15:32:05 +00:00
|
|
|
frame()->DisplayToolMsg( _(
|
|
|
|
"Hold left mouse button and move cursor over pads to enumerate them" ) );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-02-21 12:42:08 +00:00
|
|
|
m_toolMgr->RunAction( PCB_ACTIONS::selectionClear, true );
|
2017-04-18 15:32:05 +00:00
|
|
|
getViewControls()->ShowCursor( true );
|
2017-07-19 13:58:53 +00:00
|
|
|
frame()->GetGalCanvas()->SetCursor( wxCURSOR_HAND );
|
2017-03-02 11:34:19 +00:00
|
|
|
|
|
|
|
KIGFX::VIEW* view = m_toolMgr->GetView();
|
2017-07-19 13:58:53 +00:00
|
|
|
VECTOR2I oldCursorPos; // store the previous mouse cursor position, during mouse drag
|
2015-02-21 20:16:28 +00:00
|
|
|
std::list<D_PAD*> selectedPads;
|
2017-04-18 15:32:05 +00:00
|
|
|
BOARD_COMMIT commit( frame() );
|
2017-03-02 11:34:19 +00:00
|
|
|
std::map<wxString, wxString> oldNames;
|
2017-07-19 13:58:53 +00:00
|
|
|
bool isFirstPoint = true; // used to be sure oldCursorPos will be initialized at least once.
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
while( OPT_TOOL_EVENT evt = Wait() )
|
|
|
|
{
|
2017-07-19 13:58:53 +00:00
|
|
|
if( evt->IsDrag( BUT_LEFT ) )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
2015-02-21 20:16:28 +00:00
|
|
|
selectedPads.clear();
|
2017-04-18 15:32:05 +00:00
|
|
|
VECTOR2I cursorPos = getViewControls()->GetCursorPosition();
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-07-19 13:58:53 +00:00
|
|
|
// Be sure the old cursor mouse position was initialized:
|
|
|
|
if( isFirstPoint )
|
|
|
|
{
|
|
|
|
oldCursorPos = cursorPos;
|
|
|
|
isFirstPoint = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// wxWidgets deliver mouse move events not frequently enough, resulting in skipping
|
|
|
|
// pads if the user moves cursor too fast. To solve it, create a line that approximates
|
|
|
|
// the mouse move and search pads that are on the line.
|
|
|
|
int distance = ( cursorPos - oldCursorPos ).EuclideanNorm();
|
|
|
|
// Search will be made every 0.1 mm:
|
|
|
|
int segments = distance / int( 0.1*IU_PER_MM ) + 1;
|
|
|
|
const wxPoint line_step( ( cursorPos - oldCursorPos ) / segments );
|
|
|
|
|
|
|
|
collector.Empty();
|
|
|
|
|
|
|
|
for( int j = 0; j < segments; ++j )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
2017-07-19 13:58:53 +00:00
|
|
|
wxPoint testpoint( cursorPos.x - j * line_step.x,
|
|
|
|
cursorPos.y - j * line_step.y );
|
|
|
|
collector.Collect( board(), types, testpoint, guide );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2015-02-21 20:16:28 +00:00
|
|
|
for( int i = 0; i < collector.GetCount(); ++i )
|
|
|
|
{
|
2017-07-19 13:58:53 +00:00
|
|
|
selectedPads.push_back( static_cast<D_PAD*>( collector[i] ) );
|
2015-02-21 20:16:28 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-07-19 13:58:53 +00:00
|
|
|
selectedPads.unique();
|
2015-02-21 20:16:28 +00:00
|
|
|
|
2016-06-29 20:07:55 +00:00
|
|
|
for( D_PAD* pad : selectedPads )
|
2015-02-21 20:16:28 +00:00
|
|
|
{
|
2017-03-02 11:34:19 +00:00
|
|
|
// If pad was not selected, then enumerate it
|
|
|
|
if( !pad->IsSelected() )
|
2015-02-21 20:16:28 +00:00
|
|
|
{
|
2017-03-02 11:34:19 +00:00
|
|
|
commit.Modify( pad );
|
|
|
|
|
|
|
|
// Rename pad and store the old name
|
|
|
|
wxString newName = wxString::Format( wxT( "%s%d" ), padPrefix.c_str(), padNumber++ );
|
|
|
|
oldNames[newName] = pad->GetPadName();
|
|
|
|
pad->SetPadName( newName );
|
2015-02-21 20:16:28 +00:00
|
|
|
pad->SetSelected();
|
2017-03-02 11:34:19 +00:00
|
|
|
getView()->Update( pad );
|
2015-02-21 20:16:28 +00:00
|
|
|
}
|
|
|
|
|
2017-03-02 11:34:19 +00:00
|
|
|
// ..or restore the old name if it was enumerated and clicked again
|
|
|
|
else if( pad->IsSelected() && evt->IsClick( BUT_LEFT ) )
|
2015-02-21 20:16:28 +00:00
|
|
|
{
|
2017-03-02 11:34:19 +00:00
|
|
|
auto it = oldNames.find( pad->GetPadName() );
|
|
|
|
wxASSERT( it != oldNames.end() );
|
|
|
|
|
|
|
|
if( it != oldNames.end() )
|
|
|
|
{
|
|
|
|
pad->SetPadName( it->second );
|
|
|
|
oldNames.erase( it );
|
|
|
|
}
|
|
|
|
|
2015-02-21 20:16:28 +00:00
|
|
|
pad->ClearSelected();
|
2017-03-02 11:34:19 +00:00
|
|
|
getView()->Update( pad );
|
2014-07-09 13:02:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else if( ( evt->IsKeyPressed() && evt->KeyCode() == WXK_RETURN ) ||
|
|
|
|
evt->IsDblClick( BUT_LEFT ) )
|
|
|
|
{
|
2016-06-21 15:06:28 +00:00
|
|
|
commit.Push( _( "Enumerate pads" ) );
|
2014-07-09 13:02:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if( evt->IsCancel() || evt->IsActivate() )
|
|
|
|
{
|
2017-03-02 11:34:19 +00:00
|
|
|
commit.Revert();
|
2014-07-09 13:02:56 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-07-19 13:58:53 +00:00
|
|
|
|
|
|
|
// Prepare the next loop by updating the old cursor mouse position
|
|
|
|
// to this last mouse cursor position
|
|
|
|
oldCursorPos = getViewControls()->GetCursorPosition();
|
2014-07-09 13:02:56 +00:00
|
|
|
}
|
|
|
|
|
2017-04-25 09:06:24 +00:00
|
|
|
for( auto p : board()->m_Modules->Pads() )
|
2017-03-02 11:34:19 +00:00
|
|
|
{
|
|
|
|
p->ClearSelected();
|
|
|
|
view->Update( p );
|
|
|
|
}
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-04-18 15:32:05 +00:00
|
|
|
frame()->DisplayToolMsg( wxEmptyString );
|
2017-07-19 13:58:53 +00:00
|
|
|
frame()->GetGalCanvas()->SetCursor( wxCURSOR_ARROW );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-27 11:07:29 +00:00
|
|
|
int MODULE_EDITOR_TOOLS::CopyItems( const TOOL_EVENT& aEvent )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
2014-07-09 13:10:32 +00:00
|
|
|
const SELECTION& selection = m_toolMgr->GetTool<SELECTION_TOOL>()->GetSelection();
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
Activate();
|
|
|
|
|
2017-04-18 15:32:05 +00:00
|
|
|
getViewControls()->SetSnapping( true );
|
|
|
|
getViewControls()->ShowCursor( true );
|
|
|
|
getViewControls()->SetAutoPan( true );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-04-18 15:32:05 +00:00
|
|
|
frame()->DisplayToolMsg( _( "Select reference point" ) );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
bool cancelled = false;
|
2017-04-18 15:32:05 +00:00
|
|
|
VECTOR2I cursorPos = getViewControls()->GetCursorPosition();
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
while( OPT_TOOL_EVENT evt = Wait() )
|
|
|
|
{
|
|
|
|
if( evt->IsMotion() )
|
|
|
|
{
|
2017-04-18 15:32:05 +00:00
|
|
|
cursorPos = getViewControls()->GetCursorPosition();
|
2014-07-09 13:02:56 +00:00
|
|
|
}
|
|
|
|
else if( evt->IsClick( BUT_LEFT ) )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if( evt->IsCancel() || evt->IsActivate() )
|
|
|
|
{
|
|
|
|
cancelled = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !cancelled )
|
|
|
|
{
|
|
|
|
PCB_IO io( CTL_FOR_CLIPBOARD );
|
|
|
|
|
|
|
|
// Create a temporary module that contains selected items to ease serialization
|
2017-04-18 15:32:05 +00:00
|
|
|
MODULE module( board() );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2016-12-09 11:04:32 +00:00
|
|
|
for( auto item : selection )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
2016-12-09 11:04:32 +00:00
|
|
|
auto clone = static_cast<BOARD_ITEM*>( item->Clone() );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
// Do not add reference/value - convert them to the common type
|
|
|
|
if( TEXTE_MODULE* text = dyn_cast<TEXTE_MODULE*>( clone ) )
|
|
|
|
text->SetType( TEXTE_MODULE::TEXT_is_DIVERS );
|
|
|
|
|
|
|
|
module.Add( clone );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the new relative internal local coordinates of copied items
|
2017-04-18 15:32:05 +00:00
|
|
|
MODULE* editedModule = board()->m_Modules;
|
2014-07-09 13:02:56 +00:00
|
|
|
wxPoint moveVector = module.GetPosition() + editedModule->GetPosition() -
|
|
|
|
wxPoint( cursorPos.x, cursorPos.y );
|
|
|
|
module.MoveAnchorPosition( moveVector );
|
|
|
|
|
|
|
|
io.Format( &module, 0 );
|
|
|
|
std::string data = io.GetStringOutput( true );
|
|
|
|
m_toolMgr->SaveClipboard( data );
|
|
|
|
}
|
|
|
|
|
2017-04-18 15:32:05 +00:00
|
|
|
frame()->DisplayToolMsg( wxString::Format( _( "Copied %d item(s)" ), selection.Size() ) );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-27 11:07:29 +00:00
|
|
|
int MODULE_EDITOR_TOOLS::PasteItems( const TOOL_EVENT& aEvent )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
|
|
|
// Parse clipboard
|
|
|
|
PCB_IO io( CTL_FOR_CLIPBOARD );
|
|
|
|
MODULE* pastedModule = NULL;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
BOARD_ITEM* item = io.Parse( wxString( m_toolMgr->GetClipboard().c_str(), wxConvUTF8 ) );
|
|
|
|
assert( item->Type() == PCB_MODULE_T );
|
|
|
|
pastedModule = dyn_cast<MODULE*>( item );
|
|
|
|
}
|
|
|
|
catch( ... )
|
|
|
|
{
|
2017-04-18 15:32:05 +00:00
|
|
|
frame()->DisplayToolMsg( _( "Invalid clipboard contents" ) );
|
2014-07-09 13:02:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Placement tool part
|
2017-04-18 15:32:05 +00:00
|
|
|
VECTOR2I cursorPos = getViewControls()->GetCursorPosition();
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
// Add a VIEW_GROUP that serves as a preview for the new item
|
2017-04-18 15:32:05 +00:00
|
|
|
KIGFX::VIEW_GROUP preview( view() );
|
|
|
|
pastedModule->SetParent( board() );
|
2014-07-09 13:02:56 +00:00
|
|
|
pastedModule->SetPosition( wxPoint( cursorPos.x, cursorPos.y ) );
|
2016-11-04 21:29:47 +00:00
|
|
|
pastedModule->RunOnChildren( std::bind( &KIGFX::VIEW_GROUP::Add,
|
2016-06-29 10:23:11 +00:00
|
|
|
std::ref( preview ), _1 ) );
|
2014-07-09 13:02:56 +00:00
|
|
|
preview.Add( pastedModule );
|
2017-04-18 15:32:05 +00:00
|
|
|
view()->Add( &preview );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-02-21 12:42:08 +00:00
|
|
|
m_toolMgr->RunAction( PCB_ACTIONS::selectionClear, true );
|
2017-04-18 15:32:05 +00:00
|
|
|
getViewControls()->ShowCursor( true );
|
|
|
|
getViewControls()->SetSnapping( true );
|
|
|
|
getViewControls()->SetAutoPan( true );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
Activate();
|
|
|
|
|
|
|
|
// Main loop: keep receiving events
|
|
|
|
while( OPT_TOOL_EVENT evt = Wait() )
|
|
|
|
{
|
2017-04-18 15:32:05 +00:00
|
|
|
cursorPos = getViewControls()->GetCursorPosition();
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
if( evt->IsMotion() )
|
|
|
|
{
|
|
|
|
pastedModule->SetPosition( wxPoint( cursorPos.x, cursorPos.y ) );
|
2017-04-18 15:32:05 +00:00
|
|
|
view()->Update( &preview );
|
2014-07-09 13:02:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else if( evt->Category() == TC_COMMAND )
|
|
|
|
{
|
2017-02-04 05:09:50 +00:00
|
|
|
if( TOOL_EVT_UTILS::IsRotateToolEvt( *evt ) )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
2017-02-04 05:09:50 +00:00
|
|
|
const auto rotationAngle = TOOL_EVT_UTILS::GetEventRotationAngle(
|
2017-04-18 15:32:05 +00:00
|
|
|
*frame(), *evt );
|
2017-02-04 05:09:50 +00:00
|
|
|
pastedModule->Rotate( pastedModule->GetPosition(), rotationAngle );
|
2017-04-18 15:32:05 +00:00
|
|
|
view()->Update( &preview );
|
2014-07-09 13:02:56 +00:00
|
|
|
}
|
2017-02-21 12:42:08 +00:00
|
|
|
else if( evt->IsAction( &PCB_ACTIONS::flip ) )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
|
|
|
pastedModule->Flip( pastedModule->GetPosition() );
|
2017-04-18 15:32:05 +00:00
|
|
|
view()->Update( &preview );
|
2014-07-09 13:02:56 +00:00
|
|
|
}
|
|
|
|
else if( evt->IsCancel() || evt->IsActivate() )
|
|
|
|
{
|
|
|
|
preview.Clear();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else if( evt->IsClick( BUT_LEFT ) )
|
|
|
|
{
|
2017-04-18 15:32:05 +00:00
|
|
|
BOARD_COMMIT commit( frame() );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2017-04-18 15:32:05 +00:00
|
|
|
board()->m_Status_Pcb = 0; // I have no clue why, but it is done in the legacy view
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
// MODULE::RunOnChildren is infeasible here: we need to create copies of items, do not
|
|
|
|
// directly modify them
|
|
|
|
|
2017-04-25 09:06:24 +00:00
|
|
|
for( auto pad : pastedModule->Pads() )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
|
|
|
D_PAD* clone = static_cast<D_PAD*>( pad->Clone() );
|
2016-06-21 15:06:28 +00:00
|
|
|
commit.Add( clone );
|
2014-07-09 13:02:56 +00:00
|
|
|
}
|
|
|
|
|
2017-04-25 09:06:24 +00:00
|
|
|
for( auto drawing : pastedModule->GraphicalItems() )
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
|
|
|
BOARD_ITEM* clone = static_cast<BOARD_ITEM*>( drawing->Clone() );
|
|
|
|
|
|
|
|
if( TEXTE_MODULE* text = dyn_cast<TEXTE_MODULE*>( clone ) )
|
|
|
|
{
|
|
|
|
// Do not add reference/value - convert them to the common type
|
|
|
|
text->SetType( TEXTE_MODULE::TEXT_is_DIVERS );
|
|
|
|
|
|
|
|
// Whyyyyyyyyyyyyyyyyyyyyyy?! All other items conform to rotation performed
|
|
|
|
// on its parent module, but texts are so independent..
|
|
|
|
text->Rotate( text->GetPosition(), pastedModule->GetOrientation() );
|
2016-06-21 15:06:28 +00:00
|
|
|
commit.Add( text );
|
2014-07-09 13:02:56 +00:00
|
|
|
}
|
|
|
|
|
2016-06-21 15:06:28 +00:00
|
|
|
commit.Add( clone );
|
2014-07-09 13:02:56 +00:00
|
|
|
}
|
|
|
|
|
2016-06-21 15:06:28 +00:00
|
|
|
commit.Push( _( "Paste clipboard contents" ) );
|
2014-07-09 13:02:56 +00:00
|
|
|
preview.Clear();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
delete pastedModule;
|
2017-04-18 15:32:05 +00:00
|
|
|
view()->Remove( &preview );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-27 11:07:29 +00:00
|
|
|
int MODULE_EDITOR_TOOLS::ModuleTextOutlines( const TOOL_EVENT& aEvent )
|
2014-07-09 13:10:32 +00:00
|
|
|
{
|
2017-01-17 12:34:56 +00:00
|
|
|
KIGFX::VIEW* view = getView();
|
2014-07-09 13:10:32 +00:00
|
|
|
KIGFX::PCB_RENDER_SETTINGS* settings =
|
2017-01-17 12:34:56 +00:00
|
|
|
static_cast<KIGFX::PCB_RENDER_SETTINGS*>( view->GetPainter()->GetSettings() );
|
2014-07-09 13:10:32 +00:00
|
|
|
|
2017-03-13 03:19:33 +00:00
|
|
|
const LAYER_NUM layers[] = { LAYER_MOD_TEXT_BK,
|
|
|
|
LAYER_MOD_TEXT_FR,
|
|
|
|
LAYER_MOD_TEXT_INVISIBLE,
|
|
|
|
LAYER_MOD_REFERENCES,
|
|
|
|
LAYER_MOD_VALUES };
|
2014-07-09 13:10:32 +00:00
|
|
|
|
|
|
|
bool enable = !settings->GetSketchMode( layers[0] );
|
|
|
|
|
2016-06-29 20:07:55 +00:00
|
|
|
for( LAYER_NUM layer : layers )
|
2014-07-09 13:10:32 +00:00
|
|
|
settings->SetSketchMode( layer, enable );
|
|
|
|
|
2017-04-18 15:32:05 +00:00
|
|
|
for( auto module : board()->Modules() )
|
2014-07-09 13:10:32 +00:00
|
|
|
{
|
2017-04-25 09:06:24 +00:00
|
|
|
for( auto item : module->GraphicalItems() )
|
2014-07-09 13:10:32 +00:00
|
|
|
{
|
|
|
|
if( item->Type() == PCB_MODULE_TEXT_T )
|
2017-01-17 12:34:56 +00:00
|
|
|
view->Update( item, KIGFX::GEOMETRY );
|
2014-07-09 13:10:32 +00:00
|
|
|
}
|
|
|
|
|
2017-01-17 12:34:56 +00:00
|
|
|
view->Update( &module->Reference(), KIGFX::GEOMETRY );
|
|
|
|
view->Update( &module->Value(), KIGFX::GEOMETRY );
|
2014-07-09 13:10:32 +00:00
|
|
|
}
|
|
|
|
|
2017-04-18 15:32:05 +00:00
|
|
|
frame()->GetGalCanvas()->Refresh();
|
2014-07-09 13:10:32 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-27 11:07:29 +00:00
|
|
|
int MODULE_EDITOR_TOOLS::ModuleEdgeOutlines( const TOOL_EVENT& aEvent )
|
2014-07-09 13:10:32 +00:00
|
|
|
{
|
2017-01-17 12:34:56 +00:00
|
|
|
KIGFX::VIEW* view = getView();
|
2014-07-09 13:10:32 +00:00
|
|
|
KIGFX::PCB_RENDER_SETTINGS* settings =
|
2017-01-17 12:34:56 +00:00
|
|
|
static_cast<KIGFX::PCB_RENDER_SETTINGS*>( view->GetPainter()->GetSettings() );
|
2014-07-09 13:10:32 +00:00
|
|
|
|
2017-03-13 03:19:33 +00:00
|
|
|
const PCB_LAYER_ID layers[] = { F_Adhes, B_Adhes, F_Paste, B_Paste,
|
2014-07-09 14:25:50 +00:00
|
|
|
F_SilkS, B_SilkS, F_Mask, B_Mask,
|
|
|
|
Dwgs_User, Cmts_User, Eco1_User, Eco2_User, Edge_Cuts };
|
2014-07-09 13:10:32 +00:00
|
|
|
|
|
|
|
bool enable = !settings->GetSketchMode( layers[0] );
|
|
|
|
|
2016-06-29 20:07:55 +00:00
|
|
|
for( LAYER_NUM layer : layers )
|
2014-07-09 13:10:32 +00:00
|
|
|
settings->SetSketchMode( layer, enable );
|
|
|
|
|
2017-04-18 15:32:05 +00:00
|
|
|
for( auto module : board()->Modules() )
|
2014-07-09 13:10:32 +00:00
|
|
|
{
|
2017-04-25 09:06:24 +00:00
|
|
|
for( auto item : module->GraphicalItems() )
|
2014-07-09 13:10:32 +00:00
|
|
|
{
|
|
|
|
if( item->Type() == PCB_MODULE_EDGE_T )
|
2017-01-17 12:34:56 +00:00
|
|
|
view->Update( item, KIGFX::GEOMETRY );
|
2014-07-09 13:10:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-18 15:32:05 +00:00
|
|
|
frame()->GetGalCanvas()->Refresh();
|
2014-07-09 13:10:32 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-27 11:07:29 +00:00
|
|
|
void MODULE_EDITOR_TOOLS::SetTransitions()
|
2014-07-09 13:02:56 +00:00
|
|
|
{
|
2017-02-21 12:42:08 +00:00
|
|
|
Go( &MODULE_EDITOR_TOOLS::PlacePad, PCB_ACTIONS::placePad.MakeEvent() );
|
|
|
|
Go( &MODULE_EDITOR_TOOLS::EnumeratePads, PCB_ACTIONS::enumeratePads.MakeEvent() );
|
|
|
|
Go( &MODULE_EDITOR_TOOLS::CopyItems, PCB_ACTIONS::copyItems.MakeEvent() );
|
|
|
|
Go( &MODULE_EDITOR_TOOLS::PasteItems, PCB_ACTIONS::pasteItems.MakeEvent() );
|
|
|
|
Go( &MODULE_EDITOR_TOOLS::ModuleTextOutlines, PCB_ACTIONS::moduleTextOutlines.MakeEvent() );
|
|
|
|
Go( &MODULE_EDITOR_TOOLS::ModuleEdgeOutlines, PCB_ACTIONS::moduleEdgeOutlines.MakeEvent() );
|
2014-07-09 13:02:56 +00:00
|
|
|
}
|