Isis Developer 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 (Project *project, XmlStackedHandlerReader *xmlReader, QObject *parent=NULL) | |
Create an TemplateList from XML. | |
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. | |
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 |
|
explicit |
Creates a blank template list.
parent | The Qt-relationship parent. |
|
explicit |
Create an TemplateList from XML.
project | The project with the TemplateList |
xmlReader | The XML reader currently at an <templateList > tag. |
parent | The Qt-relationship parent |
Isis::TemplateList::TemplateList | ( | const TemplateList & | other | ) |
Copy constructor.
other | The TemplateList to copy |
Isis::TemplateList::~TemplateList | ( | ) |
Destructor.
void Isis::TemplateList::deleteFromDisk | ( | Project * | project | ) |
Delete all of the contained Templates from disk.
project | Project to delete templates from |
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.
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).
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" |
References _FILEINFO_, 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 |
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 |
void Isis::TemplateList::setType | ( | QString | newType | ) |
Set the type of template for of this TemplateList.
newType | The type to give this TemplateList |
QString Isis::TemplateList::type | ( | ) | const |
Get the type of template in this TemplateList.
Referenced by Isis::Project::addTemplates(), Isis::ControlPointEditWidget::addTemplates(), and TemplateList().