mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-17 12:40:35 +01:00
Dynamic element text editor :
When add a new text, the item text in the tree view is selected and expanded. When edit the pos of a text in the tree view, the new position is set directly, no need to lose focus or press enter key anymore for update the pos of the text. git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5089 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
@@ -52,6 +52,16 @@ QPropertyUndoCommand::QPropertyUndoCommand(QObject *object, const char *property
|
||||
m_animate(false)
|
||||
{}
|
||||
|
||||
QPropertyUndoCommand::QPropertyUndoCommand(const QPropertyUndoCommand *other)
|
||||
{
|
||||
m_object = other->m_object;
|
||||
m_property_name = other->m_property_name;
|
||||
m_old_value = other->m_old_value;
|
||||
m_new_value = other->m_new_value;
|
||||
m_animate = other->m_animate;
|
||||
setText(other->text());
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief QPropertyUndoCommand::setNewValue
|
||||
* Set the new value of the property (set with redo) to @new_value
|
||||
|
||||
Reference in New Issue
Block a user