Image properties widget: enable the use of live edit mode

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4005 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
blacksun
2015-06-11 18:03:58 +00:00
parent 59bd290382
commit 71e1e2a8c4
8 changed files with 194 additions and 67 deletions

View File

@@ -510,25 +510,6 @@ class ChangeSeveralConductorsPropertiesCommand : public QUndoCommand {
bool new_settings_set;
};
class ItemResizerCommand : public QUndoCommand {
//constructor and destructor
public:
ItemResizerCommand (QetGraphicsItem *qgi, qreal &old_, qreal &new_,const QString &text, QUndoCommand *parent = 0);
virtual ~ItemResizerCommand();
//methods
public:
virtual void undo();
virtual void redo();
//attributes
private:
QetGraphicsItem *m_qgi;
qreal old_size, new_size;
Diagram *diagram;
QString m_text;
};
class ChangeShapeStyleCommand : public QUndoCommand {
//constructor and destructor