71 for(
int i = aCollector.
GetCount() - 1; i >= 0; --i )
73 BOARD_ITEM* item = aCollector[i];
75 if( item->Type() == PCB_TRACE_T )
76 aCollector.Remove( item );
81 if( selection.
Size() < 2 )
88 commit = &localCommit;
95 if( !item->IsNew() && !item->IsMoving() )
99 for(
size_t i = 0; i < sorted.size() - 1; i++ )
102 EDA_ITEM* edaItemB = sorted[( i + 1 ) % sorted.size()];
112 std::swap( aPos, bPos );
130 aFP->
Flip( aPos, FLIP_DIRECTION::TOP_BOTTOM );
131 bFP->
Flip( bPos, FLIP_DIRECTION::TOP_BOTTOM );
135 std::swap( aAngle, bAngle );
145 std::swap( aLayer, bLayer );
151 if( !localCommit.
Empty() )
152 localCommit.
Push(
_(
"Swap" ) );
177 for(
int i = aCollector.
GetCount() - 1; i >= 0; --i )
179 BOARD_ITEM* item = aCollector[i];
181 if( !dynamic_cast<FOOTPRINT*>( item ) )
182 aCollector.Remove( item );
187 std::vector<FOOTPRINT*> footprintsToPack;
190 footprintsToPack.push_back(
static_cast<FOOTPRINT*
>( item ) );
192 if( footprintsToPack.empty() )
195 BOX2I footprintsBbox;
197 for(
FOOTPRINT* item : footprintsToPack )
201 footprintsBbox.
Merge( item->GetBoundingBox(
false ) );
207 commit.
Push(
_(
"Pack Footprints" ) );
238 localCommit.
Push(
_(
"Move" ) );
255 typedef std::numeric_limits<int> coord_limits;
257 static const double max = coord_limits::max() - (int)
COORDS_PADDING;
258 static const double min = -max;
261 testBox.
Offset( aBBoxOffset );
270 testBox.
Offset( aMovement );
278 if( testBox.
GetTop() < min )
298 std::unique_ptr<STATUS_TEXT_POPUP> statusPopup;
325 auto displayConstraintsMessage =
326 [editFrame](
bool constrained )
329 : wxString( wxT(
"" ) ) );
332 auto updateStatusPopup =
333 [&](
EDA_ITEM* item,
size_t ii,
size_t count )
335 wxString popuptext =
_(
"Click to place %s (item %zu of %zu)\n"
336 "Press <esc> to cancel all; double-click to finish" );
348 msg = wxString::Format(
_(
"%s pad %s" ), fp->
GetReference(),
pad->GetNumber() );
356 statusPopup = std::make_unique<STATUS_TEXT_POPUP>(
frame() );
358 statusPopup->SetText( wxString::Format( popuptext, msg, ii, count ) );
361 std::vector<BOARD_ITEM*> sel_items;
362 std::vector<BOARD_ITEM*> orig_items;
371 orig_items.push_back( boardItem );
373 sel_items.push_back( boardItem );
381 sel_items.push_back(
pad );
391 if( moveWithReference && !
pickReferencePoint(
_(
"Select reference point for move..." ),
"",
"",
392 pickedReferencePoint ) )
401 if( moveIndividually )
408 orig_items.push_back(
static_cast<BOARD_ITEM*
>( item ) );
411 updateStatusPopup( orig_items[ itemIdx ], itemIdx + 1, orig_items.size() );
412 statusPopup->Popup();
420 sel_items.push_back( orig_items[ itemIdx ] );
423 bool restore_state =
false;
427 bool updateBBox =
true;
433 bool enableLocalRatsnest =
true;
435 bool hv45Mode =
false;
436 bool eatFirstMouseUp =
true;
441 std::unique_ptr<DRC_INTERACTIVE_COURTYARD_CLEARANCE> drc_on_move =
nullptr;
443 if( showCourtyardConflicts )
447 drc_on_move->Init( board );
450 displayConstraintsMessage( hv45Mode );
466 eatFirstMouseUp =
false;
475 bool redraw3D =
false;
480 grid.GetSelectionGrid( selection ), sel_items );
505 originalBBox =
BOX2I();
526 bboxMovement += movement;
545 if( redraw3D && allowRedraw3D )
548 if( showCourtyardConflicts && drc_on_move->m_FpInMove.size() )
572 enableLocalRatsnest =
false;
584 static_cast<BOARD_ITEM*
>( item )->RunOnDescendants(
594 if( selection.HasReferencePoint() )
597 grid.SetAuxAxes(
false );
605 movement =
m_cursor - selection.GetReferencePoint();
617 selection.SetReferencePoint(
m_cursor );
621 if( showCourtyardConflicts )
623 std::vector<FOOTPRINT*>& FPs = drc_on_move->m_FpInMove;
628 FPs.push_back(
static_cast<FOOTPRINT*
>( item ) );
630 item->RunOnDescendants(
634 FPs.push_back(
static_cast<FOOTPRINT*
>( descendent ) );
639 m_cursor =
grid.BestDragOrigin( originalCursorPos, sel_items,
640 grid.GetSelectionGrid( selection ),
645 if( moveWithReference )
647 selection.SetReferencePoint( pickedReferencePoint );
657 selection.SetReferencePoint(
m_cursor );
677 if( enableLocalRatsnest )
685 restore_state =
true;
694 restore_state =
true;
707 eatFirstMouseUp =
false;
715 eatFirstMouseUp =
false;
722 orig_items[itemIdx]->SetPosition( originalPos );
727 if( ++itemIdx < orig_items.size() )
738 sel_items.push_back( nextItem );
739 updateStatusPopup( nextItem, itemIdx + 1, orig_items.size() );
742 aCommit->
Modify( nextItem );
754 if( moveIndividually )
755 orig_items[itemIdx]->SetPosition( originalPos );
761 hv45Mode = !hv45Mode;
762 displayConstraintsMessage( hv45Mode );
780 }
while( ( evt =
Wait() ) );
783 if( showCourtyardConflicts )
801 if( sel_items.size() == 1 && sel_items.back()->Type() ==
PCB_GENERATOR_T )
809 if( sel_items.size() == 1 && sel_items.back()->Type() ==
PCB_GENERATOR_T )
815 EDA_ITEMS oItems( orig_items.begin(), orig_items.end() );
825 return !restore_state;
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
static TOOL_ACTION duplicate
static TOOL_ACTION doDelete
static TOOL_ACTION cursorClick
static TOOL_ACTION refreshPreview
virtual void Push(const wxString &aMessage=wxEmptyString, int aCommitFlags=0) override
Revert the commit by restoring the modified items state.
virtual void Revert() override
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
virtual PCB_LAYER_ID GetLayer() const
Return the primary layer this item is on.
virtual void Move(const VECTOR2I &aMoveVector)
Move this object.
virtual void SetLayer(PCB_LAYER_ID aLayer)
Set the layer this item is on.
Information pertinent to a Pcbnew printed circuit board.
constexpr const Vec & GetPosition() const
constexpr BOX2< Vec > & Normalize()
Ensure that the height and width are positive.
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
constexpr coord_type GetLeft() const
constexpr const Vec & GetOrigin() const
constexpr coord_type GetRight() const
constexpr const SizeVec & GetSize() const
constexpr coord_type GetTop() const
constexpr void Offset(coord_type dx, coord_type dy)
constexpr coord_type GetBottom() const
int GetCount() const
Return the number of objects in the list.
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Create an undo entry for an item that has been already modified.
bool Empty() const
Returns status of an item.
void DisplayConstraintsMsg(const wxString &msg)
void SetCurrentCursor(KICURSOR aCursor)
Set the current cursor shape for this panel.
void SetStatusPopup(wxWindow *aPopup)
A base class for most all the KiCad significant classes used in schematics and boards.
virtual VECTOR2I GetPosition() const
virtual void SetPosition(const VECTOR2I &aPos)
wxString GetTypeDesc() const
Return a translated description of the type for this EDA_ITEM for display in user facing messages.
void SetFlags(EDA_ITEM_FLAGS aMask)
KICAD_T Type() const
Returns the type of object.
EDA_ITEM * GetParent() const
virtual const BOX2I ViewBBox() const override
Return the bounding box of the item covering all its layers.
static const TOOL_EVENT SelectedEvent
static const TOOL_EVENT SelectedItemsModified
Selected items were moved, this can be very high frequency on the canvas, use with care.
static const TOOL_EVENT SelectedItemsMoved
Used to inform tools that the selection should temporarily be non-editable.
Used when the right click button is pressed, or when the select tool is in effect.
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const override
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
An interface for classes handling user events controlling the view behavior such as zooming,...
virtual void ForceCursorPosition(bool aEnabled, const VECTOR2D &aPosition=VECTOR2D(0, 0))
Place the cursor immediately at a given point.
virtual void ShowCursor(bool aEnabled)
Enable or disables display of cursor.
VECTOR2D GetCursorPosition() const
Return the current cursor position in world coordinates.
virtual VECTOR2D GetMousePosition(bool aWorldCoordinates=true) const =0
Return the current mouse pointer position.
virtual void SetCursorPosition(const VECTOR2D &aPosition, bool aWarpView=true, bool aTriggeredByArrows=false, long aArrowCommand=0)=0
Move cursor to the requested position expressed in world coordinates.
virtual void SetAutoPan(bool aEnabled)
Turn on/off auto panning (this feature is used when there is a tool active (eg.
const VC_SETTINGS & GetSettings() const
Apply VIEW_CONTROLS settings from an object.
bool IsBOARD_ITEM() const
LSET is a set of PCB_LAYER_IDs.
DISPLAY_OPTIONS m_Display
bool m_ShowCourtyardCollisions
static TOOL_ACTION toggleHV45Mode
static TOOL_ACTION mirrorH
Mirroring of selected items.
static TOOL_ACTION genPushEdit
static TOOL_ACTION hideLocalRatsnest
static TOOL_ACTION genStartEdit
static TOOL_ACTION selectionClear
Clear the current selection.
static TOOL_ACTION moveWithReference
move with a reference point
static TOOL_ACTION moveExact
Activation of the exact move tool.
static TOOL_ACTION copyWithReference
copy command with manual reference point selection
static TOOL_ACTION positionRelativeInteractively
static TOOL_ACTION genUpdateEdit
static TOOL_ACTION updateLocalRatsnest
static TOOL_ACTION moveIndividually
move items one-by-one
static TOOL_ACTION positionRelative
static TOOL_ACTION move
move or drag an item
static TOOL_ACTION mirrorV
static TOOL_ACTION selectItems
Select a list of items (specified as the event parameter)
static TOOL_ACTION flip
Flipping of selected objects.
static TOOL_ACTION rotateCw
Rotation of selected objects.
static TOOL_ACTION rotateCcw
static TOOL_ACTION genRevertEdit
Common, abstract interface for edit frames.
PCBNEW_SETTINGS * GetPcbNewSettings() const
virtual PCB_LAYER_ID GetActiveLayer() const
virtual MAGNETIC_SETTINGS * GetMagneticItemsSettings()
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
virtual void Update3DView(bool aMarkDirty, bool aRefresh, const wxString *aTitle=nullptr)
Update the 3D view, if the viewer is opened by this frame.
int Size() const
Returns the number of selected parts.
std::vector< EDA_ITEM * > GetItemsSortedBySelectionOrder() const
void ClearReferencePoint()
void SetReferencePoint(const VECTOR2I &aP)
bool Empty() const
Checks if there is anything selected.
bool HasReferencePoint() const
std::vector< EDA_ITEM * > EDA_ITEMS
Define list of drawing items for screens.
#define IS_MOVING
Item being moved.
a few functions useful in geometry calculations.
VECTOR2< T > GetVectorSnapped45(const VECTOR2< T > &aVec, bool only45=false)
Snap a vector onto the nearest 0, 45 or 90 degree line.
PCB_LAYER_ID
A quick note on layer IDs:
Class to handle a set of BOARD_ITEMs.
bool m_lastKeyboardCursorPositionValid
ACTIONS::CURSOR_UP, ACTIONS::CURSOR_DOWN, etc.
long m_lastKeyboardCursorCommand
Position of the above event.
@ PCB_GENERATOR_T
class PCB_GENERATOR, generator on a layer
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
@ PCB_PAD_T
class PAD, a pad in a footprint
VECTOR2< double > VECTOR2D