61 std::set<BOARD_ITEM*>
moved;
65 if( !item->IsBOARD_ITEM() )
73 if( !
moved.insert( boardItem ).second )
77 boardItem->
Move( aMoveVec );
94 m_commit = std::make_unique<BOARD_COMMIT>(
this );
133 std::deque<EDA_ITEM*>& items = padsOnly.
Items();
134 items.erase( std::remove_if( items.begin(), items.end(),
137 return aItem->Type() != PCB_PAD_T;
197 frame()->PushTool( aEvent );
204 invertXAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertXAxis;
205 invertYAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertYAxis;
210 bool originSet =
false;
216 || (
frame()->GetPcbNewSettings()
217 &&
frame()->GetPcbNewSettings()->m_AllowFreePads );
225 view.SetVisible( &ruler,
false );
233 const auto setInitialMsg =
236 statusPopup.
SetText(
_(
"Select the reference point on the item to move." ) );
239 const auto setDragMsg =
242 statusPopup.
SetText(
_(
"Select the point to define the new offset from." ) );
245 const auto setPopupPosition =
254 view.SetVisible( &ruler,
false );
257 controls.ForceCursorPosition(
false );
262 const auto applyVector =
267 commit.
Push(
_(
"Set Relative Position Interactively" ) );
275 controls.ForceCursorPosition(
false );
290 grid.SetUseGrid(
view.GetGAL()->GetGridSnapping() && !evt->DisableGridSnapping() );
291 VECTOR2I cursorPos = evt->HasPosition() ? evt->Position() :
controls.GetMousePosition();
294 if( !evt->IsActivate() && !evt->IsCancelInteractive() )
297 cursorPos =
grid.ResolveSnap( cursorPos,
nullptr ).position;
298 controls.ForceCursorPosition(
true, cursorPos );
305 if( evt->IsCancelInteractive() )
313 frame()->PopTool( aEvent );
317 else if( evt->IsActivate() )
322 frame()->PopTool( aEvent );
326 else if( !originSet && ( evt->IsDrag(
BUT_LEFT ) || evt->IsClick(
BUT_LEFT ) ) )
329 twoPtMgr.
SetEnd( cursorPos );
339 else if( originSet && ( evt->IsClick(
BUT_LEFT ) || evt->IsMouseUp(
BUT_LEFT ) ) )
353 const VECTOR2I move = toReferencePtVector + offsetVector;
373 else if( originSet && ( evt->IsMotion() || evt->IsDrag(
BUT_LEFT ) ) )
386 view.SetVisible( &ruler,
true );
391 if(
frame()->GetUserUnits() != units )
393 units =
frame()->GetUserUnits();
408 invertXAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertXAxis;
409 invertYAxis =
frame()->GetFootprintEditorSettings()->m_DisplayInvertYAxis;
412 ruler.
UpdateDir( invertXAxis, invertYAxis );
418 else if( !evt->IsMouseAction() )
423 view.SetVisible( &ruler,
false );
434 view.SetVisible( &ruler,
false );
435 view.Remove( &ruler );
440 controls.ForceCursorPosition(
false );
453 || (
frame()->GetPcbNewSettings()
454 &&
frame()->GetPcbNewSettings()->m_AllowFreePads );
457 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.
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