Developer Documentation
|
Class that encapsulates a backup. More...
#include <OpenFlipper/common/BaseBackup.hh>
Public Member Functions | |
BaseBackup (const QString &_name) | |
BaseBackup (BaseObjectData *_object, const 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. More... | |
BaseObjectData * | object_ |
QString | name_ |
IdList | links_ |
int | id_ |
Class that encapsulates a backup.
Definition at line 53 of file BaseBackup.hh.
|
explicit |
Definition at line 51 of file BaseBackup.cc.
BaseBackup::BaseBackup | ( | BaseObjectData * | _object, |
const 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 57 of file BaseBackup.cc.
|
virtual |
Definition at line 83 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 GroupBackup, BSplineCurveBackup, PolyMeshBackup, TriMeshBackup, SkeletonBackup, and SplatCloudBackup.
Definition at line 93 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 146 of file BaseBackup.cc.
int BaseBackup::id | ( | ) |
get id of this backup
Automatically generated id for this backup.
Definition at line 140 of file BaseBackup.cc.
QString BaseBackup::name | ( | ) |
Get the backups name)
Definition at line 134 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 152 of file BaseBackup.cc.
|
protected |
Definition at line 117 of file BaseBackup.hh.
|
protected |
Definition at line 115 of file BaseBackup.hh.
|
protected |
Definition at line 114 of file BaseBackup.hh.
|
protected |
Definition at line 113 of file BaseBackup.hh.
|
protected |
Backup of the perObjectData objects.
Definition at line 111 of file BaseBackup.hh.