Isis 3 Programmer Reference
|
#include <TemplateList.h>
Public Member Functions | |
TemplateList (QString name, QString type, QString path, QObject *parent=NULL) | |
Create a template from a file name, type, and path. | |
TemplateList (QObject *parent=NULL) | |
Creates a blank template list. | |
TemplateList (const TemplateList &) | |
Copy constructor. | |
~TemplateList () | |
Destructor. | |
QString | name () const |
Get the human-readable name of this TemplateList. | |
QString | type () const |
Get the type of template in this TemplateList. | |
QString | path () const |
Get the path to these Templates in the TemplateList (relative to project root). | |
void | setName (QString newName) |
Set the human-readable name of this TemplateList. | |
void | setType (QString newType) |
Set the type of template for of this TemplateList. | |
void | setPath (QString newPath) |
Set the relative path (from the project root) to this TemplateList's folder. | |
void | deleteFromDisk (Project *project) |
Delete all of the contained Templates from disk. | |
void | save (QXmlStreamWriter &stream, const Project *project, FileName newProjectRoot) const |
Convert this TemplateList into XML format for saving/restoring capabilities. | |
Private Attributes | |
QString | m_path |
QString | m_name |
QString | m_type |
2017-11-01 Christopher Combs - Maintains a list of Templates so that templates can easily be copied from one Project to another, saved to disk, or deleted from disk. Adapted from ControlList.
2018-07-07 Summer Stapleton - Fixed a few errors in how the xmlhandling was occuring and added additional handling of separating map templates from registration templates to reflect chagnes in Project.cpp.
Definition at line 35 of file TemplateList.h.
Isis::TemplateList::TemplateList | ( | QString | name, |
QString | type, | ||
QString | path, | ||
QObject * | parent = NULL ) |
Create a template from a file name, type, and path.
name | The TemplateList's name (i.e. import1, import2, ...) |
type | The TemplateList's folder name (i.e. maps, registrations, ...) |
path | Path to the TemplateList's folder from the template root |
parent | The Qt-relationship parent |
Definition at line 25 of file TemplateList.cpp.
|
explicit |
Creates a blank template list.
parent | The Qt-relationship parent. |
Definition at line 37 of file TemplateList.cpp.
Isis::TemplateList::TemplateList | ( | const TemplateList & | other | ) |
Copy constructor.
other | The TemplateList to copy |
Definition at line 46 of file TemplateList.cpp.
Isis::TemplateList::~TemplateList | ( | ) |
Destructor.
Definition at line 57 of file TemplateList.cpp.
void Isis::TemplateList::deleteFromDisk | ( | Project * | project | ) |
Delete all of the contained Templates from disk.
project | Project to delete templates from |
Definition at line 129 of file TemplateList.cpp.
References Isis::Project::templateRoot().
Referenced by Isis::ImportMapTemplateWorkOrder::undoExecution(), and Isis::ImportRegistrationTemplateWorkOrder::undoExecution().
QString Isis::TemplateList::name | ( | ) | const |
Get the human-readable name of this TemplateList.
Definition at line 67 of file TemplateList.cpp.
Referenced by Isis::ProjectItem::setTemplateList(), and TemplateList().
QString Isis::TemplateList::path | ( | ) | const |
Get the path to these Templates in the TemplateList (relative to project root).
Definition at line 87 of file TemplateList.cpp.
Referenced by Isis::ProjectItem::setTemplateList(), and TemplateList().
void Isis::TemplateList::save | ( | QXmlStreamWriter & | stream, |
const Project * | project, | ||
FileName | newProjectRoot ) const |
Convert this TemplateList into XML format for saving/restoring capabilities.
This writes:
<templateList name="..." type= "..." path="...">
to the given xml stream, and creates an 'templates.xml' inside the folder with the templates. Inside the templates.xml, this writes:
<templates> ... </templates>
stream | XML stream that contains the TemplateList data |
project | Project to save TemplateList from |
newProjectRoot | Filename root to save TemplateList to |
IException::Io | "Unable Failed to create directory" |
IException::Io | "Unable to save template information, could not be opened for writing" |
Definition at line 166 of file TemplateList.cpp.
References Isis::FileName::dir(), Isis::IException::Io, Isis::FileName::name(), Isis::FileName::original(), Isis::FileName::path(), Isis::Project::templateRoot(), and Isis::FileName::toString().
void Isis::TemplateList::setName | ( | QString | newName | ) |
Set the human-readable name of this TemplateList.
newName | The name to give this TemplateList |
Definition at line 97 of file TemplateList.cpp.
void Isis::TemplateList::setPath | ( | QString | newPath | ) |
Set the relative path (from the project root) to this TemplateList's folder.
newPath | The path to the templates in this TemplateList |
Definition at line 117 of file TemplateList.cpp.
void Isis::TemplateList::setType | ( | QString | newType | ) |
Set the type of template for of this TemplateList.
newType | The type to give this TemplateList |
Definition at line 107 of file TemplateList.cpp.
QString Isis::TemplateList::type | ( | ) | const |
Get the type of template in this TemplateList.
Definition at line 77 of file TemplateList.cpp.
Referenced by Isis::Project::addTemplates(), Isis::ControlPointEditWidget::addTemplates(), Isis::ProjectItemModel::onTemplatesAdded(), and TemplateList().
|
private |
Definition at line 57 of file TemplateList.h.
|
private |
Definition at line 56 of file TemplateList.h.
|
private |
Definition at line 58 of file TemplateList.h.