Krita Source Code Documentation
Loading...
Searching...
No Matches
KoPathPointMoveCommand Class Reference

The undo / redo command for path point moving. More...

#include <KoPathPointMoveCommand.h>

+ Inheritance diagram for KoPathPointMoveCommand:

Public Member Functions

int id () const override
 
 KoPathPointMoveCommand (const QList< KoPathPointData > &pointData, const QList< QPointF > &offsets, KUndo2Command *parent=0)
 
 KoPathPointMoveCommand (const QList< KoPathPointData > &pointData, const QPointF &offset, KUndo2Command *parent=0)
 
bool mergeWith (const KUndo2Command *command) override
 
void redo () override
 redo the command
 
void undo () override
 revert the actions done in redo
 
 ~KoPathPointMoveCommand () override
 
- Public Member Functions inherited from KUndo2Command
QString actionText () const
 
virtual bool canAnnihilateWith (const KUndo2Command *other) const
 
const KUndo2Commandchild (int index) const
 
int childCount () const
 
virtual QTime endTime () const
 
KUndo2CommandExtraDataextraData () const
 
bool hasParent () const
 
virtual bool isMerged () const
 
 KUndo2Command (const KUndo2MagicString &text, KUndo2Command *parent=0)
 
 KUndo2Command (KUndo2Command *parent=0)
 
virtual QVector< KUndo2Command * > mergeCommandsVector () const
 
virtual void redoMergedCommands ()
 
void setEndTime ()
 
virtual void setEndTime (const QTime &time)
 
void setExtraData (KUndo2CommandExtraData *data)
 
void setText (const KUndo2MagicString &text)
 
void setTime ()
 
virtual void setTime (const QTime &time)
 
virtual void setTimedID (int timedID)
 
KUndo2MagicString text () const
 
virtual QTime time () const
 
virtual int timedId () const
 
virtual bool timedMergeWith (KUndo2Command *other)
 
virtual void undoMergedCommands ()
 
virtual ~KUndo2Command ()
 

Private Attributes

KoPathPointMoveCommandPrivate *const d
 

Detailed Description

The undo / redo command for path point moving.

Definition at line 22 of file KoPathPointMoveCommand.h.

Constructor & Destructor Documentation

◆ KoPathPointMoveCommand() [1/2]

KoPathPointMoveCommand::KoPathPointMoveCommand ( const QList< KoPathPointData > & pointData,
const QPointF & offset,
KUndo2Command * parent = 0 )

Command to move path points.

Parameters
pointDatathe path points to move
offsetthe offset by which the point is moved in document coordinates
parentthe parent command used for macro commands

Definition at line 26 of file KoPathPointMoveCommand.cpp.

27 : KUndo2Command(parent),
29{
30 setText(kundo2_i18n("Move points"));
31
32 foreach (const KoPathPointData &data, pointData) {
33 if (!d->points.contains(data)) {
34 d->points[data] = offset;
35 d->paths.insert(data.pathShape);
36 }
37 }
38}
void setText(const KUndo2MagicString &text)
KUndo2Command(KUndo2Command *parent=0)
Describe a KoPathPoint by a KoPathShape and its indices.
KoPathShape * pathShape
path shape the path point belongs too
QMap< KoPathPointData, QPointF > points
KoPathPointMoveCommandPrivate *const d
KUndo2MagicString kundo2_i18n(const char *text)

References d, kundo2_i18n(), KoPathPointMoveCommandPrivate::paths, KoPathPointData::pathShape, KoPathPointMoveCommandPrivate::points, and KUndo2Command::setText().

◆ KoPathPointMoveCommand() [2/2]

KoPathPointMoveCommand::KoPathPointMoveCommand ( const QList< KoPathPointData > & pointData,
const QList< QPointF > & offsets,
KUndo2Command * parent = 0 )

Command to move path points.

Parameters
pointDatathe path points to move
offsetsthe offsets by which the points are moved in document coordinates
parentthe parent command used for macro commands

