KiCad PCB EDA Suite
Loading...
Searching...
No Matches
LINE_CHAMFER_ROUTINE Class Reference

Pairwise line tool that adds a chamfer between the lines. More...

#include <item_modification_routine.h>

Inheritance diagram for LINE_CHAMFER_ROUTINE:
PAIRWISE_LINE_ROUTINE ITEM_MODIFICATION_ROUTINE

Public Member Functions

 LINE_CHAMFER_ROUTINE (BOARD_ITEM *aBoard, CHANGE_HANDLER &aHandler, CHAMFER_PARAMS aChamferParams)
 
wxString GetCommitDescription () const override
 
std::optional< wxString > GetStatusMessage () const override
 Get a status message to show when the routine is complete.
 
void ProcessLinePair (PCB_SHAPE &aLineA, PCB_SHAPE &aLineB) override
 Perform the action on the pair of lines given.
 
unsigned GetSuccesses () const
 
unsigned GetFailures () const
 

Protected Member Functions

BOARD_ITEMGetBoard () const
 The BOARD used when creating new shapes.
 
void AddSuccess ()
 Mark that one of the actions succeeded.
 
void AddFailure ()
 Mark that one of the actions failed.
 
bool ModifyLineOrDeleteIfZeroLength (PCB_SHAPE &aItem, const SEG &aSeg)
 Helper function useful for multiple tools: modify a line or delete it if it has zero length.
 
CHANGE_HANDLERGetHandler ()
 Access the handler for making changes to the board.
 

Private Attributes

const CHAMFER_PARAMS m_chamferParams
 
BOARD_ITEMm_board
 
CHANGE_HANDLERm_handler
 
unsigned m_numSuccesses
 
unsigned m_numFailures
 

Detailed Description

Pairwise line tool that adds a chamfer between the lines.

Definition at line 268 of file item_modification_routine.h.

Constructor & Destructor Documentation

◆ LINE_CHAMFER_ROUTINE()

LINE_CHAMFER_ROUTINE::LINE_CHAMFER_ROUTINE ( BOARD_ITEM aBoard,
CHANGE_HANDLER aHandler,
CHAMFER_PARAMS  aChamferParams 
)
inline

Definition at line 271 of file item_modification_routine.h.

Member Function Documentation

◆ AddFailure()

void ITEM_MODIFICATION_ROUTINE::AddFailure ( )
inlineprotectedinherited

◆ AddSuccess()

void ITEM_MODIFICATION_ROUTINE::AddSuccess ( )
inlineprotectedinherited

◆ GetBoard()

BOARD_ITEM * ITEM_MODIFICATION_ROUTINE::GetBoard ( ) const
inlineprotectedinherited

◆ GetCommitDescription()

wxString LINE_CHAMFER_ROUTINE::GetCommitDescription ( ) const
overridevirtual

Implements ITEM_MODIFICATION_ROUTINE.

Definition at line 174 of file item_modification_routine.cpp.

References _.

◆ GetFailures()

◆ GetHandler()

CHANGE_HANDLER & ITEM_MODIFICATION_ROUTINE::GetHandler ( )
inlineprotectedinherited

◆ GetStatusMessage()

std::optional< wxString > LINE_CHAMFER_ROUTINE::GetStatusMessage ( ) const
overridevirtual

Get a status message to show when the routine is complete.

Usually this will be an error or nothing.

Implements ITEM_MODIFICATION_ROUTINE.

Definition at line 180 of file item_modification_routine.cpp.

References _, ITEM_MODIFICATION_ROUTINE::GetFailures(), and ITEM_MODIFICATION_ROUTINE::GetSuccesses().

◆ GetSuccesses()

◆ ModifyLineOrDeleteIfZeroLength()

bool ITEM_MODIFICATION_ROUTINE::ModifyLineOrDeleteIfZeroLength ( PCB_SHAPE aItem,
const SEG aSeg 
)
protectedinherited

Helper function useful for multiple tools: modify a line or delete it if it has zero length.

Parameters
aItemthe line to modify
aSegthe new line geometry

Definition at line 41 of file item_modification_routine.cpp.

References SEG::A, SEG::B, ITEM_MODIFICATION_ROUTINE::CHANGE_HANDLER::DeleteItem(), ITEM_MODIFICATION_ROUTINE::GetHandler(), EDA_SHAPE::GetShape(), SEG::Length(), ITEM_MODIFICATION_ROUTINE::CHANGE_HANDLER::MarkItemModified(), EDA_SHAPE::SetEnd(), and EDA_SHAPE::SetStart().

Referenced by LINE_FILLET_ROUTINE::ProcessLinePair(), and ProcessLinePair().

◆ ProcessLinePair()

void LINE_CHAMFER_ROUTINE::ProcessLinePair ( PCB_SHAPE aLineA,
PCB_SHAPE aLineB 
)
overridevirtual

Perform the action on the pair of lines given.

The routine will be called repeatedly with all possible pairs of lines in the selection. The tools should handle the ones it's interested in. This means that the same line can appear multiple times with different partners.

The routine can skip lines that it's not interested in by returning without adding to the success or failure count.

Parameters
aLineAthe first line
aLineBthe second line
Returns
did the action succeed

Implements PAIRWISE_LINE_ROUTINE.

Definition at line 194 of file item_modification_routine.cpp.

References ITEM_MODIFICATION_ROUTINE::AddFailure(), ITEM_MODIFICATION_ROUTINE::CHANGE_HANDLER::AddNewItem(), ITEM_MODIFICATION_ROUTINE::AddSuccess(), ComputeChamferPoints(), ITEM_MODIFICATION_ROUTINE::GetBoard(), EDA_SHAPE::GetEnd(), ITEM_MODIFICATION_ROUTINE::GetHandler(), PCB_SHAPE::GetLayer(), EDA_SHAPE::GetLength(), EDA_SHAPE::GetStart(), PCB_SHAPE::GetWidth(), BOARD_ITEM::IsLocked(), m_chamferParams, and ITEM_MODIFICATION_ROUTINE::ModifyLineOrDeleteIfZeroLength().

Member Data Documentation

◆ m_board

BOARD_ITEM* ITEM_MODIFICATION_ROUTINE::m_board
privateinherited

Definition at line 209 of file item_modification_routine.h.

Referenced by ITEM_MODIFICATION_ROUTINE::GetBoard().

◆ m_chamferParams

const CHAMFER_PARAMS LINE_CHAMFER_ROUTINE::m_chamferParams
private

Definition at line 284 of file item_modification_routine.h.

Referenced by ProcessLinePair().

◆ m_handler

CHANGE_HANDLER& ITEM_MODIFICATION_ROUTINE::m_handler
privateinherited

Definition at line 210 of file item_modification_routine.h.

Referenced by ITEM_MODIFICATION_ROUTINE::GetHandler().

◆ m_numFailures

unsigned ITEM_MODIFICATION_ROUTINE::m_numFailures
privateinherited

◆ m_numSuccesses

unsigned ITEM_MODIFICATION_ROUTINE::m_numSuccesses
privateinherited

The documentation for this class was generated from the following files: