mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
237 lines
5.9 KiB
C++
237 lines
5.9 KiB
C++
/*
|
|
Copyright 2006-2025 The QElectroTech Team
|
|
This file is part of QElectroTech.
|
|
|
|
QElectroTech is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
QElectroTech is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef DIAGRAM_COMMANDS_H
|
|
#define DIAGRAM_COMMANDS_H
|
|
|
|
#include "qetgraphicsitem/conductor.h"
|
|
#include "conductorprofile.h"
|
|
#include "borderproperties.h"
|
|
#include "undocommand/deleteqgraphicsitemcommand.h"
|
|
|
|
class DiagramTextItem;
|
|
|
|
/**
|
|
@brief The PasteDiagramCommand class
|
|
This command pastes some content onto a particular diagram.
|
|
*/
|
|
class PasteDiagramCommand : public QUndoCommand {
|
|
// constructors, destructor
|
|
public:
|
|
PasteDiagramCommand(Diagram *, const DiagramContent &,
|
|
QUndoCommand * = nullptr);
|
|
~PasteDiagramCommand() override;
|
|
private:
|
|
PasteDiagramCommand(const PasteDiagramCommand &);
|
|
|
|
// methods
|
|
public:
|
|
void undo() override;
|
|
void redo() override;
|
|
|
|
// attributes
|
|
private:
|
|
/// pasted content
|
|
DiagramContent content;
|
|
/// diagram content is pasted onto
|
|
Diagram *diagram;
|
|
/// filter stating what kinds of items should be pasted
|
|
int filter;
|
|
/// prevent the first call to redo()
|
|
bool first_redo;
|
|
};
|
|
|
|
/**
|
|
@brief The CutDiagramCommand class
|
|
This command cuts content from a particular diagram.
|
|
*/
|
|
class CutDiagramCommand : public DeleteQGraphicsItemCommand {
|
|
// constructors, destructor
|
|
public:
|
|
CutDiagramCommand(Diagram *, const DiagramContent &,
|
|
QUndoCommand * = nullptr);
|
|
~CutDiagramCommand() override;
|
|
private:
|
|
CutDiagramCommand(const CutDiagramCommand &);
|
|
};
|
|
|
|
/**
|
|
@brief The MoveConductorsTextsCommand class
|
|
This command moves text items related to conductors
|
|
on a particular diagram.
|
|
*/
|
|
class MoveConductorsTextsCommand : public QUndoCommand {
|
|
// constructors, destructor
|
|
public:
|
|
MoveConductorsTextsCommand(Diagram *, QUndoCommand * = nullptr);
|
|
~MoveConductorsTextsCommand() override;
|
|
private:
|
|
MoveConductorsTextsCommand(const MoveConductorsTextsCommand &);
|
|
|
|
// methods
|
|
public:
|
|
void undo() override;
|
|
void redo() override;
|
|
virtual void addTextMovement(ConductorTextItem *,
|
|
const QPointF &,
|
|
const QPointF &,
|
|
bool = false);
|
|
|
|
private:
|
|
void regenerateTextLabel();
|
|
|
|
// attributes
|
|
private:
|
|
/// diagram the movement takes place on.
|
|
Diagram *diagram;
|
|
/// text items to be moved
|
|
QHash<ConductorTextItem *, QPair<QPointF, bool> > texts_to_move_;
|
|
/// prevent the first call to redo()
|
|
bool first_redo;
|
|
};
|
|
|
|
/**
|
|
@brief The ChangeDiagramTextCommand class
|
|
This command modifies a text item.
|
|
*/
|
|
class ChangeDiagramTextCommand : public QUndoCommand {
|
|
// constructors, destructor
|
|
public:
|
|
ChangeDiagramTextCommand(DiagramTextItem *,
|
|
const QString &before,
|
|
const QString &after,
|
|
QUndoCommand * = nullptr);
|
|
~ChangeDiagramTextCommand() override;
|
|
private:
|
|
ChangeDiagramTextCommand(const ChangeDiagramTextCommand &);
|
|
|
|
// methods
|
|
public:
|
|
void undo() override;
|
|
void redo() override;
|
|
|
|
// attributes
|
|
private:
|
|
/// modified text item
|
|
DiagramTextItem *text_item;
|
|
/// former text
|
|
QString text_before;
|
|
/// new text
|
|
QString text_after;
|
|
/// prevent the first call to redo()
|
|
bool first_redo;
|
|
Diagram *diagram;
|
|
};
|
|
|
|
/**
|
|
@brief The ChangeConductorCommand class
|
|
This command changes a particular conductor.
|
|
*/
|
|
class ChangeConductorCommand : public QUndoCommand {
|
|
// constructors, destructor
|
|
public:
|
|
ChangeConductorCommand(Conductor *, const ConductorProfile &,
|
|
const ConductorProfile &, Qt::Corner,
|
|
QUndoCommand * = nullptr);
|
|
~ChangeConductorCommand() override;
|
|
private:
|
|
ChangeConductorCommand(const ChangeConductorCommand &);
|
|
|
|
// methods
|
|
public:
|
|
void undo() override;
|
|
void redo() override;
|
|
virtual void setConductorTextItemMove(const QPointF &, const QPointF &);
|
|
|
|
// attributes
|
|
private:
|
|
/// changed conductor
|
|
Conductor *conductor;
|
|
/// profile before the change
|
|
ConductorProfile old_profile;
|
|
/// profile after the change
|
|
ConductorProfile new_profile;
|
|
/// Path type of the modified conductor
|
|
Qt::Corner path_type;
|
|
/// position of the text item before the change
|
|
QPointF text_pos_before_mov_;
|
|
/// position of the text item after the change
|
|
QPointF text_pos_after_mov_;
|
|
/// prevent the first call to redo()
|
|
bool first_redo;
|
|
Diagram *diagram;
|
|
};
|
|
|
|
/**
|
|
@brief The ResetConductorCommand class
|
|
This command resets conductor paths.
|
|
*/
|
|
class ResetConductorCommand : public QUndoCommand {
|
|
// constructors, destructor
|
|
public:
|
|
ResetConductorCommand(const QHash<Conductor *,
|
|
ConductorProfilesGroup> &,
|
|
QUndoCommand * = nullptr);
|
|
~ResetConductorCommand() override;
|
|
private:
|
|
ResetConductorCommand(const ResetConductorCommand &);
|
|
|
|
// methods
|
|
public:
|
|
void undo() override;
|
|
void redo() override;
|
|
|
|
// attributes
|
|
private:
|
|
/// impacted conductors along with their former profiles
|
|
QHash<Conductor *, ConductorProfilesGroup> conductors_profiles;
|
|
Diagram *diagram;
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
@brief The ChangeBorderCommand class
|
|
This command changes the border properties of a particular diagram.
|
|
*/
|
|
class ChangeBorderCommand : public QUndoCommand {
|
|
// constructors, destructor
|
|
public:
|
|
ChangeBorderCommand(Diagram *, const BorderProperties &,
|
|
const BorderProperties &, QUndoCommand * = nullptr);
|
|
~ChangeBorderCommand() override;
|
|
private:
|
|
ChangeBorderCommand(const ChangeBorderCommand &);
|
|
|
|
// methods
|
|
public:
|
|
void undo() override;
|
|
void redo() override;
|
|
|
|
// attributes
|
|
private:
|
|
/// modified diagram
|
|
Diagram *diagram;
|
|
public:
|
|
/// properties before the change
|
|
BorderProperties old_properties;
|
|
/// properties after the change
|
|
BorderProperties new_properties;
|
|
};
|
|
|
|
#endif
|