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;
182 frame()->PushTool( aEvent );
189 invertXAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertXAxis;
190 invertYAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertYAxis;
195 bool originSet =
false;
206 view.SetVisible( &ruler,
false );
214 const auto setInitialMsg =
217 statusPopup.
SetText(
_(
"Select the reference point on the item to move." ) );
220 const auto setDragMsg =
223 statusPopup.
SetText(
_(
"Select the point to define the new offset from." ) );
226 const auto setPopupPosition =
235 view.SetVisible( &ruler,
false );
238 controls.ForceCursorPosition(
false );
243 const auto applyVector =
248 commit.
Push(
_(
"Set Relative Position Interactively" ) );
256 controls.ForceCursorPosition(
false );
271 grid.SetUseGrid(
view.GetGAL()->GetGridSnapping() && !evt->DisableGridSnapping() );
272 VECTOR2I cursorPos = evt->HasPosition() ? evt->Position() :
controls.GetMousePosition();
273 cursorPos =
grid.BestSnapAnchor( cursorPos,
nullptr );
274 controls.ForceCursorPosition(
true, cursorPos );
277 if( evt->IsCancelInteractive() )
285 frame()->PopTool( aEvent );
289 else if( evt->IsActivate() )
294 frame()->PopTool( aEvent );
298 else if( !originSet && ( evt->IsDrag(
BUT_LEFT ) || evt->IsClick(
BUT_LEFT ) ) )
301 twoPtMgr.
SetEnd( cursorPos );
311 else if( originSet && ( evt->IsClick(
BUT_LEFT ) || evt->IsMouseUp(
BUT_LEFT ) ) )
322 applyVector( offsetVector );
336 else if( originSet && ( evt->IsMotion() || evt->IsDrag(
BUT_LEFT ) ) )
346 twoPtMgr.
SetEnd( cursorPos );
348 view.SetVisible( &ruler,
true );
355 units =
frame()->GetUserUnits();
370 invertXAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertXAxis;
371 invertYAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertYAxis;
374 ruler.
UpdateDir( invertXAxis, invertYAxis );
380 else if( !evt->IsMouseAction() )
385 view.SetVisible( &ruler,
false );
396 view.SetVisible( &ruler,
false );
397 view.Remove( &ruler );
402 controls.ForceCursorPosition(
false );
414 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 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