61 if( !item->IsBOARD_ITEM() )
66 boardItem->
Move( aMoveVec );
83 m_commit = std::make_unique<BOARD_COMMIT>(
this );
120 std::deque<EDA_ITEM*>& items = padsOnly.
Items();
121 items.erase( std::remove_if( items.begin(), items.end(),
124 return aItem->Type() != PCB_PAD_T;
181 frame()->PushTool( aEvent );
188 invertXAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertXAxis;
189 invertYAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertYAxis;
194 bool originSet =
false;
205 view.SetVisible( &ruler,
false );
213 const auto setInitialMsg =
216 statusPopup.
SetText(
_(
"Select the reference point on the item to move." ) );
219 const auto setDragMsg =
222 statusPopup.
SetText(
_(
"Select the point to define the new offset from." ) );
225 const auto setPopupPosition =
234 view.SetVisible( &ruler,
false );
237 controls.ForceCursorPosition(
false );
242 const auto applyVector =
247 commit.
Push(
_(
"Set Relative Position Interactively" ) );
255 controls.ForceCursorPosition(
false );
270 grid.SetUseGrid(
view.GetGAL()->GetGridSnapping() && !evt->DisableGridSnapping() );
271 VECTOR2I cursorPos = evt->HasPosition() ? evt->Position() :
controls.GetMousePosition();
272 cursorPos =
grid.BestSnapAnchor( cursorPos,
nullptr );
273 controls.ForceCursorPosition(
true, cursorPos );
276 if( evt->IsCancelInteractive() )
284 frame()->PopTool( aEvent );
288 else if( evt->IsActivate() )
293 frame()->PopTool( aEvent );
297 else if( !originSet && ( evt->IsDrag(
BUT_LEFT ) || evt->IsClick(
BUT_LEFT ) ) )
300 twoPtMgr.
SetEnd( cursorPos );
310 else if( originSet && ( evt->IsClick(
BUT_LEFT ) || evt->IsMouseUp(
BUT_LEFT ) ) )
345 else if( originSet && ( evt->IsMotion() || evt->IsDrag(
BUT_LEFT ) ) )
359 twoPtMgr.
SetEnd( cursorPos );
361 view.SetVisible( &ruler,
true );
368 units =
frame()->GetUserUnits();
383 invertXAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertXAxis;
384 invertYAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertYAxis;
387 ruler.
UpdateDir( invertXAxis, invertYAxis );
393 else if( !evt->IsMouseAction() )
398 view.SetVisible( &ruler,
false );
409 view.SetVisible( &ruler,
false );
410 view.Remove( &ruler );
415 controls.ForceCursorPosition(
false );
427 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.
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
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 positionRelativeInteractively
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