209 removeItems.push_back( item );
259 bool selectAll =
false;
260 bool showMoreChoices =
false;
269 if( showMoreChoices )
276 showMoreChoices =
false;
279 int limit = std::min( 100, aCollector->
GetCount() );
282 auto getItemDescription =
289 for(
int i = 0; i < limit; ++i )
294 EDA_ITEM* other = ( *aCollector )[i];
304 for(
int i = 0; i < limit; ++i )
306 EDA_ITEM* item = ( *aCollector )[i];
312 menuText = wxString::Format(
"%s\t%d",
313 getItemDescription( item, i ),
316 menuText = wxString::Format(
"&%d %s\t%d",
318 getItemDescription( item, i ),
324 menuText = getItemDescription( item, i );
330 menu.AppendSeparator();
355 for(
int i = 0; i < aCollector->
GetCount(); ++i )
363 int id = *evt->GetCommandId();
366 if(
id > 0 &&
id <= limit )
368 current = ( *aCollector )[
id - 1];
377 if(
id == limit + 1 )
379 for(
int i = 0; i < aCollector->
GetCount(); ++i )
393 for(
int i = 0; i < aCollector->
GetCount(); ++i )
401 std::optional<int>
id = evt->GetCommandId();
404 if(
id == limit + 1 )
410 else if(
id == limit + 2 )
414 showMoreChoices =
true;
417 else if(
id && ( *
id > 0 ) && ( *
id <= limit ) )
420 current = ( *aCollector )[*
id - 1];
438 while( showMoreChoices );
449 aCollector->
Append( current );
An abstract class that will find and hold all the objects according to an inspection done by the Insp...
void Empty()
Clear the list.
int GetCount() const
Return the number of objects in the list.
bool HasAdditionalItems()
Test if the collector has heuristic backup items.
void Combine()
Re-combine the backup list into the main list of the collector.
void Append(EDA_ITEM *item)
Add an item to the end of the list.
A base class for most all the KiCad significant classes used in schematics and boards.
virtual wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const
Return a user-visible description string of this item.
KICAD_T Type() const
Returns the type of object.
virtual wxString DisambiguateItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const
virtual BITMAPS GetMenuImage() const
Return a pointer to an image to be used in menus.
static const TOOL_EVENT DisambiguatePoint
Used for hotkey feedback.
static const TOOL_EVENT SelectedEvent
static const TOOL_EVENT UnselectedEvent
virtual void SetLayer(int aLayer)
Set layer used to draw the group.
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1)
Add a VIEW_ITEM to the view.
virtual void Remove(VIEW_ITEM *aItem)
Remove a VIEW_ITEM from the view.
void UpdateItems()
Iterate through the list of items that asked for updating and updates them.
void SetIsHover(bool aIsHover)
#define BRIGHTENED
item is drawn with a bright contour
@ LAYER_SELECT_OVERLAY
Selected items overlay.
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
std::vector< EDA_ITEM * > EDA_ITEMS
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
Functions to provide common constants and other functions to assist in making a consistent UI.