KiCad PCB EDA Suite
Loading...
Searching...
No Matches
edit_tool.cpp File Reference
#include <advanced_config.h>
#include <limits>
#include <kiplatform/ui.h>
#include <gal/graphics_abstraction_layer.h>
#include <board.h>
#include <board_design_settings.h>
#include <footprint.h>
#include <pcb_shape.h>
#include <pcb_group.h>
#include <pcb_target.h>
#include <pcb_text.h>
#include <pcb_textbox.h>
#include <pcb_table.h>
#include <pcb_tablecell.h>
#include <pcb_generator.h>
#include <collectors.h>
#include <pcb_edit_frame.h>
#include <drawing_sheet/ds_proxy_view_item.h>
#include <kiway.h>
#include <array_creator.h>
#include <status_popup.h>
#include <tool/selection_conditions.h>
#include <tool/tool_manager.h>
#include <tools/pcb_actions.h>
#include <tools/pcb_selection_tool.h>
#include <tools/edit_tool.h>
#include <tools/item_modification_routine.h>
#include <tools/pcb_picker_tool.h>
#include <tools/pcb_point_editor.h>
#include <tools/tool_event_utils.h>
#include <tools/pcb_grid_helper.h>
#include <tools/pad_tool.h>
#include <view/view_controls.h>
#include <connectivity/connectivity_algo.h>
#include <connectivity/connectivity_items.h>
#include <core/kicad_algo.h>
#include <fix_board_shape.h>
#include <bitmaps.h>
#include <cassert>
#include <functional>
#include "kicad_clipboard.h"
#include <wx/hyperlink.h>
#include <router/router_tool.h>
#include <dialogs/dialog_move_exact.h>
#include <dialogs/dialog_track_via_properties.h>
#include <dialogs/dialog_tablecell_properties.h>
#include <dialogs/dialog_table_properties.h>
#include <dialogs/dialog_unit_entry.h>
#include <board_commit.h>
#include <zone_filler.h>
#include <pcb_reference_image.h>

Go to the source code of this file.

Functions

static std::shared_ptr< CONDITIONAL_MENUmakePositioningToolsMenu (TOOL_INTERACTIVE *aTool)
 
static std::shared_ptr< CONDITIONAL_MENUmakeShapeModificationMenu (TOOL_INTERACTIVE *aTool)
 
static std::optional< int > GetFilletParams (PCB_BASE_EDIT_FRAME &aFrame, wxString &aErrorMsg)
 Prompt the user for the fillet radius and return it. More...
 
static std::optional< CHAMFER_PARAMSGetChamferParams (PCB_BASE_EDIT_FRAME &aFrame, wxString &aErrorMsg)
 Prompt the user for chamfer parameters. More...
 
static VECTOR2I mirrorPointX (const VECTOR2I &aPoint, const VECTOR2I &aMirrorPoint)
 Mirror a point about the vertical axis passing through another point. More...
 
static VECTOR2I mirrorPointY (const VECTOR2I &aPoint, const VECTOR2I &aMirrorPoint)
 Mirror a point about the vertical axis passing through another point. More...
 
static void mirrorPadX (PAD &aPad, const VECTOR2I &aMirrorPoint)
 Mirror a pad in the vertical axis passing through a point (mirror left to right). More...
 
static void mirrorPadY (PAD &aPad, const VECTOR2I &aMirrorPoint)
 Mirror a pad in the vertical axis passing through a point (mirror left to right). More...
 

Function Documentation

◆ GetChamferParams()

static std::optional< CHAMFER_PARAMS > GetChamferParams ( PCB_BASE_EDIT_FRAME aFrame,
wxString &  aErrorMsg 
)
static

Prompt the user for chamfer parameters.

Parameters
aFrame
aErrorMsgfilled with an error message if the parameter is invalid somehow
Returns
std::optional<int> the chamfer parameters or std::nullopt if no valid fillet specified

Definition at line 1206 of file edit_tool.cpp.

References _, WX_UNIT_ENTRY_DIALOG::GetValue(), EDA_IU_SCALE::mmToIU(), and pcbIUScale.

◆ GetFilletParams()

static std::optional< int > GetFilletParams ( PCB_BASE_EDIT_FRAME aFrame,
wxString &  aErrorMsg 
)
static

Prompt the user for the fillet radius and return it.

Parameters
aFrame
aErrorMsgfilled with an error message if the parameter is invalid somehow
Returns
std::optional<int> the fillet radius or std::nullopt if no valid fillet specified

Definition at line 1175 of file edit_tool.cpp.

References _, and WX_UNIT_ENTRY_DIALOG::GetValue().

◆ makePositioningToolsMenu()

static std::shared_ptr< CONDITIONAL_MENU > makePositioningToolsMenu ( TOOL_INTERACTIVE aTool)
static

◆ makeShapeModificationMenu()

◆ mirrorPadX()

static void mirrorPadX ( PAD aPad,
const VECTOR2I aMirrorPoint 
)
static

Mirror a pad in the vertical axis passing through a point (mirror left to right).

Definition at line 1902 of file edit_tool.cpp.

References CUSTOM, PAD::FlipPrimitives(), PAD::GetDelta(), PAD::GetOffset(), PAD::GetOrientation(), PAD::GetPosition(), PAD::GetShape(), mirrorPointX(), PAD::SetDelta(), PAD::SetOffset(), PAD::SetOrientation(), PAD::SetPosition(), and VECTOR2< T >::x.

Referenced by EDIT_TOOL::Mirror().

◆ mirrorPadY()

static void mirrorPadY ( PAD aPad,
const VECTOR2I aMirrorPoint 
)
static

Mirror a pad in the vertical axis passing through a point (mirror left to right).

Definition at line 1925 of file edit_tool.cpp.

References CUSTOM, PAD::FlipPrimitives(), PAD::GetDelta(), PAD::GetOffset(), PAD::GetOrientation(), PAD::GetPosition(), PAD::GetShape(), mirrorPointY(), PAD::SetDelta(), PAD::SetOffset(), PAD::SetOrientation(), PAD::SetPosition(), and VECTOR2< T >::y.

Referenced by EDIT_TOOL::Mirror().

◆ mirrorPointX()

static VECTOR2I mirrorPointX ( const VECTOR2I aPoint,
const VECTOR2I aMirrorPoint 
)
static

Mirror a point about the vertical axis passing through another point.

Definition at line 1872 of file edit_tool.cpp.

References VECTOR2< T >::x.

Referenced by mirrorPadX().

◆ mirrorPointY()

static VECTOR2I mirrorPointY ( const VECTOR2I aPoint,
const VECTOR2I aMirrorPoint 
)
static

Mirror a point about the vertical axis passing through another point.

Definition at line 1887 of file edit_tool.cpp.

References VECTOR2< T >::y.

Referenced by mirrorPadY().