LibrePCB Developers Documentation
CmdBoardNetSegmentAddElements Class Referencefinal

The CmdBoardNetSegmentAddElements class. More...

#include <cmdboardnetsegmentaddelements.h>

+ Inheritance diagram for CmdBoardNetSegmentAddElements:
+ Collaboration diagram for CmdBoardNetSegmentAddElements:

Public Member Functions

 CmdBoardNetSegmentAddElements (BI_NetSegment &segment) noexcept
 
 ~CmdBoardNetSegmentAddElements () noexcept
 
BI_ViaaddVia (BI_Via &via)
 
BI_ViaaddVia (const Via &via)
 
BI_NetPointaddNetPoint (BI_NetPoint &netpoint)
 
BI_NetPointaddNetPoint (const Point &position)
 
BI_NetLineaddNetLine (BI_NetLine &netline)
 
BI_NetLineaddNetLine (BI_NetLineAnchor &startPoint, BI_NetLineAnchor &endPoint, const Layer &layer, const PositiveLength &width)
 
- Public Member Functions inherited from UndoCommand
 UndoCommand ()=delete
 
 UndoCommand (const UndoCommand &other)=delete
 
 UndoCommand (const QString &text) noexcept
 
virtual ~UndoCommand () noexcept
 
const QString & getText () const noexcept
 
bool wasEverExecuted () const noexcept
 This method shows whether that command was ever executed (execute() called successfully) More...
 
bool wasEverReverted () const noexcept
 This method shows whether that command was ever reverted (undo() called at least one time) More...
 
bool isCurrentlyExecuted () const noexcept
 This method shows whether that command is currently executed (redo() called one time more than undo()) More...
 
virtual bool execute () final
 Execute the command (must only be called once) More...
 
virtual void undo () final
 Undo the command. More...
 
virtual void redo () final
 Redo the command. More...
 
UndoCommandoperator= (const UndoCommand &rhs)=delete
 

Private Member Functions

bool performExecute () override
 Execute the command the first time. More...
 
void performUndo () override
 Undo the command. More...
 
void performRedo () override
 Redo the command. More...
 

Private Attributes

BI_NetSegmentmNetSegment
 
QList< BI_Via * > mVias
 
QList< BI_NetPoint * > mNetPoints
 
QList< BI_NetLine * > mNetLines
 

Additional Inherited Members

Detailed Description

Constructor & Destructor Documentation

◆ CmdBoardNetSegmentAddElements()

◆ ~CmdBoardNetSegmentAddElements()

Member Function Documentation

◆ addVia() [1/2]

BI_Via * addVia ( BI_Via via)
+ Here is the caller graph for this function:

◆ addVia() [2/2]

BI_Via * addVia ( const Via via)
+ Here is the call graph for this function:

◆ addNetPoint() [1/2]

BI_NetPoint * addNetPoint ( BI_NetPoint netpoint)
+ Here is the caller graph for this function:

◆ addNetPoint() [2/2]

BI_NetPoint * addNetPoint ( const Point position)
+ Here is the call graph for this function:

◆ addNetLine() [1/2]

BI_NetLine * addNetLine ( BI_NetLine netline)
+ Here is the caller graph for this function:

◆ addNetLine() [2/2]

BI_NetLine * addNetLine ( BI_NetLineAnchor startPoint,
BI_NetLineAnchor endPoint,
const Layer layer,
const PositiveLength width 
)
+ Here is the call graph for this function:

◆ performExecute()

bool performExecute ( )
overrideprivatevirtual

Execute the command the first time.

Note
This method must be implemented in all derived classes. If the first time execution is exactly identical to an "redo" action, you can simple call librepcb::editor::UndoCommand::performRedo() in the implementation of this method.
Return values
trueIf the command has done some changes
falseIf the command has done nothing (the command can be deleted)

Implements UndoCommand.

+ Here is the call graph for this function:

◆ performUndo()

void performUndo ( )
overrideprivatevirtual

Undo the command.

Note
This method must be implemented in all derived classes.

Implements UndoCommand.

+ Here is the call graph for this function:

◆ performRedo()

void performRedo ( )
overrideprivatevirtual

Redo the command.

Note
This method must be implemented in all derived classes.

Implements UndoCommand.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Member Data Documentation

◆ mNetSegment

BI_NetSegment& mNetSegment
private

◆ mVias

QList<BI_Via*> mVias
private

◆ mNetPoints

QList<BI_NetPoint*> mNetPoints
private

◆ mNetLines

QList<BI_NetLine*> mNetLines
private

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