65 std::set<BOARD_ITEM*>
moved;
69 if( !item->IsBOARD_ITEM() )
77 if( !
moved.insert( boardItem ).second )
81 boardItem->
Move( aMoveVec );
98 m_commit = std::make_unique<BOARD_COMMIT>(
this );
134 std::deque<EDA_ITEM*>& items = padsOnly.
Items();
135 items.erase( std::remove_if( items.begin(), items.end(),
138 return aItem->Type() != PCB_PAD_T;
195 frame()->PushTool( aEvent );
202 invertXAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertXAxis;
203 invertYAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertYAxis;
208 bool originSet =
false;
214 || (
frame()->GetPcbNewSettings()
215 &&
frame()->GetPcbNewSettings()->m_AllowFreePads );
223 view.SetVisible( &ruler,
false );
231 const auto setInitialMsg =
234 statusPopup.
SetText(
_(
"Select the reference point on the item to move." ) );
237 const auto setDragMsg =
240 statusPopup.
SetText(
_(
"Select the point to define the new offset from." ) );
243 const auto setPopupPosition =
252 view.SetVisible( &ruler,
false );
255 controls.ForceCursorPosition(
false );
260 const auto applyVector =
265 commit.
Push(
_(
"Set Relative Position Interactively" ) );
273 controls.ForceCursorPosition(
false );
288 grid.SetUseGrid(
view.GetGAL()->GetGridSnapping() && !evt->DisableGridSnapping() );
289 VECTOR2I cursorPos = evt->HasPosition() ? evt->Position() :
controls.GetMousePosition();
292 if( !evt->IsActivate() && !evt->IsCancelInteractive() )
295 cursorPos =
grid.BestSnapAnchor( cursorPos,
nullptr );
296 controls.ForceCursorPosition(
true, cursorPos );
303 if( evt->IsCancelInteractive() )
311 frame()->PopTool( aEvent );
315 else if( evt->IsActivate() )
320 frame()->PopTool( aEvent );
324 else if( !originSet && ( evt->IsDrag(
BUT_LEFT ) || evt->IsClick(
BUT_LEFT ) ) )
327 twoPtMgr.
SetEnd( cursorPos );
337 else if( originSet && ( evt->IsClick(
BUT_LEFT ) || evt->IsMouseUp(
BUT_LEFT ) ) )
351 const VECTOR2I move = toReferencePtVector + offsetVector;
371 else if( originSet && ( evt->IsMotion() || evt->IsDrag(
BUT_LEFT ) ) )
384 view.SetVisible( &ruler,
true );
391 units =
frame()->GetUserUnits();
406 invertXAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertXAxis;
407 invertYAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertYAxis;
410 ruler.
UpdateDir( invertXAxis, invertYAxis );
416 else if( !evt->IsMouseAction() )
421 view.SetVisible( &ruler,
false );
432 view.SetVisible( &ruler,
false );
433 view.Remove( &ruler );
438 controls.ForceCursorPosition(
false );
451 || (
frame()->GetPcbNewSettings()
452 &&
frame()->GetPcbNewSettings()->m_AllowFreePads );
455 m_commit->Push(
_(
"Position Relative" ) );
constexpr EDA_IU_SCALE pcbIUScale
static TOOL_ACTION updatePreferences
static TOOL_ACTION updateUnits
static TOOL_ACTION measureTool
static TOOL_ACTION selectionClear
Clear the current selection.
virtual void Push(const wxString &aMessage=wxEmptyString, int aCommitFlags=0) override
Execute the changes.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
virtual void Move(const VECTOR2I &aMoveVector)
Move this object.
BOARD_ITEM_CONTAINER * GetParent() const
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr, RECURSE_MODE aRecurse=RECURSE_MODE::NO_RECURSE)
Modify a given item in the model.
Dialog that invites the user to enter some kind of offset.
void ForceRefresh()
Force a redraw.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
void SetStatusPopup(wxWindow *aPopup)
A base class for most all the KiCad significant classes used in schematics and boards.
virtual VECTOR2I GetPosition() const
KICAD_T Type() const
Returns the type of object.
static const TOOL_EVENT SelectedItemsModified
Selected items were moved, this can be very high frequency on the canvas, use with care.
Used when the right click button is pressed, or when the select tool is in effect.
A drawn ruler item for showing the distance between two points.
void SetShowEndArrowHead(bool aShow)
void SwitchUnits(EDA_UNITS aUnits)
Switch the ruler units.
void UpdateDir(bool aFlipX, bool aFlipY)
void SetColor(const COLOR4D &aColor)
void SetShowTicks(bool aShow)
Represent a very simple geometry manager for items that have a start and end point.
void SetOrigin(const VECTOR2I &aOrigin)
< Set the origin of the ruler (the fixed end)
void SetAngleSnap(LEADER_MODE aSnap)
VECTOR2I GetOrigin() const
void Reset()
Reset the manager to the initial state.
void SetEnd(const VECTOR2I &aEnd)
Set the current end of the rectangle (the end that moves with the cursor.
static TOOL_ACTION interactiveOffsetTool
static TOOL_ACTION positionRelative
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
EDA_ITEM * GetTopLeftItem(bool aFootprintsOnly=false) const override
std::deque< EDA_ITEM * > & Items()
EDA_UNITS GetUserUnits() const
@ DIRECT
Unconstrained point-to-point.
@ LAYER_ANCHOR
Anchor of items having an anchor point (texts, footprints).
@ GEOMETRY
Position or shape has changed.
Class to handle a set of BOARD_ITEMs.
int GetUserUnits()
Return the currently selected user unit value for the interface.
T * GetAppSettings(const char *aFilename)
bool m_DisplayInvertYAxis
bool m_DisplayInvertXAxis
@ PCB_PAD_T
class PAD, a pad in a footprint
VECTOR2< int32_t > VECTOR2I