Isis 3 Programmer Reference
RenameProjectWorkOrder.h
Go to the documentation of this file.
1#ifndef RenameProjectWorkOrder_H
2#define RenameProjectWorkOrder_H
23#include "WorkOrder.h"
24
25namespace Isis {
26
42 Q_OBJECT
43 public:
44 RenameProjectWorkOrder(QString newName, Project *project);
48
49 virtual RenameProjectWorkOrder *clone() const;
50
51 virtual bool isExecutable(Context context);
52 virtual bool setupExecution();
53 virtual void execute();
54
55 static bool isNameValid(QString nameToCheck);
56
57 protected:
58 virtual void undoExecution();
59 bool dependsOn(WorkOrder *other) const;
60
61 private:
63 };
64}
65#endif
The main project for ipce.
Definition Project.h:289
Change the project's GUI name.
virtual bool isExecutable(Context context)
This method returns true if the user clicked on the project name on the project tree,...
static bool isNameValid(QString nameToCheck)
Check the validity of the given (proposed) project name.
virtual bool setupExecution()
Setup this WorkOrder for execution.
RenameProjectWorkOrder(QString newName, Project *project)
Creates a work order to rename the project using the given new project name.
virtual RenameProjectWorkOrder * clone() const
This method clones the current RenameProjectWorkOrder and returns it.
virtual void undoExecution()
Changes the project name back to the old name.
bool dependsOn(WorkOrder *other) const
This WorkOrder is only dependent on another RenameProjectWorkOrder.
virtual void execute()
This will rename the project.
Provide Undo/redo abilities, serialization, and history for an operation.
Definition WorkOrder.h:311
Project * project() const
Returns the Project this WorkOrder is attached to.
Context
This enumeration is for recording the context of the current Workorder (whether it is part of a proje...
Definition WorkOrder.h:339
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16