Developer Documentation
|
Class that encapsulates a backup. More...
#include <OpenFlipper/common/BaseBackup.hh>
Public Member Functions | |
BaseBackup (QString _name) | |
BaseBackup (BaseObjectData *_object, QString _name, UpdateType _type) | |
constructor More... | |
virtual void | apply () |
Revert this backup. More... | |
QString | name () |
Get the backups name) More... | |
void | setLinks (IdList _objectIDs) |
Set links to corresponding backups. More... | |
int | id () |
get id of this backup More... | |
bool | blocked () |
Returns if this backup is blocked. More... | |
Protected Attributes | |
std::vector< std::pair< QString, PerObjectData * > > | objectDatas_ |
Backup of the perObjectData objects. | |
BaseObjectData * | object_ |
QString | name_ |
IdList | links_ |
int | id_ |
Class that encapsulates a backup.
Definition at line 62 of file BaseBackup.hh.
BaseBackup::BaseBackup | ( | BaseObjectData * | _object, |
QString | _name, | ||
UpdateType | _type | ||
) |
constructor
_object | Pointer to the object, this backup will belong to |
_name | Name of the object |
_type | Type of change which can be used to create more specific backups (e.g. selection only) |
Definition at line 65 of file BaseBackup.cc.
|
virtual |
Revert this backup.
This function has to be implemented. It will be called when the backup should be restored.
You have to restore your backup to the corresponding object when this function gets called.
Reimplemented in SplatCloudBackup, BSplineCurveBackup, PolyMeshBackup, SkeletonBackup, TriMeshBackup, and GroupBackup.
Definition at line 101 of file BaseBackup.cc.
bool BaseBackup::blocked | ( | ) |
Returns if this backup is blocked.
When Backups are grouped together, they can not be reversed o their own but oly together with the others in that backup group. This flag indicates, that the backup is part of a group and can not be reversed on its own.
Definition at line 156 of file BaseBackup.cc.
int BaseBackup::id | ( | ) |
get id of this backup
Automatically generated id for this backup.
Definition at line 150 of file BaseBackup.cc.
QString BaseBackup::name | ( | void | ) |
Get the backups name)
Definition at line 144 of file BaseBackup.cc.
void BaseBackup::setLinks | ( | IdList | _objectIDs | ) |
Set links to corresponding backups.
Backups can be grouped together. The backups store the links to their group members via this function.
Definition at line 162 of file BaseBackup.cc.