LibrePCB Developers Documentation
CmdPolygonEdit Class Referencefinal

The CmdPolygonEdit class. More...

#include <cmdpolygonedit.h>

+ Inheritance diagram for CmdPolygonEdit:
+ Collaboration diagram for CmdPolygonEdit:

Public Member Functions

 CmdPolygonEdit ()=delete
 
 CmdPolygonEdit (const CmdPolygonEdit &other)=delete
 
 CmdPolygonEdit (Polygon &polygon) noexcept
 
 ~CmdPolygonEdit () noexcept
 
void setLayer (const Layer &layer, bool immediate) noexcept
 
void setLineWidth (const UnsignedLength &width, bool immediate) noexcept
 
void setIsFilled (bool filled, bool immediate) noexcept
 
void setIsGrabArea (bool grabArea, bool immediate) noexcept
 
void setPath (const Path &path, bool immediate) noexcept
 
void translate (const Point &deltaPos, bool immediate) noexcept
 
void snapToGrid (const PositiveLength &gridInterval, bool immediate) noexcept
 
void rotate (const Angle &angle, const Point &center, bool immediate) noexcept
 
void mirrorGeometry (Qt::Orientation orientation, const Point &center, bool immediate) noexcept
 
void mirrorLayer (bool immediate) noexcept
 
CmdPolygonEditoperator= (const CmdPolygonEdit &rhs)=delete
 
- 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

PolygonmPolygon
 
const LayermOldLayer
 
const LayermNewLayer
 
UnsignedLength mOldLineWidth
 
UnsignedLength mNewLineWidth
 
bool mOldIsFilled
 
bool mNewIsFilled
 
bool mOldIsGrabArea
 
bool mNewIsGrabArea
 
Path mOldPath
 
Path mNewPath
 

Additional Inherited Members

Detailed Description

The CmdPolygonEdit class.

Constructor & Destructor Documentation

◆ CmdPolygonEdit() [1/3]

CmdPolygonEdit ( )
delete

◆ CmdPolygonEdit() [2/3]

CmdPolygonEdit ( const CmdPolygonEdit other)
delete

◆ CmdPolygonEdit() [3/3]

CmdPolygonEdit ( Polygon polygon)
explicitnoexcept

◆ ~CmdPolygonEdit()

~CmdPolygonEdit ( )
noexcept
+ Here is the call graph for this function:

Member Function Documentation

◆ setLayer()

void setLayer ( const Layer layer,
bool  immediate 
)
noexcept
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setLineWidth()

void setLineWidth ( const UnsignedLength width,
bool  immediate 
)
noexcept
+ Here is the call graph for this function:

◆ setIsFilled()

void setIsFilled ( bool  filled,
bool  immediate 
)
noexcept
+ Here is the call graph for this function:

◆ setIsGrabArea()

void setIsGrabArea ( bool  grabArea,
bool  immediate 
)
noexcept
+ Here is the call graph for this function:

◆ setPath()

void setPath ( const Path path,
bool  immediate 
)
noexcept
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ translate()

void translate ( const Point deltaPos,
bool  immediate 
)
noexcept
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ snapToGrid()

void snapToGrid ( const PositiveLength gridInterval,
bool  immediate 
)
noexcept
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ rotate()

void rotate ( const Angle angle,
const Point center,
bool  immediate 
)
noexcept
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mirrorGeometry()

void mirrorGeometry ( Qt::Orientation  orientation,
const Point center,
bool  immediate 
)
noexcept
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mirrorLayer()

void mirrorLayer ( bool  immediate)
noexcept
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ operator=()

CmdPolygonEdit& operator= ( const CmdPolygonEdit rhs)
delete

◆ 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:
+ Here is the caller 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

◆ mPolygon

Polygon& mPolygon
private

◆ mOldLayer

const Layer* mOldLayer
private

◆ mNewLayer

const Layer* mNewLayer
private

◆ mOldLineWidth

UnsignedLength mOldLineWidth
private

◆ mNewLineWidth

UnsignedLength mNewLineWidth
private

◆ mOldIsFilled

bool mOldIsFilled
private

◆ mNewIsFilled

bool mNewIsFilled
private

◆ mOldIsGrabArea

bool mOldIsGrabArea
private

◆ mNewIsGrabArea

bool mNewIsGrabArea
private

◆ mOldPath

Path mOldPath
private

◆ mNewPath

Path mNewPath
private

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