2017-10-31 11:01:59 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013-2017 CERN
|
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
2021-10-06 02:46:53 +00:00
|
|
|
* Copyright (C) 2017-2021 KiCad Developers, see AUTHORS.TXT for contributors.
|
2017-10-31 11:01:59 +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 <functional>
|
|
|
|
using namespace std::placeholders;
|
|
|
|
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
2020-11-14 18:11:28 +00:00
|
|
|
#include <board_item.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <footprint.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2021-06-03 17:03:25 +00:00
|
|
|
#include <pcb_group.h>
|
2017-10-31 11:01:59 +00:00
|
|
|
#include <class_draw_panel_gal.h>
|
|
|
|
#include <view/view_controls.h>
|
|
|
|
#include <view/view_group.h>
|
|
|
|
#include <painter.h>
|
|
|
|
#include <bitmaps.h>
|
|
|
|
#include <tool/tool_event.h>
|
|
|
|
#include <tool/tool_manager.h>
|
2020-12-16 13:31:32 +00:00
|
|
|
#include <tools/pcb_selection.h>
|
2018-10-12 06:17:15 +00:00
|
|
|
#include <connectivity/connectivity_data.h>
|
2020-12-16 13:31:32 +00:00
|
|
|
#include "pcb_selection_tool.h"
|
2017-10-31 11:01:59 +00:00
|
|
|
#include "pcb_actions.h"
|
|
|
|
|
2021-11-25 12:22:40 +00:00
|
|
|
#include "plugins/kicad/pcb_plugin.h"
|
2017-10-31 11:01:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-12-16 13:31:32 +00:00
|
|
|
EDA_ITEM* PCB_SELECTION::GetTopLeftItem( bool aFootprintsOnly ) const
|
2017-10-31 11:01:59 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
EDA_ITEM* topLeftItem = nullptr;
|
2017-10-31 11:01:59 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
VECTOR2I pnt;
|
2017-10-31 11:01:59 +00:00
|
|
|
|
|
|
|
// find the leftmost (smallest x coord) and highest (smallest y with the smallest x) item in the selection
|
2020-04-24 13:36:10 +00:00
|
|
|
for( EDA_ITEM* item : m_items )
|
2017-10-31 11:01:59 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
pnt = item->GetPosition();
|
2017-10-31 11:01:59 +00:00
|
|
|
|
2020-11-13 12:21:02 +00:00
|
|
|
if( ( item->Type() != PCB_FOOTPRINT_T ) && aFootprintsOnly )
|
2017-10-31 11:01:59 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( topLeftItem == nullptr )
|
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
topLeftItem = item;
|
2017-10-31 11:01:59 +00:00
|
|
|
}
|
|
|
|
else if( ( pnt.x < topLeftItem->GetPosition().x ) ||
|
|
|
|
( ( topLeftItem->GetPosition().x == pnt.x ) &&
|
|
|
|
( pnt.y < topLeftItem->GetPosition().y ) ) )
|
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
topLeftItem = item;
|
2017-10-31 11:01:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
return topLeftItem;
|
2017-10-31 11:01:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-10-03 12:58:56 +00:00
|
|
|
const std::vector<KIGFX::VIEW_ITEM*> PCB_SELECTION::updateDrawList() const
|
2017-10-31 11:01:59 +00:00
|
|
|
{
|
|
|
|
std::vector<VIEW_ITEM*> items;
|
|
|
|
|
2020-08-11 19:37:07 +00:00
|
|
|
std::function<void ( EDA_ITEM* )> addItem;
|
2020-11-13 12:21:02 +00:00
|
|
|
addItem = [&]( EDA_ITEM* item )
|
|
|
|
{
|
|
|
|
items.push_back( item );
|
|
|
|
|
|
|
|
if( item->Type() == PCB_FOOTPRINT_T )
|
|
|
|
{
|
2020-11-13 15:15:52 +00:00
|
|
|
FOOTPRINT* footprint = static_cast<FOOTPRINT*>( item );
|
2020-11-13 12:21:02 +00:00
|
|
|
footprint->RunOnChildren( [&]( BOARD_ITEM* bitem )
|
|
|
|
{
|
|
|
|
addItem( bitem );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
else if( item->Type() == PCB_GROUP_T )
|
|
|
|
{
|
|
|
|
PCB_GROUP* group = static_cast<PCB_GROUP*>( item );
|
|
|
|
group->RunOnChildren( [&]( BOARD_ITEM* bitem )
|
|
|
|
{
|
|
|
|
addItem( bitem );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
};
|
2020-08-11 19:37:07 +00:00
|
|
|
|
2020-11-13 12:21:02 +00:00
|
|
|
for( EDA_ITEM* item : m_items )
|
2020-08-11 19:37:07 +00:00
|
|
|
addItem( item );
|
2020-11-13 12:21:02 +00:00
|
|
|
|
2017-10-31 11:01:59 +00:00
|
|
|
return items;
|
|
|
|
}
|
2019-08-21 04:31:11 +00:00
|
|
|
|
|
|
|
|
2020-12-16 13:31:32 +00:00
|
|
|
const LSET PCB_SELECTION::GetSelectionLayers()
|
2019-08-21 04:31:11 +00:00
|
|
|
{
|
|
|
|
LSET retval;
|
|
|
|
|
2020-11-13 12:21:02 +00:00
|
|
|
for( EDA_ITEM* item : m_items )
|
2019-08-21 04:31:11 +00:00
|
|
|
{
|
2020-11-13 12:21:02 +00:00
|
|
|
if( BOARD_ITEM* board_item = dynamic_cast<BOARD_ITEM*>( item ) )
|
2019-08-21 04:31:11 +00:00
|
|
|
retval |= board_item->GetLayerSet();
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|