7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:35:31 +00:00

selection: sort box selection by rows and columns by default

Some tools can take a selection order and it is nice to provide a
sane human-oriented default sorting when box selecting.
This commit is contained in:
Mike Williams 2025-03-19 10:25:35 -04:00
parent 7578439b0c
commit 18010b1104
2 changed files with 31 additions and 1 deletions

View File

@ -1976,6 +1976,22 @@ bool SCH_SELECTION_TOOL::selectMultiple()
}
}
std::vector<EDA_ITEM*> sortedNearbyItems( nearbyItems.begin(), nearbyItems.end() );
// Sort the filtered selection by rows and columns to have a nice default
// for tools that can use it.
std::sort( sortedNearbyItems.begin(), sortedNearbyItems.end(),
[]( EDA_ITEM* a, EDA_ITEM* b )
{
VECTOR2I aPos = a->GetPosition();
VECTOR2I bPos = b->GetPosition();
if( aPos.y == bPos.y )
return aPos.x < bPos.x;
return aPos.y < bPos.y;
} );
BOX2I selectionRect( area.GetOrigin(), VECTOR2I( width, height ) );
selectionRect.Normalize();
@ -2011,7 +2027,7 @@ bool SCH_SELECTION_TOOL::selectMultiple()
}
};
for( EDA_ITEM* item : nearbyItems )
for( EDA_ITEM* item : sortedNearbyItems )
{
bool selected = false;
EDA_ITEM_FLAGS flags = 0;

View File

@ -1189,6 +1189,20 @@ bool PCB_SELECTION_TOOL::selectMultiple()
FilterCollectorForHierarchy( collector, true );
}
// Sort the filtered selection by rows and columns to have a nice default
// for tools that can use it.
std::sort( collector.begin(), collector.end(),
[]( EDA_ITEM* a, EDA_ITEM* b )
{
VECTOR2I aPos = a->GetPosition();
VECTOR2I bPos = b->GetPosition();
if( aPos.y == bPos.y )
return aPos.x < bPos.x;
return aPos.y < bPos.y;
} );
for( EDA_ITEM* i : collector )
{
BOARD_ITEM* item = static_cast<BOARD_ITEM*>( i );