Definition at line 40 of file KoPathPointMoveCommand.cpp.

41 : KUndo2Command(parent),
43{
44 Q_ASSERT(pointData.count() == offsets.count());
45
46 setText(kundo2_i18n("Move points"));
47
48 uint dataCount = pointData.count();
49 for (uint i = 0; i < dataCount; ++i) {
50 const KoPathPointData & data = pointData[i];
51 if (!d->points.contains(data)) {
52 d->points[data] = offsets[i];
53 d->paths.insert(data.pathShape);
54 }
55 }
56}
unsigned int uint

References d, kundo2_i18n(), KoPathPointMoveCommandPrivate::paths, KoPathPointData::pathShape, KoPathPointMoveCommandPrivate::points, and KUndo2Command::setText().

◆ ~KoPathPointMoveCommand()

KoPathPointMoveCommand::~KoPathPointMoveCommand ( )
override

Definition at line 58 of file KoPathPointMoveCommand.cpp.

59{
60 delete d;
61}

References d.

Member Function Documentation

◆ id()

int KoPathPointMoveCommand::id ( ) const
overridevirtual

Returns the ID of this command.

A command ID is used in command compression. It must be an integer unique to this command's class, or -1 if the command doesn't support compression.

If the command supports compression this function must be overridden in the derived class to return the correct ID. The base implementation returns -1.

KUndo2QStack::push() will only try to merge two commands if they have the same ID, and the ID is not -1.

See also
mergeWith(), KUndo2QStack::push()

Reimplemented from KUndo2Command.

Definition at line 75 of file KoPathPointMoveCommand.cpp.

References KisCommandUtils::ChangePathShapePointId.

◆ mergeWith()

bool KoPathPointMoveCommand::mergeWith ( const KUndo2Command * command)
overridevirtual

Attempts to merge this command with command. Returns true on success; otherwise returns false.

If this function returns true, calling this command's redo() must have the same effect as redoing both this command and command. Similarly, calling this command's undo() must have the same effect as undoing command and this command.

KUndo2QStack will only try to merge two commands if they have the same id, and the id is not -1.

The default implementation returns false.

See also
id() KUndo2QStack::push()

Reimplemented from KUndo2Command.

Definition at line 80 of file KoPathPointMoveCommand.cpp.

81{
82 const KoPathPointMoveCommand *other = dynamic_cast<const KoPathPointMoveCommand*>(command);
83
84 if (!other ||
85 other->d->paths != d->paths ||
86 !KritaUtils::compareListsUnordered(other->d->points.keys(), d->points.keys())) {
87
88 return false;
89 }
90
91 auto it = d->points.begin();
92 while (it != d->points.end()) {
93 it.value() += other->d->points[it.key()];
94 ++it;
95 }
96
97 return true;
98}
The undo / redo command for path point moving.
bool compareListsUnordered(const QList< T > &a, const QList< T > &b)

References KritaUtils::compareListsUnordered(), d, KoPathPointMoveCommandPrivate::paths, and KoPathPointMoveCommandPrivate::points.

◆ redo()

void KoPathPointMoveCommand::redo ( )
overridevirtual

redo the command

Reimplemented from KUndo2Command.

Definition at line 63 of file KoPathPointMoveCommand.cpp.

64{
66 d->applyOffset(1.0);
67}
virtual void redo()

References KoPathPointMoveCommandPrivate::applyOffset(), d, and KUndo2Command::redo().

◆ undo()

void KoPathPointMoveCommand::undo ( )
overridevirtual

revert the actions done in redo

Reimplemented from KUndo2Command.

Definition at line 69 of file KoPathPointMoveCommand.cpp.

70{
72 d->applyOffset(-1.0);
73}
virtual void undo()

References KoPathPointMoveCommandPrivate::applyOffset(), d, and KUndo2Command::undo().

Member Data Documentation

◆ d

KoPathPointMoveCommandPrivate* const KoPathPointMoveCommand::d
private

Definition at line 52 of file KoPathPointMoveCommand.h.


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