2019-05-20 10:23:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2019-08-14 08:28:07 +00:00
|
|
|
* Copyright (C) 2019 CERN
|
2021-10-06 02:46:53 +00:00
|
|
|
* Copyright (C) 2019 KiCad Developers, see AUTHORS.TXT for contributors.
|
2019-05-20 10:23:32 +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
|
|
|
|
*/
|
|
|
|
|
2021-06-06 15:07:55 +00:00
|
|
|
#include <eda_item.h>
|
2020-10-13 05:04:31 +00:00
|
|
|
#include "tools/pl_selection.h"
|
2019-05-20 10:23:32 +00:00
|
|
|
|
|
|
|
|
2019-06-08 21:48:22 +00:00
|
|
|
EDA_ITEM* PL_SELECTION::GetTopLeftItem( bool onlyModules ) const
|
2019-05-20 10:23:32 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
EDA_ITEM* topLeftItem = nullptr;
|
|
|
|
EDA_RECT topLeftItemBB;
|
2019-05-20 10:23:32 +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 )
|
2019-05-20 10:23:32 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
EDA_RECT currentItemBB = item->GetBoundingBox();
|
2019-05-20 10:23:32 +00:00
|
|
|
|
|
|
|
if( topLeftItem == nullptr )
|
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
topLeftItem = item;
|
2019-05-20 10:23:32 +00:00
|
|
|
topLeftItemBB = currentItemBB;
|
|
|
|
}
|
|
|
|
else if( currentItemBB.GetLeft() < topLeftItemBB.GetLeft() )
|
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
topLeftItem = item;
|
2019-05-20 10:23:32 +00:00
|
|
|
topLeftItemBB = currentItemBB;
|
|
|
|
}
|
|
|
|
else if( topLeftItemBB.GetLeft() == currentItemBB.GetLeft()
|
|
|
|
&& currentItemBB.GetTop() < topLeftItemBB.GetTop() )
|
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
topLeftItem = item;
|
2019-05-20 10:23:32 +00:00
|
|
|
topLeftItemBB = currentItemBB;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
return topLeftItem;
|
2019-05-20 10:23:32 +00:00
|
|
|
}
|
|
|
|
|