2013-08-02 14:53:50 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 CERN
|
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
2013-09-19 15:02:57 +00:00
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
2013-08-02 14:53:50 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include <boost/optional.hpp>
|
2013-09-26 16:38:58 +00:00
|
|
|
#include <cassert>
|
2013-08-02 14:53:50 +00:00
|
|
|
|
|
|
|
#include <class_drawpanel_gal.h>
|
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_board_item.h>
|
2013-09-04 08:56:06 +00:00
|
|
|
#include <class_track.h>
|
2013-08-02 14:53:50 +00:00
|
|
|
#include <class_module.h>
|
|
|
|
|
|
|
|
#include <wxPcbStruct.h>
|
|
|
|
#include <collectors.h>
|
2013-09-02 14:29:10 +00:00
|
|
|
#include <view/view_controls.h>
|
2013-10-02 08:21:05 +00:00
|
|
|
#include <view/view_group.h>
|
2013-09-17 09:32:47 +00:00
|
|
|
#include <painter.h>
|
2013-08-02 14:53:50 +00:00
|
|
|
|
2013-09-16 07:52:47 +00:00
|
|
|
#include <tool/tool_event.h>
|
|
|
|
#include <tool/tool_manager.h>
|
2013-08-02 14:53:50 +00:00
|
|
|
|
|
|
|
#include "selection_tool.h"
|
|
|
|
#include "selection_area.h"
|
2013-09-16 09:00:59 +00:00
|
|
|
#include "bright_box.h"
|
2013-09-27 18:52:34 +00:00
|
|
|
#include "common_actions.h"
|
2013-08-02 14:53:50 +00:00
|
|
|
|
|
|
|
using boost::optional;
|
|
|
|
|
|
|
|
SELECTION_TOOL::SELECTION_TOOL() :
|
2014-02-05 10:33:45 +00:00
|
|
|
TOOL_INTERACTIVE( "pcbnew.InteractiveSelection" ), m_additive( false ), m_multiple( false )
|
2013-08-06 07:31:08 +00:00
|
|
|
{
|
|
|
|
m_selArea = new SELECTION_AREA;
|
2013-10-14 14:13:35 +00:00
|
|
|
m_selection.group = new KIGFX::VIEW_GROUP;
|
2013-08-06 07:31:08 +00:00
|
|
|
}
|
2013-08-02 14:53:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
SELECTION_TOOL::~SELECTION_TOOL()
|
|
|
|
{
|
2013-10-02 08:21:05 +00:00
|
|
|
delete m_selArea;
|
|
|
|
delete m_selection.group;
|
2013-08-02 14:53:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-09 09:42:38 +00:00
|
|
|
void SELECTION_TOOL::Reset( RESET_REASON aReason )
|
2013-08-02 14:53:50 +00:00
|
|
|
{
|
2013-12-09 09:42:38 +00:00
|
|
|
if( aReason == TOOL_BASE::MODEL_RELOAD )
|
|
|
|
// Remove pointers to the selected items from containers
|
|
|
|
// without changing their properties (as they are already deleted)
|
2014-02-04 10:37:54 +00:00
|
|
|
m_selection.clear();
|
2013-12-09 09:42:38 +00:00
|
|
|
else
|
|
|
|
// Restore previous properties of selected items and remove them from containers
|
2014-02-04 15:03:56 +00:00
|
|
|
clearSelection();
|
2013-12-03 16:11:22 +00:00
|
|
|
|
2013-10-02 09:21:17 +00:00
|
|
|
// Reinsert the VIEW_GROUP, in case it was removed from the VIEW
|
|
|
|
getView()->Remove( m_selection.group );
|
|
|
|
getView()->Add( m_selection.group );
|
|
|
|
|
2013-09-19 15:02:57 +00:00
|
|
|
// The tool launches upon reception of action event ("pcbnew.InteractiveSelection")
|
2013-09-27 18:52:34 +00:00
|
|
|
Go( &SELECTION_TOOL::Main, COMMON_ACTIONS::selectionActivate.MakeEvent() );
|
2013-09-26 16:38:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-06 07:31:08 +00:00
|
|
|
int SELECTION_TOOL::Main( TOOL_EVENT& aEvent )
|
2013-08-02 14:53:50 +00:00
|
|
|
{
|
2013-08-06 07:31:08 +00:00
|
|
|
// Main loop: keep receiving events
|
|
|
|
while( OPT_TOOL_EVENT evt = Wait() )
|
|
|
|
{
|
2013-09-19 15:02:57 +00:00
|
|
|
// Should selected items be added to the current selection or
|
|
|
|
// become the new selection (discarding previously selected items)
|
2013-10-14 18:40:36 +00:00
|
|
|
m_additive = evt->Modifier( MD_SHIFT );
|
2013-08-09 08:18:48 +00:00
|
|
|
|
2014-02-04 15:03:56 +00:00
|
|
|
if( evt->IsAction( &COMMON_ACTIONS::selectionSingle ) )
|
2013-08-22 13:05:37 +00:00
|
|
|
{
|
2014-02-04 15:03:56 +00:00
|
|
|
selectSingle( getView()->ToWorld( getViewControls()->GetMousePosition() ) );
|
2013-08-22 13:05:37 +00:00
|
|
|
}
|
2013-08-06 07:31:08 +00:00
|
|
|
|
2014-02-04 15:03:56 +00:00
|
|
|
else if( evt->IsCancel() || evt->Action() == TA_UNDO_REDO ||
|
|
|
|
evt->IsAction( &COMMON_ACTIONS::selectionClear ) )
|
2014-01-30 10:18:58 +00:00
|
|
|
{
|
2014-02-04 15:03:56 +00:00
|
|
|
clearSelection();
|
2013-08-22 13:05:37 +00:00
|
|
|
}
|
2013-08-06 07:31:08 +00:00
|
|
|
|
|
|
|
// single click? Select single object
|
2013-12-03 14:57:09 +00:00
|
|
|
else if( evt->IsClick( BUT_LEFT ) )
|
|
|
|
{
|
2014-01-31 13:52:01 +00:00
|
|
|
if( !m_additive )
|
2014-02-04 15:03:56 +00:00
|
|
|
clearSelection();
|
2013-12-03 14:57:09 +00:00
|
|
|
|
2013-08-09 08:18:48 +00:00
|
|
|
selectSingle( evt->Position() );
|
2013-12-03 14:57:09 +00:00
|
|
|
}
|
|
|
|
|
2014-02-07 19:44:34 +00:00
|
|
|
// right click? if there is any object - show the context menu
|
|
|
|
else if( evt->IsClick( BUT_RIGHT ) )
|
|
|
|
{
|
|
|
|
if( m_selection.Empty() )
|
|
|
|
selectSingle( evt->Position() );
|
|
|
|
|
|
|
|
if( !m_selection.Empty() )
|
|
|
|
SetContextMenu( &m_menu, CMENU_NOW );
|
|
|
|
}
|
|
|
|
|
2014-02-04 16:27:00 +00:00
|
|
|
// double click? Display the properties window
|
2013-12-03 14:57:09 +00:00
|
|
|
else if( evt->IsDblClick( BUT_LEFT ) )
|
|
|
|
{
|
|
|
|
if( m_selection.Empty() )
|
|
|
|
selectSingle( evt->Position() );
|
|
|
|
|
2013-12-03 15:09:03 +00:00
|
|
|
m_toolMgr->RunAction( "pcbnew.InteractiveEdit.properties" );
|
2013-12-03 14:57:09 +00:00
|
|
|
}
|
2013-08-06 07:31:08 +00:00
|
|
|
|
2013-09-02 14:29:10 +00:00
|
|
|
// drag with LMB? Select multiple objects (or at least draw a selection box) or drag them
|
2013-12-03 14:57:09 +00:00
|
|
|
else if( evt->IsDrag( BUT_LEFT ) )
|
2013-09-02 14:29:10 +00:00
|
|
|
{
|
2013-10-02 08:21:05 +00:00
|
|
|
if( m_selection.Empty() || m_additive )
|
2013-09-02 14:29:10 +00:00
|
|
|
{
|
|
|
|
// If nothings has been selected or user wants to select more
|
|
|
|
// draw the selection box
|
2013-09-19 15:02:57 +00:00
|
|
|
selectMultiple();
|
2013-09-02 14:29:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-27 14:23:43 +00:00
|
|
|
// Check if dragging has started within any of selected items bounding box
|
2013-09-19 15:02:57 +00:00
|
|
|
if( containsSelected( evt->Position() ) )
|
2013-09-12 08:24:23 +00:00
|
|
|
{
|
2013-09-27 14:23:43 +00:00
|
|
|
// Yes -> run the move tool and wait till it finishes
|
2013-12-03 15:09:03 +00:00
|
|
|
m_toolMgr->InvokeTool( "pcbnew.InteractiveEdit" );
|
2013-09-19 15:02:57 +00:00
|
|
|
}
|
2013-09-12 08:24:23 +00:00
|
|
|
else
|
2013-09-19 15:02:57 +00:00
|
|
|
{
|
2013-09-27 14:23:43 +00:00
|
|
|
// No -> clear the selection list
|
2013-09-12 08:24:23 +00:00
|
|
|
clearSelection();
|
2013-09-19 15:02:57 +00:00
|
|
|
}
|
2013-09-02 14:29:10 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-06 07:31:08 +00:00
|
|
|
}
|
|
|
|
|
2013-12-03 16:11:22 +00:00
|
|
|
// This tool is supposed to be active forever
|
|
|
|
assert( false );
|
2013-10-02 08:21:05 +00:00
|
|
|
|
2013-08-06 07:31:08 +00:00
|
|
|
return 0;
|
2013-08-02 14:53:50 +00:00
|
|
|
}
|
|
|
|
|
2013-08-06 07:31:08 +00:00
|
|
|
|
2013-09-26 16:38:58 +00:00
|
|
|
void SELECTION_TOOL::AddMenuItem( const TOOL_ACTION& aAction )
|
|
|
|
{
|
2013-10-14 14:13:35 +00:00
|
|
|
assert( aAction.GetId() > 0 ); // Check if the action was registered before in ACTION_MANAGER
|
2013-09-26 16:38:58 +00:00
|
|
|
|
|
|
|
m_menu.Add( aAction );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-09 08:18:48 +00:00
|
|
|
void SELECTION_TOOL::toggleSelection( BOARD_ITEM* aItem )
|
2013-08-02 14:53:50 +00:00
|
|
|
{
|
2013-12-18 13:33:34 +00:00
|
|
|
if( aItem->IsSelected() )
|
2013-08-06 07:31:08 +00:00
|
|
|
{
|
2013-12-18 13:33:34 +00:00
|
|
|
deselect( aItem );
|
2013-08-08 10:30:00 +00:00
|
|
|
}
|
|
|
|
else
|
2013-08-02 14:53:50 +00:00
|
|
|
{
|
2013-08-09 08:18:48 +00:00
|
|
|
if( !m_additive )
|
2013-08-06 07:31:08 +00:00
|
|
|
clearSelection();
|
2013-08-08 10:30:00 +00:00
|
|
|
|
2013-09-19 15:02:57 +00:00
|
|
|
// Prevent selection of invisible or inactive items
|
2013-09-04 08:56:06 +00:00
|
|
|
if( selectable( aItem ) )
|
2013-12-18 13:33:34 +00:00
|
|
|
select( aItem );
|
2013-08-02 14:53:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-06 07:31:08 +00:00
|
|
|
|
2013-08-09 08:18:48 +00:00
|
|
|
void SELECTION_TOOL::selectSingle( const VECTOR2I& aWhere )
|
2013-08-02 14:53:50 +00:00
|
|
|
{
|
2013-08-06 08:30:09 +00:00
|
|
|
BOARD* pcb = getModel<BOARD>( PCB_T );
|
|
|
|
BOARD_ITEM* item;
|
2013-08-02 14:53:50 +00:00
|
|
|
GENERAL_COLLECTORS_GUIDE guide = getEditFrame<PCB_EDIT_FRAME>()->GetCollectorsGuide();
|
|
|
|
GENERAL_COLLECTOR collector;
|
|
|
|
|
2013-08-08 17:41:20 +00:00
|
|
|
collector.Collect( pcb, GENERAL_COLLECTOR::AllBoardItems,
|
|
|
|
wxPoint( aWhere.x, aWhere.y ), guide );
|
2013-08-06 07:31:08 +00:00
|
|
|
|
2013-08-06 08:30:09 +00:00
|
|
|
switch( collector.GetCount() )
|
2013-08-02 14:53:50 +00:00
|
|
|
{
|
2013-08-06 07:31:08 +00:00
|
|
|
case 0:
|
2013-08-09 08:18:48 +00:00
|
|
|
if( !m_additive )
|
2013-08-06 07:31:08 +00:00
|
|
|
clearSelection();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
2013-08-09 08:18:48 +00:00
|
|
|
toggleSelection( collector[0] );
|
2013-08-06 07:31:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-12-18 15:26:21 +00:00
|
|
|
// Remove unselectable items
|
2013-09-17 11:47:33 +00:00
|
|
|
for( int i = collector.GetCount() - 1; i >= 0 ; --i )
|
2013-09-12 08:46:22 +00:00
|
|
|
{
|
2013-12-18 15:26:21 +00:00
|
|
|
if( !selectable( collector[i] ) )
|
2013-09-12 08:46:22 +00:00
|
|
|
collector.Remove( i );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Let's see if there is still disambiguation in selection..
|
|
|
|
if( collector.GetCount() == 1 )
|
|
|
|
{
|
|
|
|
toggleSelection( collector[0] );
|
|
|
|
}
|
2013-09-17 11:47:33 +00:00
|
|
|
else if( collector.GetCount() > 1 )
|
2013-09-12 08:46:22 +00:00
|
|
|
{
|
|
|
|
item = disambiguationMenu( &collector );
|
2013-09-26 16:38:58 +00:00
|
|
|
|
2013-09-12 08:46:22 +00:00
|
|
|
if( item )
|
|
|
|
toggleSelection( item );
|
|
|
|
}
|
2013-10-14 14:13:35 +00:00
|
|
|
|
2013-08-06 07:31:08 +00:00
|
|
|
break;
|
2013-08-02 14:53:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-06 14:04:12 +00:00
|
|
|
bool SELECTION_TOOL::selectMultiple()
|
2013-08-02 14:53:50 +00:00
|
|
|
{
|
2013-09-27 14:23:43 +00:00
|
|
|
bool cancelled = false; // Was the tool cancelled while it was running?
|
2013-09-19 15:02:57 +00:00
|
|
|
m_multiple = true; // Multiple selection mode is active
|
2013-11-29 08:37:23 +00:00
|
|
|
KIGFX::VIEW* view = getView();
|
2013-09-19 15:02:57 +00:00
|
|
|
getViewControls()->SetAutoPan( true );
|
2013-08-06 07:31:08 +00:00
|
|
|
|
2013-09-19 15:02:57 +00:00
|
|
|
view->Add( m_selArea );
|
2013-08-06 07:31:08 +00:00
|
|
|
|
2013-09-19 15:02:57 +00:00
|
|
|
while( OPT_TOOL_EVENT evt = Wait() )
|
2013-08-06 07:31:08 +00:00
|
|
|
{
|
|
|
|
if( evt->IsCancel() )
|
2013-09-06 14:04:12 +00:00
|
|
|
{
|
|
|
|
cancelled = true;
|
2013-08-06 07:31:08 +00:00
|
|
|
break;
|
2013-09-06 14:04:12 +00:00
|
|
|
}
|
2013-08-06 07:31:08 +00:00
|
|
|
|
2013-10-15 08:41:00 +00:00
|
|
|
if( evt->IsDrag( BUT_LEFT ) )
|
2013-08-06 07:31:08 +00:00
|
|
|
{
|
2013-08-09 08:18:48 +00:00
|
|
|
if( !m_additive )
|
|
|
|
clearSelection();
|
|
|
|
|
2013-08-08 17:42:19 +00:00
|
|
|
// Start drawing a selection box
|
2013-08-06 07:31:08 +00:00
|
|
|
m_selArea->SetOrigin( evt->DragOrigin() );
|
|
|
|
m_selArea->SetEnd( evt->Position() );
|
|
|
|
m_selArea->ViewSetVisible( true );
|
2013-11-29 08:37:23 +00:00
|
|
|
m_selArea->ViewUpdate( KIGFX::VIEW_ITEM::GEOMETRY );
|
2013-08-06 07:31:08 +00:00
|
|
|
}
|
|
|
|
|
2013-10-15 08:41:00 +00:00
|
|
|
if( evt->IsMouseUp( BUT_LEFT ) )
|
2013-08-06 07:31:08 +00:00
|
|
|
{
|
2013-09-27 14:23:43 +00:00
|
|
|
// End drawing the selection box
|
2013-08-06 07:31:08 +00:00
|
|
|
m_selArea->ViewSetVisible( false );
|
2013-08-08 17:42:19 +00:00
|
|
|
|
2013-09-19 15:02:57 +00:00
|
|
|
// Mark items within the selection box as selected
|
2013-11-29 08:37:23 +00:00
|
|
|
std::vector<KIGFX::VIEW::LAYER_ITEM_PAIR> selectedItems;
|
2013-08-08 17:42:19 +00:00
|
|
|
BOX2I selectionBox = m_selArea->ViewBBox();
|
2013-09-19 15:02:57 +00:00
|
|
|
view->Query( selectionBox, selectedItems ); // Get the list of selected items
|
2013-08-08 17:42:19 +00:00
|
|
|
|
2013-11-29 08:37:23 +00:00
|
|
|
std::vector<KIGFX::VIEW::LAYER_ITEM_PAIR>::iterator it, it_end;
|
2013-10-14 14:13:35 +00:00
|
|
|
|
2013-08-08 17:42:19 +00:00
|
|
|
for( it = selectedItems.begin(), it_end = selectedItems.end(); it != it_end; ++it )
|
|
|
|
{
|
|
|
|
BOARD_ITEM* item = static_cast<BOARD_ITEM*>( it->first );
|
|
|
|
|
2013-09-19 15:02:57 +00:00
|
|
|
// Add only those items that are visible and fully within the selection box
|
2013-12-18 13:33:34 +00:00
|
|
|
if( !item->IsSelected() && selectable( item ) && selectionBox.Contains( item->ViewBBox() ) )
|
|
|
|
select( item );
|
2013-08-08 17:42:19 +00:00
|
|
|
}
|
2013-09-26 16:38:58 +00:00
|
|
|
|
2013-12-04 09:58:51 +00:00
|
|
|
// Do not display information about selected item,as there is more than one
|
|
|
|
getEditFrame<PCB_EDIT_FRAME>()->SetCurItem( NULL );
|
2013-09-27 14:23:43 +00:00
|
|
|
|
2013-12-04 09:58:51 +00:00
|
|
|
break; // Stop waiting for events
|
2013-08-06 07:31:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-19 15:02:57 +00:00
|
|
|
view->Remove( m_selArea );
|
|
|
|
m_multiple = false; // Multiple selection mode is inactive
|
|
|
|
getViewControls()->SetAutoPan( false );
|
2013-09-06 14:04:12 +00:00
|
|
|
|
|
|
|
return cancelled;
|
2013-08-02 14:53:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-04 15:03:56 +00:00
|
|
|
void SELECTION_TOOL::clearSelection()
|
|
|
|
{
|
|
|
|
if( m_selection.Empty() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
KIGFX::VIEW_GROUP::const_iter it, it_end;
|
|
|
|
|
|
|
|
// Restore the initial properties
|
|
|
|
for( it = m_selection.group->Begin(), it_end = m_selection.group->End(); it != it_end; ++it )
|
|
|
|
{
|
|
|
|
BOARD_ITEM* item = static_cast<BOARD_ITEM*>( *it );
|
|
|
|
|
|
|
|
item->ViewSetVisible( true );
|
|
|
|
item->ClearSelected();
|
|
|
|
}
|
|
|
|
m_selection.clear();
|
|
|
|
|
|
|
|
getEditFrame<PCB_EDIT_FRAME>()->SetCurItem( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-22 13:05:37 +00:00
|
|
|
BOARD_ITEM* SELECTION_TOOL::disambiguationMenu( GENERAL_COLLECTOR* aCollector )
|
2013-08-02 14:53:50 +00:00
|
|
|
{
|
2013-08-08 17:41:20 +00:00
|
|
|
BOARD_ITEM* current = NULL;
|
2013-09-16 09:00:59 +00:00
|
|
|
boost::shared_ptr<BRIGHT_BOX> brightBox;
|
2013-09-26 16:38:58 +00:00
|
|
|
CONTEXT_MENU menu;
|
2013-08-06 07:31:08 +00:00
|
|
|
|
|
|
|
int limit = std::min( 10, aCollector->GetCount() );
|
2013-10-14 14:13:35 +00:00
|
|
|
|
2013-08-06 07:31:08 +00:00
|
|
|
for( int i = 0; i < limit; ++i )
|
|
|
|
{
|
|
|
|
wxString text;
|
2013-09-12 08:46:22 +00:00
|
|
|
BOARD_ITEM* item = ( *aCollector )[i];
|
2013-09-17 11:47:33 +00:00
|
|
|
text = item->GetSelectMenuText();
|
2013-09-26 16:38:58 +00:00
|
|
|
menu.Add( text, i );
|
2013-08-06 07:31:08 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 16:38:58 +00:00
|
|
|
menu.SetTitle( _( "Clarify selection" ) );
|
|
|
|
SetContextMenu( &menu, CMENU_NOW );
|
2013-08-06 07:31:08 +00:00
|
|
|
|
2013-09-16 09:00:59 +00:00
|
|
|
while( OPT_TOOL_EVENT evt = Wait() )
|
2013-08-06 07:31:08 +00:00
|
|
|
{
|
2013-10-14 18:40:36 +00:00
|
|
|
if( evt->Action() == TA_CONTEXT_MENU_UPDATE )
|
2013-08-06 07:31:08 +00:00
|
|
|
{
|
|
|
|
if( current )
|
2013-08-08 10:30:00 +00:00
|
|
|
current->ClearBrightened();
|
2013-08-06 07:31:08 +00:00
|
|
|
|
|
|
|
int id = *evt->GetCommandId();
|
2013-08-08 10:30:00 +00:00
|
|
|
|
2013-09-19 15:02:57 +00:00
|
|
|
// User has pointed an item, so show it in a different way
|
2013-09-29 19:23:45 +00:00
|
|
|
if( id >= 0 && id < limit )
|
2013-08-06 07:31:08 +00:00
|
|
|
{
|
|
|
|
current = ( *aCollector )[id];
|
2013-08-08 10:30:00 +00:00
|
|
|
current->SetBrightened();
|
|
|
|
}
|
|
|
|
else
|
2013-08-06 07:31:08 +00:00
|
|
|
current = NULL;
|
2013-08-08 10:30:00 +00:00
|
|
|
}
|
2013-10-14 18:40:36 +00:00
|
|
|
else if( evt->Action() == TA_CONTEXT_MENU_CHOICE )
|
2013-08-06 07:31:08 +00:00
|
|
|
{
|
|
|
|
optional<int> id = evt->GetCommandId();
|
|
|
|
|
2013-09-27 14:23:43 +00:00
|
|
|
// User has selected an item, so this one will be returned
|
2013-08-06 07:31:08 +00:00
|
|
|
if( id && ( *id >= 0 ) )
|
|
|
|
current = ( *aCollector )[*id];
|
2013-08-08 10:30:00 +00:00
|
|
|
|
2013-09-16 09:00:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-09-19 15:02:57 +00:00
|
|
|
// Draw a mark to show which item is available to be selected
|
2013-09-16 09:00:59 +00:00
|
|
|
if( current && current->IsBrightened() )
|
|
|
|
{
|
|
|
|
brightBox.reset( new BRIGHT_BOX( current ) );
|
|
|
|
getView()->Add( brightBox.get() );
|
2013-08-06 07:31:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-02 08:21:05 +00:00
|
|
|
// Removes possible brighten mark
|
2013-11-29 08:37:23 +00:00
|
|
|
getView()->MarkTargetDirty( KIGFX::TARGET_OVERLAY );
|
2013-09-26 16:38:58 +00:00
|
|
|
|
2013-09-16 09:00:59 +00:00
|
|
|
return current;
|
2013-08-06 07:31:08 +00:00
|
|
|
}
|
2013-09-04 08:56:06 +00:00
|
|
|
|
|
|
|
|
2014-02-04 15:03:56 +00:00
|
|
|
BOARD_ITEM* SELECTION_TOOL::pickSmallestComponent( GENERAL_COLLECTOR* aCollector )
|
|
|
|
{
|
|
|
|
int count = aCollector->GetPrimaryCount(); // try to use preferred layer
|
|
|
|
|
|
|
|
if( 0 == count )
|
|
|
|
count = aCollector->GetCount();
|
|
|
|
|
|
|
|
for( int i = 0; i < count; ++i )
|
|
|
|
{
|
|
|
|
if( ( *aCollector )[i]->Type() != PCB_MODULE_T )
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// All are modules, now find smallest MODULE
|
|
|
|
int minDim = 0x7FFFFFFF;
|
|
|
|
int minNdx = 0;
|
|
|
|
|
|
|
|
for( int i = 0; i < count; ++i )
|
|
|
|
{
|
|
|
|
MODULE* module = (MODULE*) ( *aCollector )[i];
|
|
|
|
|
|
|
|
int lx = module->GetBoundingBox().GetWidth();
|
|
|
|
int ly = module->GetBoundingBox().GetHeight();
|
|
|
|
|
|
|
|
int lmin = std::min( lx, ly );
|
|
|
|
|
|
|
|
if( lmin < minDim )
|
|
|
|
{
|
|
|
|
minDim = lmin;
|
|
|
|
minNdx = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (*aCollector)[minNdx];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-26 12:09:56 +00:00
|
|
|
bool SELECTION_TOOL::selectable( const BOARD_ITEM* aItem ) const
|
2013-09-04 08:56:06 +00:00
|
|
|
{
|
2013-09-27 14:23:43 +00:00
|
|
|
// Is high contrast mode enabled?
|
2013-09-17 09:32:47 +00:00
|
|
|
bool highContrast = getView()->GetPainter()->GetSettings()->GetHighContrast();
|
|
|
|
|
|
|
|
if( highContrast )
|
|
|
|
{
|
2013-09-27 14:23:43 +00:00
|
|
|
bool onActive = false; // Is the item on any of active layers?
|
2013-10-14 14:13:35 +00:00
|
|
|
int layers[KIGFX::VIEW::VIEW_MAX_LAYERS], layers_count;
|
2013-09-17 09:32:47 +00:00
|
|
|
|
|
|
|
// Filter out items that do not belong to active layers
|
|
|
|
std::set<unsigned int> activeLayers = getView()->GetPainter()->
|
2013-10-14 14:13:35 +00:00
|
|
|
GetSettings()->GetActiveLayers();
|
2013-09-17 09:32:47 +00:00
|
|
|
aItem->ViewGetLayers( layers, layers_count );
|
|
|
|
|
|
|
|
for( int i = 0; i < layers_count; ++i )
|
|
|
|
{
|
2013-10-14 14:13:35 +00:00
|
|
|
if( activeLayers.count( layers[i] ) > 0 ) // Item is on at least one of active layers
|
2013-09-17 09:32:47 +00:00
|
|
|
{
|
|
|
|
onActive = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
if( !onActive ) // We do not want to select items that are in the background
|
2013-09-17 09:32:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-09-06 14:04:12 +00:00
|
|
|
|
2013-09-17 11:47:33 +00:00
|
|
|
BOARD* board = getModel<BOARD>( PCB_T );
|
2013-10-14 14:13:35 +00:00
|
|
|
|
2013-09-04 08:56:06 +00:00
|
|
|
switch( aItem->Type() )
|
|
|
|
{
|
|
|
|
case PCB_VIA_T:
|
|
|
|
{
|
|
|
|
// For vias it is enough if only one of layers is visible
|
|
|
|
LAYER_NUM top, bottom;
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
static_cast<const SEGVIA*>( aItem )->LayerPair( &top, &bottom );
|
2013-09-04 08:56:06 +00:00
|
|
|
|
2013-10-14 14:13:35 +00:00
|
|
|
return board->IsLayerVisible( top ) || board->IsLayerVisible( bottom );
|
2013-09-04 08:56:06 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2013-12-05 13:52:08 +00:00
|
|
|
case PCB_MODULE_T:
|
|
|
|
if( aItem->IsOnLayer( LAYER_N_FRONT ) && board->IsElementVisible( MOD_FR_VISIBLE ) )
|
2013-09-04 08:56:06 +00:00
|
|
|
return true;
|
|
|
|
|
2014-02-04 10:37:54 +00:00
|
|
|
if( aItem->IsOnLayer( LAYER_N_BACK ) && board->IsElementVisible( MOD_BK_VISIBLE ) )
|
2013-09-04 08:56:06 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
2013-12-05 13:52:08 +00:00
|
|
|
|
|
|
|
break;
|
2013-09-09 08:10:02 +00:00
|
|
|
|
|
|
|
case PCB_MODULE_TEXT_T:
|
|
|
|
if( m_multiple )
|
|
|
|
return false;
|
2013-09-04 08:56:06 +00:00
|
|
|
break;
|
|
|
|
|
2013-12-18 15:26:21 +00:00
|
|
|
// These are not selectable
|
2013-09-04 08:56:06 +00:00
|
|
|
case PCB_MODULE_EDGE_T:
|
2013-12-18 15:26:21 +00:00
|
|
|
case PCB_PAD_T:
|
2013-10-02 10:02:25 +00:00
|
|
|
case NOT_USED:
|
|
|
|
case TYPE_NOT_INIT:
|
2013-09-04 08:56:06 +00:00
|
|
|
return false;
|
2013-09-26 12:09:56 +00:00
|
|
|
|
|
|
|
default: // Suppress warnings
|
|
|
|
break;
|
2013-09-04 08:56:06 +00:00
|
|
|
}
|
|
|
|
|
2013-09-06 14:04:12 +00:00
|
|
|
// All other items are selected only if the layer on which they exist is visible
|
|
|
|
return board->IsLayerVisible( aItem->GetLayer() );
|
|
|
|
}
|
2013-09-19 15:02:57 +00:00
|
|
|
|
|
|
|
|
2013-12-18 13:33:34 +00:00
|
|
|
void SELECTION_TOOL::select( BOARD_ITEM* aItem )
|
2013-10-02 08:21:05 +00:00
|
|
|
{
|
2013-12-18 13:33:34 +00:00
|
|
|
// Modules are treated in a special way - when they are selected, we have to mark
|
|
|
|
// all the parts that make the module as selected
|
2013-10-02 08:21:05 +00:00
|
|
|
if( aItem->Type() == PCB_MODULE_T )
|
|
|
|
{
|
|
|
|
MODULE* module = static_cast<MODULE*>( aItem );
|
2013-12-18 13:33:34 +00:00
|
|
|
module->RunOnChildren( std::bind1st( std::mem_fun( &SELECTION_TOOL::selectVisually ), this ) );
|
2013-10-02 08:21:05 +00:00
|
|
|
}
|
|
|
|
|
2013-12-18 13:33:34 +00:00
|
|
|
selectVisually( aItem );
|
|
|
|
ITEM_PICKER picker( aItem );
|
|
|
|
m_selection.items.PushItem( picker );
|
2013-10-02 08:21:05 +00:00
|
|
|
|
2013-12-04 09:58:51 +00:00
|
|
|
// It is enough to do it only for the first selected item
|
2013-12-18 13:33:34 +00:00
|
|
|
if( m_selection.Size() == 1 )
|
2013-12-04 09:58:51 +00:00
|
|
|
{
|
|
|
|
// Set as the current item, so the information about selection is displayed
|
|
|
|
getEditFrame<PCB_EDIT_FRAME>()->SetCurItem( aItem, true );
|
|
|
|
}
|
2013-12-18 14:09:09 +00:00
|
|
|
else if( m_selection.Size() == 2 ) // Check only for 2, so it will not be
|
|
|
|
{ // called for every next selected item
|
2013-12-18 13:33:34 +00:00
|
|
|
// If multiple items are selected, do not show the information about the selected item
|
|
|
|
getEditFrame<PCB_EDIT_FRAME>()->SetCurItem( NULL, true );
|
2013-10-02 08:21:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-18 13:33:34 +00:00
|
|
|
void SELECTION_TOOL::deselect( BOARD_ITEM* aItem )
|
2013-10-02 08:21:05 +00:00
|
|
|
{
|
2013-12-05 13:52:08 +00:00
|
|
|
// Modules are treated in a special way - when they are selected, we have to
|
2013-12-18 13:33:34 +00:00
|
|
|
// deselect all the parts that make the module, not the module itself
|
2013-10-02 08:21:05 +00:00
|
|
|
if( aItem->Type() == PCB_MODULE_T )
|
|
|
|
{
|
|
|
|
MODULE* module = static_cast<MODULE*>( aItem );
|
2013-12-18 13:33:34 +00:00
|
|
|
module->RunOnChildren( std::bind1st( std::mem_fun( &SELECTION_TOOL::deselectVisually ), this ) );
|
2013-10-02 08:21:05 +00:00
|
|
|
}
|
|
|
|
|
2013-12-18 13:33:34 +00:00
|
|
|
deselectVisually( aItem );
|
2013-10-02 08:21:05 +00:00
|
|
|
|
2013-12-18 13:33:34 +00:00
|
|
|
int itemIdx = m_selection.items.FindItem( aItem );
|
|
|
|
if( itemIdx >= 0 )
|
|
|
|
m_selection.items.RemovePicker( itemIdx );
|
2013-10-02 08:21:05 +00:00
|
|
|
|
2013-12-04 09:58:51 +00:00
|
|
|
// If there is nothing selected, disable the context menu
|
|
|
|
if( m_selection.Empty() )
|
|
|
|
getEditFrame<PCB_EDIT_FRAME>()->SetCurItem( NULL );
|
2013-10-02 08:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-18 13:33:34 +00:00
|
|
|
void SELECTION_TOOL::selectVisually( BOARD_ITEM* aItem ) const
|
|
|
|
{
|
|
|
|
m_selection.group->Add( aItem );
|
2013-10-02 08:21:05 +00:00
|
|
|
|
2013-12-18 13:33:34 +00:00
|
|
|
// Hide the original item, so it is shown only on overlay
|
|
|
|
aItem->ViewSetVisible( false );
|
|
|
|
aItem->SetSelected();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SELECTION_TOOL::deselectVisually( BOARD_ITEM* aItem ) const
|
|
|
|
{
|
|
|
|
m_selection.group->Remove( aItem );
|
2013-10-02 08:21:05 +00:00
|
|
|
|
2013-12-18 13:33:34 +00:00
|
|
|
// Restore original item visibility
|
|
|
|
aItem->ViewSetVisible( true );
|
|
|
|
aItem->ClearSelected();
|
2013-10-02 08:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-19 15:02:57 +00:00
|
|
|
bool SELECTION_TOOL::containsSelected( const VECTOR2I& aPoint ) const
|
|
|
|
{
|
2014-02-05 09:17:14 +00:00
|
|
|
const unsigned GRIP_MARGIN = 20;
|
|
|
|
VECTOR2D margin = getView()->ToWorld( VECTOR2D( GRIP_MARGIN, GRIP_MARGIN ), false );
|
2013-09-27 16:51:21 +00:00
|
|
|
|
2013-09-19 15:02:57 +00:00
|
|
|
// Check if the point is located within any of the currently selected items bounding boxes
|
2013-12-18 13:33:34 +00:00
|
|
|
for( unsigned int i = 0; i < m_selection.items.GetCount(); ++i )
|
2013-09-19 15:02:57 +00:00
|
|
|
{
|
2013-12-18 13:33:34 +00:00
|
|
|
BOARD_ITEM* item = static_cast<BOARD_ITEM*>( m_selection.items.GetPickedItem( i ) );
|
|
|
|
BOX2I itemBox = item->ViewBBox();
|
2014-02-05 09:17:14 +00:00
|
|
|
itemBox.Inflate( margin.x, margin.y ); // Give some margin for gripping an item
|
2013-09-19 15:02:57 +00:00
|
|
|
|
|
|
|
if( itemBox.Contains( aPoint ) )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2013-12-03 16:11:22 +00:00
|
|
|
|
|
|
|
|
2014-02-04 10:37:54 +00:00
|
|
|
void SELECTION_TOOL::SELECTION::clear()
|
2013-12-03 16:11:22 +00:00
|
|
|
{
|
2013-12-18 13:33:34 +00:00
|
|
|
items.ClearItemsList();
|
2013-12-03 16:11:22 +00:00
|
|
|
group->Clear();
|
|
|
|
}
|