69 for(
int i = aCollector.
GetCount() - 1; i >= 0; --i )
71 BOARD_ITEM* item = aCollector[i];
73 if( item->Type() == PCB_TRACE_T )
74 aCollector.Remove( item );
79 if( selection.
Size() < 2 )
86 commit = &localCommit;
93 if( !item->IsNew() && !item->IsMoving() )
97 for(
size_t i = 0; i < sorted.size() - 1; i++ )
102 wxCHECK2( a && b,
continue );
106 std::swap( aPos, bPos );
124 aFP->
Flip( aPos,
false );
125 bFP->
Flip( bPos,
false );
129 std::swap( aAngle, bAngle );
139 std::swap( aLayer, bLayer );
145 if( !localCommit.
Empty() )
146 localCommit.
Push(
_(
"Swap" ) );
171 for(
int i = aCollector.
GetCount() - 1; i >= 0; --i )
173 BOARD_ITEM* item = aCollector[i];
175 if( !dynamic_cast<FOOTPRINT*>( item ) )
176 aCollector.Remove( item );
181 std::vector<FOOTPRINT*> footprintsToPack;
184 footprintsToPack.push_back(
static_cast<FOOTPRINT*
>( item ) );
186 if( footprintsToPack.empty() )
189 BOX2I footprintsBbox;
191 for(
FOOTPRINT* item : footprintsToPack )
195 footprintsBbox.
Merge( item->GetBoundingBox(
false,
false ) );
201 commit.
Push(
_(
"Pack footprints" ) );
233 localCommit.
Push(
_(
"Move" ) );
248 typedef std::numeric_limits<int> coord_limits;
250 int max = coord_limits::max();
257 double bottom = top + aSourceBBox.
GetSize().
y;
260 if(
left < min || top < min || right > max || bottom > max )
268 tryMovement = clampedBBoxOrigin - bBoxOrigin;
273 tryMovement = clampedBBoxEnd - bBoxEnd;
275 return GetClampedCoords<double, int>( tryMovement );
309 bool is_hover = selection.
IsHover();
327 if( selection.
Empty() )
338 auto displayConstraintsMessage =
339 [editFrame](
bool constrained )
342 : wxString( wxT(
"" ) ) );
345 auto updateStatusPopup =
346 [&](
EDA_ITEM* item,
size_t ii,
size_t count )
348 wxString popuptext =
_(
"Click to place %s (item %zu of %zu)\n"
349 "Press <esc> to cancel all; double-click to finish" );
361 msg = wxString::Format(
_(
"%s pad %s" ), fp->
GetReference(),
pad->GetNumber() );
368 statusPopup.
SetText( wxString::Format( popuptext, msg, ii, count ) );
371 std::vector<BOARD_ITEM*> sel_items;
372 std::vector<BOARD_ITEM*> orig_items;
379 orig_items.push_back( boardItem );
381 sel_items.push_back( boardItem );
387 sel_items.push_back(
pad );
395 if( moveWithReference && !
pickReferencePoint(
_(
"Select reference point for move..." ),
"",
"",
396 pickedReferencePoint ) )
405 if( moveIndividually )
412 orig_items.push_back( boardItem );
415 updateStatusPopup( orig_items[ itemIdx ], itemIdx + 1, orig_items.size() );
424 sel_items.push_back( orig_items[ itemIdx ] );
427 bool restore_state =
false;
432 bool updateBBox =
true;
438 bool hv45Mode =
false;
439 bool eatFirstMouseUp =
true;
444 std::unique_ptr<DRC_INTERACTIVE_COURTYARD_CLEARANCE> drc_on_move =
nullptr;
446 if( showCourtyardConflicts )
450 drc_on_move->Init( board );
453 displayConstraintsMessage( hv45Mode );
469 eatFirstMouseUp =
false;
478 bool redraw3D =
false;
483 grid.GetSelectionGrid( selection ), sel_items );
508 originalBBox =
BOX2I();
516 originalBBox = viewBBOX;
518 originalBBox.
Merge( viewBBOX );
534 totalMovement += movement;
535 bboxMovement += movement;
554 if( redraw3D && allowRedraw3D )
557 if( showCourtyardConflicts && drc_on_move->m_FpInMove.size() )
591 static_cast<BOARD_ITEM*
>( item )->RunOnDescendants(
601 if( selection.HasReferencePoint() )
604 grid.SetAuxAxes(
false );
612 movement =
m_cursor - selection.GetReferencePoint();
624 selection.SetReferencePoint(
m_cursor );
631 drc_on_move->m_FpInMove.push_back(
static_cast<FOOTPRINT*
>( item ) );
634 m_cursor =
grid.BestDragOrigin( originalCursorPos, sel_items,
635 grid.GetSelectionGrid( selection ),
640 if( moveWithReference )
642 selection.SetReferencePoint( pickedReferencePoint );
652 selection.SetReferencePoint(
m_cursor );
678 restore_state =
true;
683 restore_state =
true;
696 eatFirstMouseUp =
false;
704 eatFirstMouseUp =
false;
711 orig_items[itemIdx]->SetPosition( originalPos );
715 if( ++itemIdx < orig_items.size() )
726 sel_items.push_back( nextItem );
727 updateStatusPopup( nextItem, itemIdx + 1, orig_items.size() );
730 aCommit->
Modify( nextItem );
742 if( moveIndividually )
743 orig_items[itemIdx]->SetPosition( originalPos );
749 hv45Mode = !hv45Mode;
750 displayConstraintsMessage( hv45Mode );
767 }
while( ( evt =
Wait() ) );
770 if( showCourtyardConflicts )
788 if( sel_items.size() == 1 && sel_items.back()->Type() ==
PCB_GENERATOR_T )
796 if( sel_items.size() == 1 && sel_items.back()->Type() ==
PCB_GENERATOR_T )
802 EDA_ITEMS oItems( orig_items.begin(), orig_items.end() );
812 return !restore_state;
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.
BOX2< Vec > & Normalize()
Ensure that the height and width are positive.
const Vec & GetPosition() const
const Vec & GetOrigin() const
coord_type GetHeight() const
coord_type GetWidth() const
const Vec & GetSize() const
BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
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 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.
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.
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 genUpdateEdit
static TOOL_ACTION updateLocalRatsnest
static TOOL_ACTION moveIndividually
move items one-by-one
static TOOL_ACTION positionRelative
Activation of the position relative tool.
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 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.
const LSET GetSelectionLayers()
const std::vector< EDA_ITEM * > GetItemsSortedBySelectionOrder() const
int Size() const
Returns the number of selected parts.
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.
VECTOR2< T > GetVectorSnapped45(const VECTOR2< T > &aVec, bool only45=false)
Snap a vector onto the nearest 0, 45 or 90 degree line.
VECTOR2< ret_type > GetClampedCoords(const VECTOR2< in_type > &aCoords, pad_type aPadding=1u)
Clamps a vector to values that can be negated, respecting numeric limits of coordinates data type wit...
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