Isis 3 Programmer Reference
Isis::ProjectItemModel Class Reference

Provides access to data stored in a Project through Qt's model-view framework. More...

#include <ProjectItemModel.h>

Inheritance diagram for Isis::ProjectItemModel:
Inheritance graph
Collaboration diagram for Isis::ProjectItemModel:
Collaboration graph

Signals

void itemAdded (ProjectItem *)
 This signal is emitted when a ProjectItem is added to the model.
 
void itemRemoved (ProjectItem *)
 This signal is emitted when a ProjectItem is removed to the model.
 
void cleanProject (bool)
 This signal is emitted whrn a ProjectItem's name is changed.
 
void projectNameEdited (QString)
 This signal is emitted when the project name is edited.
 

Public Member Functions

 ProjectItemModel (QObject *parent=0)
 Constructs an empty model.
 
 ~ProjectItemModel ()
 Destructs the model.
 
QItemSelectionModel * selectionModel ()
 Returns the internal selection model.
 
ProjectItemaddProject (Project *project)
 Adds a Project to the model.
 
ProjectItemfindItemData (const QVariant &data, int role=Qt::UserRole+1)
 Returns the first item found that contains the given data in the given role or a null pointer if no item is found.
 
virtual bool canDropMimeData (const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const
 You cannot drop mime data into the ProjectItemModel.
 
virtual void removeItem (ProjectItem *item)
 Removes an item and its children from the model.
 
virtual void removeItems (QList< ProjectItem * > items)
 Removes a list of items and their children from the model.
 
ProjectItemcurrentItem ()
 Returns the current item of the internal selection model.
 
QList< ProjectItem * > selectedItems ()
 Returns a list of the selected items of the internal selection model.
 
QList< ProjectItem * > selectedBOSSImages ()
 ProjectItemModel::selectedBOSSImages.
 
void appendRow (ProjectItem *item)
 Appends a top-level item to the model.
 
void clean ()
 Used to clean the ProjectItemModel of everything but the headers.
 
QModelIndex indexFromItem (const ProjectItem *item)
 Returns the QModelIndex corresponding to a given ProjectItem.
 
void insertRow (int row, ProjectItem *item)
 Inserts a top-level item at the given row.
 
ProjectItemitem (int row)
 Returns the top-level item at the given row.
 
ProjectItemitemFromIndex (const QModelIndex &index)
 Returns the ProjectItem corresponding to a given QModelIndex.
 
void setItem (int row, ProjectItem *item)
 Sets the item at the top-level row.
 
ProjectItemtakeItem (int row)
 Removes the top-level row and returns the removed item.
 
bool setData (const QModelIndex &index, const QVariant &value, int role)
 This virtual method was added to handle changing the project name by double-clicking the project name on the project tree.
 
Qt::ItemFlags flags (const QModelIndex &index) const
 This virtual method was added to handle changing the project name by double-clicking the project name on the project tree.
 

Protected Slots

void onSelectionChanged (const QItemSelection &selected, const QItemSelection &deselected)
 Slot to connect to the selectionChanged() signal from a selection model.
 

Private Slots

void onNameChanged (QString newName)
 Slot to connect to the nameChanged() signal from a Project.
 
void onBundleSolutionInfoAdded (BundleSolutionInfo *bundleSolutionInfo)
 Slot to connect to the bundleSolutionInfoAdded() signal from a project.
 
void onImagesAdded (ImageList *images)
 Slot to connect to the imagesAdded() signal from a Project.
 
void onShapesAdded (ShapeList *shapes)
 Slot to connect to the shapesAdded() signal from a Project.
 
void onControlAdded (Control *control)
 Slot to connect to the controlAdded() signal from a project.
 
void onControlListAdded (ControlList *controlList)
 Slot to connect to the controlListAdded() signal from a Project.
 
void onTargetsAdded (TargetBodyList *targets)
 Slot to connect to the targetsAdded() signal from a Project.
 
void onTemplatesAdded (TemplateList *templateList)
 Slot connected to the templatesAdded() signal from a project.
 
void onGuiCamerasAdded (GuiCameraList *cameras)
 Slot to connect to the guiCamerasAdded() signal from a Project.
 
void onRowsInserted (const QModelIndex &parent, int start, int end)
 Slot to connect to the rowsInserted() signal from QAbstractItemModel.
 
void onRowsRemoved (const QModelIndex &parent, int start, int end)
 Slot to connect to the rowsAboutToBeRemoved() signal from QAbstractItemModel.
 

Private Member Functions

bool rejectName (QStringList &reserved, QString target)
 Checks to see if we are adding a reserved name to the project (ex.
 

Private Attributes

QItemSelectionModel * m_selectionModel
 The internal selection model.
 
QStringList m_reservedNames
 

Detailed Description

Provides access to data stored in a Project through Qt's model-view framework.

Items corresponding to data are organized in a tree structure. Data can be accessed through a ProjectItem or through a QModelIndex. Views associated with the model can access it either through the model directly or through a ProjectItemProxyModel.

Top-level items can be accessed through the item() method using the row where the item is stored. Children of items can be accessed through the child() method on the parent item. The data stored in an item can be accessed as a QVariant using the data() method of the item or through the various convenience methods in ProjectItem. Alternatively, the data in an item can be accessed with its corresponding QModelIndex and the model's data() method. It should be noted that the data() method in the model and the data() method of ProjectItem require a Qt::ItemDataRole interpreted as an int. Data stored in the model that correspond to Isis classes are stored as Qt::UserRole + 1.

Top-level items should be added to the model using the appendRow() or the insertRow() method. To add child items to a parent item the appendRow() or insertRow() methods of the parent item should be used.

The model keeps track of selected items and the current item using an internal QItemSelectionModel.

Views that only need access to a subset of the items or the items organized in a different way should use a ProjectItemProxyModel.

Image *image = new Image("example.cub");
model->appendRow(item);
This represents a cube in a project-based GUI interface.
Definition Image.h:107
Represents an item of a ProjectItemModel in Qt's model-view framework.
Provides access to data stored in a Project through Qt's model-view framework.
ProjectItemModel(QObject *parent=0)
Constructs an empty model.
void appendRow(ProjectItem *item)
Appends a top-level item to the model.
ProjectItem * item(int row)
Returns the top-level item at the given row.
Author
2015-10-21 Jeffrey Covington
History

2015-10-21 Jeffrey Covington - Original version.

2016-01-13 Jeffrey Covington - Added canDropMimeData() method.

2016-06-27 Ian Humphrey - Added documentation to canDropMimeData(), checked coding standards. Fixes #4006.

2016-07-18 Tracie Sucharski - Added Project Item slots for adding shape models.

2016-08-25 Adam Paquette - Updated documentation. Fixes #4299.

2017-04-17 Tracie Sucharski - Made changeds to allow project name to be edited from the ProjectItemTree, by double-clicking on the project name. This functionality required the addition of the setData and flags methods. The projectNameEdited signal is also emitted. Fixes #2295

2017-05-04 J Bonn - Added FileItem to project tree. Fixes #4838.

2017-07-12 Cole Neubauer - Added clean function to clear data from project tree while keeping headers, needed to remove old projects data when opening a new one Fixes #4969

2017-07-13 Makayla Shepherd - Added the ability to change the name of image imports, shape imports, and bundle solution info. Fixes #4855, #4979, #4980.

2017-07-27 Tyler Wilson - Added the ability to validate and restrict what names a user can name things like ImageLists/ShapeLists/ControlLists. (ie. this class maintains a QStringList of reserved words which cannot be used for naming objects). Fixes #5047.

2017-08-08 Marjorie Hahn - Modified removeItem() so that if the item to be removed has any children then they can be removed first. Fixes #5074.

2017-08-11 Cole Neubauer - Added a project setClean(false) call to onNameChanged slot. This will make a name change be treated as a project change Fixes #5113

2017-08-11 Christopher Combs - Added onTemplatesAdded() and connected it to the signal sent by Project. Fixes #5086.

2017-08-14 Summer Stapleton - Updated icons/images to properly licensed or open source images. Fixes #5105.

2017-10-30 Adam Goins - Modified currentItem() to return the first selected item in the project tree if there is no valid currentIndex. This would happen if the user was interacting with a cubeDN or footprint view and then tried right clicking on the project tree. Fixes #5111.

2017-11-13 Makayla Shepherd - Modifying the name of an ImageList, ShapeList or BundeSolutionInfo on the ProjectTree now sets the project to not clean. Fixes #5174.

2017-11-03 Christopher Combs - Added support for new Template and TemplateList classes. Fixes #5117.

2018-03-22 Ken Edmundson - Modified method onBundleSolutionInfoAdded to append the bundleoutput.txt (Summary) file to the BundleSolution Statistics node. Also changed the name of the Images node under Statistics to Image to prevent Import Images to appear on it's context menu.

2018-06-21 Tyler Wilson - Added the function selectedBOSSImages(). This is a refinement of selectedItems and is used by the JigsawSetupDialog Bundle Observation Solve Settings (BOSS) tab when displaying a subset of user-selected images. References #497

2018-06-24 Tyler Wilson - Fixed an edge-case scenario in the selection criteria for selectedBOSSImages(). If a user selected an image list and some (but not all) of the images within that list, the function returned all of the images in the list and not just the selected ones. References #497.

2018-07-10 Kaitlyn Lee - If a user does not select any images in the project tree, all image lists and images will be returned in selectedBOSSImages(). References #497.

Definition at line 132 of file ProjectItemModel.h.

Constructor & Destructor Documentation

◆ ProjectItemModel()

Isis::ProjectItemModel::ProjectItemModel ( QObject * parent = 0)

Constructs an empty model.

Parameters
parent(QObject *) The parent.

Definition at line 42 of file ProjectItemModel.cpp.

References m_selectionModel, onRowsInserted(), onRowsRemoved(), and onSelectionChanged().

◆ ~ProjectItemModel()

Isis::ProjectItemModel::~ProjectItemModel ( )

Destructs the model.

Definition at line 60 of file ProjectItemModel.cpp.

Member Function Documentation

◆ addProject()

ProjectItem * Isis::ProjectItemModel::addProject ( Project * project)

Adds a Project to the model.

An item is created that corresponds to the Project as well as children items that correspond to various parts of the Project.

Parameters
project(Project *) The Project to be added.
Returns
ProjectItem* The new item that corresponds to the Project.

Definition at line 105 of file ProjectItemModel.cpp.

References appendRow(), onBundleSolutionInfoAdded(), onControlAdded(), onControlListAdded(), onGuiCamerasAdded(), onImagesAdded(), onNameChanged(), onShapesAdded(), onTargetsAdded(), and onTemplatesAdded().

◆ appendRow()

void Isis::ProjectItemModel::appendRow ( ProjectItem * item)

Appends a top-level item to the model.

Parameters
item(ProjectItem *) The item to append.

Definition at line 352 of file ProjectItemModel.cpp.

References item().

Referenced by Isis::ProjectItemProxyModel::addChild(), and addProject().

◆ canDropMimeData()

bool Isis::ProjectItemModel::canDropMimeData ( const QMimeData * data,
Qt::DropAction action,
int row,
int column,
const QModelIndex & parent ) const
virtual

You cannot drop mime data into the ProjectItemModel.

See also
ProjectItemProxyModel
Parameters
data(const QMimeData *) The data to drop
action(Qt::DropAction) The drop action
row(int) ???
column(int) ???
parent(const QModelIndex &) The index of the data's parent
Returns
bool False

Reimplemented in Isis::ProjectItemProxyModel.

Definition at line 78 of file ProjectItemModel.cpp.

◆ clean()

void Isis::ProjectItemModel::clean ( )

Used to clean the ProjectItemModel of everything but the headers.

Definition at line 950 of file ProjectItemModel.cpp.

References Isis::ProjectItem::child(), item(), and removeItem().

◆ cleanProject

void Isis::ProjectItemModel::cleanProject ( bool )
signal

This signal is emitted whrn a ProjectItem's name is changed.

Referenced by setData().

◆ currentItem()

ProjectItem * Isis::ProjectItemModel::currentItem ( )

Returns the current item of the internal selection model.

Returns
ProjectItem* The current item.

Definition at line 137 of file ProjectItemModel.cpp.

References item(), itemFromIndex(), selectedItems(), and selectionModel().

◆ findItemData()

ProjectItem * Isis::ProjectItemModel::findItemData ( const QVariant & data,
int role = Qt::UserRole+1 )

Returns the first item found that contains the given data in the given role or a null pointer if no item is found.

Parameters
data(const QVariant &) The data contained in the item.
role(int) The role of the data (see Qt::ItemDataRole).
Returns
ProjectItem* First project item found.

Definition at line 288 of file ProjectItemModel.cpp.

References Isis::ProjectItem::findItemData(), and item().

Referenced by Isis::ControlHealthMonitorView::openImageEditor(), selectedBOSSImages(), Isis::Project::setActiveControl(), Isis::Project::setActiveImageList(), Isis::ImportImagesWorkOrder::undoExecution(), Isis::ImportMapTemplateWorkOrder::undoExecution(), Isis::ImportRegistrationTemplateWorkOrder::undoExecution(), and Isis::ImportShapesWorkOrder::undoExecution().

◆ flags()

Qt::ItemFlags Isis::ProjectItemModel::flags ( const QModelIndex & index) const

This virtual method was added to handle changing the project name by double-clicking the project name on the project tree.

It was required by Qt in order to allow editing capabilities.

See also
http://doc.qt.io/qt-5/modelview.html
Parameters
index(const QModelIndex &) Field which has been edited
Returns
Qt::ItemFlags Add the ItemIsEditable to the standard flags.

Definition at line 912 of file ProjectItemModel.cpp.

◆ indexFromItem()

QModelIndex Isis::ProjectItemModel::indexFromItem ( const ProjectItem * item)

Returns the QModelIndex corresponding to a given ProjectItem.

Parameters
item(const ProjectItem *) The item.
Returns
QModelIndex The index of the item.

Definition at line 364 of file ProjectItemModel.cpp.

References item().

◆ insertRow()

void Isis::ProjectItemModel::insertRow ( int row,
ProjectItem * item )

Inserts a top-level item at the given row.

Parameters
row(int) The row where the item will be inserted.
item(ProjectItem *) The item to insert.

Definition at line 375 of file ProjectItemModel.cpp.

References item().

◆ item()

◆ itemAdded

void Isis::ProjectItemModel::itemAdded ( ProjectItem * )
signal

This signal is emitted when a ProjectItem is added to the model.

Referenced by onRowsInserted().

◆ itemFromIndex()

ProjectItem * Isis::ProjectItemModel::itemFromIndex ( const QModelIndex & index)

◆ itemRemoved

void Isis::ProjectItemModel::itemRemoved ( ProjectItem * )
signal

This signal is emitted when a ProjectItem is removed to the model.

Referenced by onRowsRemoved().

◆ onBundleSolutionInfoAdded

void Isis::ProjectItemModel::onBundleSolutionInfoAdded ( BundleSolutionInfo * bundleSolutionInfo)
privateslot

Slot to connect to the bundleSolutionInfoAdded() signal from a project.

Adds a ProjectItem that corresponds to the BundleSolutionInfo to the model. The item is added to the item named "Results" of the item that corresponds to the Project that sent the signal.

Parameters
bundleSolutionInfo(BundleSolutionInfo *) The BundleSolutionInfo added to the Project.

Definition at line 466 of file ProjectItemModel.cpp.

References Isis::ProjectItem::child(), item(), Isis::BundleSolutionInfo::name(), Isis::BundleSolutionInfo::savedBundleOutputFilename(), Isis::BundleSolutionInfo::savedImagesFilename(), Isis::BundleSolutionInfo::savedPointsFilename(), and Isis::BundleSolutionInfo::savedResidualsFilename().

Referenced by addProject().

◆ onControlAdded

void Isis::ProjectItemModel::onControlAdded ( Control * control)
privateslot

Slot to connect to the controlAdded() signal from a project.

Adds a ProjectItem that corresponds to the Control to the model. The item is added to the item that corresponds to the control's ControlList.

Parameters
control(Control *) The Control added to the Project.

Definition at line 561 of file ProjectItemModel.cpp.

References Isis::ProjectItem::child(), Isis::Control::id(), and item().

Referenced by addProject().

◆ onControlListAdded

void Isis::ProjectItemModel::onControlListAdded ( ControlList * controlList)
privateslot

Slot to connect to the controlListAdded() signal from a Project.

Adds a ProjectItem that corresponds to the ControlList to the model. The item is added to the item named "Control Networks" of the item that corresponds to the Project that sent the signal.

Parameters
controlList(ControlList *) The ControlList added to the Project.

Definition at line 600 of file ProjectItemModel.cpp.

References Isis::ProjectItem::appendRow(), Isis::ProjectItem::child(), item(), and Isis::ControlList::name().

Referenced by addProject().

◆ onGuiCamerasAdded

void Isis::ProjectItemModel::onGuiCamerasAdded ( GuiCameraList * cameras)
privateslot

Slot to connect to the guiCamerasAdded() signal from a Project.

Adds items that correspond to the cameras to the model. The items are added to the item named "Sensors" of the item that corresponds to the Project that sent the signal.

Parameters
cameras(GuiCameraList *) The GuiCameraList of the Project.

Definition at line 730 of file ProjectItemModel.cpp.

References Isis::ProjectItem::child(), and item().

Referenced by addProject().

◆ onImagesAdded

void Isis::ProjectItemModel::onImagesAdded ( ImageList * imageList)
privateslot

Slot to connect to the imagesAdded() signal from a Project.

Adds a ProjectItem that corresponds to the ImageList to the model. The item is added to the item named "Images" of the item that corresponds to the Project that sent the signal.

Parameters
imageList(ImageList *) The ImageList added to the Project.

Definition at line 630 of file ProjectItemModel.cpp.

References Isis::ProjectItem::appendRow(), Isis::ProjectItem::child(), item(), and Isis::ImageList::name().

Referenced by addProject().

◆ onNameChanged

void Isis::ProjectItemModel::onNameChanged ( QString newName)
privateslot

Slot to connect to the nameChanged() signal from a Project.

Sets the name of the ProjectItem that corresponds with the Project.

Parameters
newName(QString) The new name of the project

Definition at line 439 of file ProjectItemModel.cpp.

References item(), and Isis::Project::setClean().

Referenced by addProject().

◆ onRowsInserted

void Isis::ProjectItemModel::onRowsInserted ( const QModelIndex & parent,
int start,
int end )
privateslot

Slot to connect to the rowsInserted() signal from QAbstractItemModel.

Emits a corresponding itemAdded() signal for each row inserted.

Parameters
parent(const QModelIndex &) The parent index where rows were inserted.
start(int) The first row inserted (inclusive).
end(int) The last row inserted (inclusive).

Definition at line 810 of file ProjectItemModel.cpp.

References item(), itemAdded(), and itemFromIndex().

Referenced by ProjectItemModel().

◆ onRowsRemoved

void Isis::ProjectItemModel::onRowsRemoved ( const QModelIndex & parent,
int start,
int end )
privateslot

Slot to connect to the rowsAboutToBeRemoved() signal from QAbstractItemModel.

Emits a corresponding itemRemoved() signal for each row inserted.

Parameters
parent(const QModelIndex &) The parent index where rows are to be removed.
start(int) The first row to be removed (inclusive).
end(int) The last row to be removed (inclusive).

Definition at line 828 of file ProjectItemModel.cpp.

References item(), itemFromIndex(), and itemRemoved().

Referenced by ProjectItemModel().

◆ onSelectionChanged

void Isis::ProjectItemModel::onSelectionChanged ( const QItemSelection & selected,
const QItemSelection & deselected )
protectedslot

Slot to connect to the selectionChanged() signal from a selection model.

Updates other factors in the model that rely on selected items but do not directly correspond with the selection model. Currently changes the selected property of Images that correspond with selected or deselected items.

Parameters
selected(const QItemSelection &) The selected items.
deselected(const QItemSelection &) The deselected items.

Definition at line 773 of file ProjectItemModel.cpp.

References Isis::Image::displayProperties(), Isis::ProjectItem::image(), Isis::ProjectItem::isImage(), item(), itemFromIndex(), selectedItems(), and Isis::ImageDisplayProperties::setSelected().

Referenced by ProjectItemModel().

◆ onShapesAdded

void Isis::ProjectItemModel::onShapesAdded ( ShapeList * shapes)
privateslot

Slot to connect to the shapesAdded() signal from a Project.

Adds a ProjectItem that corresponds to the ShapeList to the model. The item is added to the item named "Shape Models" of the item that corresponds to the Project that sent the signal.

Parameters
shapes(ShapeList *) The ShapeList added to the Project.

Definition at line 660 of file ProjectItemModel.cpp.

References Isis::ProjectItem::appendRow(), Isis::ProjectItem::child(), item(), and Isis::ShapeList::name().

Referenced by addProject().

◆ onTargetsAdded

void Isis::ProjectItemModel::onTargetsAdded ( TargetBodyList * targets)
privateslot

Slot to connect to the targetsAdded() signal from a Project.

Adds items that correspond to the target bodies to the model. The items are added to the item named "Target Body" of the item that corresponds to the Project that sent the signal.

Parameters
targets(TargetBodyList *) The TargetBodyList of the Project.

Definition at line 689 of file ProjectItemModel.cpp.

References Isis::ProjectItem::child(), and item().

Referenced by addProject().

◆ onTemplatesAdded

void Isis::ProjectItemModel::onTemplatesAdded ( TemplateList * templateList)
privateslot

Slot connected to the templatesAdded() signal from a project.

Adds a ProjectItem for each newly added template FileName to the model. The Item is added to the corresponding ProjectItem under "Templates" (currently only "Maps" and "Registrations" ) and the name of the TemplateList (import1, import2, etc...).

Parameters
templateListTemplateList of Templates being added to the project.

Definition at line 523 of file ProjectItemModel.cpp.

References Isis::ProjectItem::appendRow(), Isis::ProjectItem::child(), item(), and Isis::TemplateList::type().

Referenced by addProject().

◆ projectNameEdited

void Isis::ProjectItemModel::projectNameEdited ( QString )
signal

This signal is emitted when the project name is edited.

Referenced by setData().

◆ rejectName()

bool Isis::ProjectItemModel::rejectName ( QStringList & reserved,
QString target )
private

Checks to see if we are adding a reserved name to the project (ex.

If we are adding an ImageList, and giving it the same name as another ImageList, or ShapesList, or something else).

Parameters
reservedThe list of reserved names we cannot use.
targetThe name we are querying to see if it is in the reserved list.
Returns
True if target is in the reserved list, False other.

Definition at line 927 of file ProjectItemModel.cpp.

Referenced by setData().

◆ removeItem()

void Isis::ProjectItemModel::removeItem ( ProjectItem * item)
virtual

Removes an item and its children from the model.

Parameters
item(ProjectItem *) The item to be removed.
History
2017-08-08 Marjorie Hahn - Added a check so that if the item to be removed has any children then they can be removed first. Fixes #5074.

Reimplemented in Isis::ProjectItemProxyModel.

Definition at line 313 of file ProjectItemModel.cpp.

References Isis::ProjectItem::child(), item(), and Isis::ProjectItem::parent().

Referenced by clean(), Isis::RemoveImagesWorkOrder::execute(), Isis::ProjectItemProxyModel::removeItem(), removeItems(), Isis::ImportImagesWorkOrder::undoExecution(), Isis::ImportMapTemplateWorkOrder::undoExecution(), Isis::ImportRegistrationTemplateWorkOrder::undoExecution(), and Isis::ImportShapesWorkOrder::undoExecution().

◆ removeItems()

void Isis::ProjectItemModel::removeItems ( QList< ProjectItem * > items)
virtual

Removes a list of items and their children from the model.

Parameters
items(ProjectItem *) The items to be removed.

Definition at line 340 of file ProjectItemModel.cpp.

References item(), and removeItem().

Referenced by Isis::RemoveImagesWorkOrder::execute().

◆ selectedBOSSImages()

QList< ProjectItem * > Isis::ProjectItemModel::selectedBOSSImages ( )

ProjectItemModel::selectedBOSSImages.

Returns
This is a refinement of the selectedItems function which was needed to display a subset of Images/ImageLists in the Bundle Observation Solve Settings (BOSS) tab of the JigsawSetupDialog widget. The primary consumer of the selected images is going to be the SortFilterProxyModel class.

Definition at line 175 of file ProjectItemModel.cpp.

References Isis::ProjectItem::child(), findItemData(), Isis::ProjectItem::isImage(), Isis::ProjectItem::isImageList(), item(), itemFromIndex(), Isis::ProjectItem::parent(), and selectionModel().

◆ selectedItems()

QList< ProjectItem * > Isis::ProjectItemModel::selectedItems ( )

Returns a list of the selected items of the internal selection model.

Returns
QList<ProjectItem*> The list of selected items.

Definition at line 156 of file ProjectItemModel.cpp.

References itemFromIndex(), and selectionModel().

Referenced by currentItem(), Isis::ProjectItemProxyModel::dropMimeData(), Isis::CubeDnViewWorkOrder::execute(), Isis::Footprint2DViewWorkOrder::execute(), Isis::RemoveImagesWorkOrder::execute(), onSelectionChanged(), and Isis::RemoveImagesWorkOrder::setupExecution().

◆ selectionModel()

QItemSelectionModel * Isis::ProjectItemModel::selectionModel ( )

◆ setData()

bool Isis::ProjectItemModel::setData ( const QModelIndex & index,
const QVariant & value,
int role )

This virtual method was added to handle changing the project name by double-clicking the project name on the project tree.

It was required by Qt in order to allow editing capabilities.

See also
http://doc.qt.io/qt-5/modelview.html
Parameters
index(const QModelIndex &) Field which has been edited
value(const QVariant &) Value contained in the field
role(int) Will always be EditRole since field only contains text
Returns
bool Returns true if successful; otherwise false

Definition at line 852 of file ProjectItemModel.cpp.

References Isis::ProjectItem::bundleSolutionInfo(), cleanProject(), Isis::ProjectItem::controlList(), Isis::ProjectItem::imageList(), Isis::ProjectItem::isBundleSolutionInfo(), Isis::ProjectItem::isControlList(), Isis::ProjectItem::isImageList(), Isis::ProjectItem::isProject(), Isis::ProjectItem::isShapeList(), item(), itemFromIndex(), projectNameEdited(), rejectName(), Isis::BundleSolutionInfo::setName(), Isis::ControlList::setName(), Isis::ImageList::setName(), Isis::ShapeList::setName(), and Isis::ProjectItem::shapeList().

◆ setItem()

void Isis::ProjectItemModel::setItem ( int row,
ProjectItem * item )

Sets the item at the top-level row.

Parameters
row(int) The row where the item will be set.
item(ProjectItem *) The item to set the row to.

Definition at line 410 of file ProjectItemModel.cpp.

References item().

◆ takeItem()

ProjectItem * Isis::ProjectItemModel::takeItem ( int row)

Removes the top-level row and returns the removed item.

Parameters
row(int) The row of the item to remove.
Returns
ProjectItem* The removed item.

Definition at line 422 of file ProjectItemModel.cpp.

Member Data Documentation

◆ m_reservedNames

QStringList Isis::ProjectItemModel::m_reservedNames
private

Definition at line 213 of file ProjectItemModel.h.

◆ m_selectionModel

QItemSelectionModel* Isis::ProjectItemModel::m_selectionModel
private

The internal selection model.

Definition at line 212 of file ProjectItemModel.h.

Referenced by ProjectItemModel(), and selectionModel().


The documentation for this class was generated from the following files: