Isis 3.0
Home
Isis::CubeDnView Class Reference

View that displays cubes in a QView-like way. More...

#include <CubeDnView.h>

Inherits Isis::AbstractProjectItemView.

Public Slots

void addItem (ProjectItem *item)
 Adds an item to the view. More...
 
virtual void addItems (QList< ProjectItem * > items)
 Adds several items to the view. More...
 
virtual void removeItem (ProjectItem *item)
 Removes an item to the view. More...
 
virtual void removeItems (QList< ProjectItem * > items)
 Removes several items from the view. More...
 

Signals

void modifyControlPoint (ControlPoint *controlPoint)
 
void deleteControlPoint (ControlPoint *controlPoint)
 
void createControlPoint (double latitude, double longitude, Cube *cube, bool isGroundSource=false)
 
void controlPointAdded (QString newPointId)
 

Public Member Functions

 CubeDnView (Directory *directory, QWidget *parent=0)
 Constructs the view, initializing the tools. More...
 
 ~CubeDnView ()
 Destructor. More...
 
virtual QList< QAction * > fileMenuActions ()
 Returns a list of actions appropriate for a file menu. More...
 
virtual QList< QAction * > projectMenuActions ()
 Returns a list of actions appropriate for a project menu. More...
 
virtual QList< QAction * > editMenuActions ()
 Returns a list of actions appropriate for an edit menu. More...
 
virtual QList< QAction * > viewMenuActions ()
 Returns a list of actions appropriate for a view menu. More...
 
virtual QList< QAction * > settingsMenuActions ()
 Returns a list of actions appropriate for a settings menu. More...
 
virtual QList< QAction * > helpMenuActions ()
 Returns a list of actions appropriate for a help menu. More...
 
virtual QList< QAction * > permToolBarActions ()
 Returns a list of actions for the permanent tool bar. More...
 
virtual QList< QAction * > activeToolBarActions ()
 Returns a list of actions for the active tool bar. More...
 
virtual QList< QAction * > toolPadActions ()
 Returns a list of actions for the tool pad. More...
 
QSize sizeHint () const
 Returns the suggested size. More...
 
bool viewportContainsShape (MdiCubeViewport *viewport)
 
void load (XmlStackedHandlerReader *xmlReader, Project *project)
 
void save (QXmlStreamWriter &stream, Project *project, FileName newProjectRoot) const
 
virtual void setModel (ProjectItemModel *model)
 Sets the model used by the view. More...
 
virtual ProjectItemModelmodel ()
 Returns the model used by the view. More...
 
virtual void dragEnterEvent (QDragEnterEvent *event)
 Accepts the drag enter event if the internal model can accept the mime data. More...
 
virtual void dragMoveEvent (QDragMoveEvent *event)
 Accepts the drag event if the internal model can accept the mime data. More...
 
virtual void dropEvent (QDropEvent *event)
 Drops the data into the internal model if it can accept the data. More...
 
virtual QList< QAction * > contextMenuActions ()
 Returns a list of actions appropriate for a context menu. More...
 
virtual ProjectItemcurrentItem ()
 Returns the current item of the model. More...
 
virtual QList< ProjectItem * > selectedItems ()
 Return the selected items of the model. More...
 
virtual ProjectItemModelinternalModel ()
 Returns the internal model of the view. More...
 
virtual void setInternalModel (ProjectItemModel *model)
 Sets the internal model of the view. More...
 

Detailed Description

View that displays cubes in a QView-like way.

Author
2016-01-13 Jeffrey Covington

Constructor & Destructor Documentation

Isis::CubeDnView::~CubeDnView ( )

Destructor.

Member Function Documentation

QList< QAction * > Isis::CubeDnView::activeToolBarActions ( )
virtual

Returns a list of actions for the active tool bar.

Returns
QList<QAction*> The actions

Reimplemented from Isis::AbstractProjectItemView.

void Isis::CubeDnView::addItem ( ProjectItem item)
slot

Adds an item to the view.

Filters out items that are not Images or Shapes or ImageLists.

Parameters
[in]item(ProjectItem *) The item to add.

References Isis::AbstractProjectItemView::addItem(), Isis::ProjectItem::isImage(), Isis::ProjectItem::isImageList(), Isis::ProjectItem::isShape(), and Isis::ProjectItem::isShapeList().

void Isis::AbstractProjectItemView::addItems ( QList< ProjectItem * >  items)
virtualslotinherited

Adds several items to the view.

The items must be a part of the view's model.

Parameters
[in]items(QList<ProjectItem *>) The items to add.

References Isis::AbstractProjectItemView::addItem().

Referenced by Isis::CubeDnViewWorkOrder::syncRedo(), and Isis::Footprint2DViewWorkOrder::syncRedo().

QList< QAction * > Isis::AbstractProjectItemView::contextMenuActions ( )
virtualinherited

Returns a list of actions appropriate for a context menu.

Returns
QList<QAction *> The actions
void Isis::CubeDnView::controlPointAdded ( QString  newPointId)
signal

Referenced by CubeDnView().

void Isis::CubeDnView::createControlPoint ( double  latitude,
double  longitude,
Cube cube,
bool  isGroundSource = false 
)
signal

Referenced by CubeDnView().

ProjectItem * Isis::AbstractProjectItemView::currentItem ( )
virtualinherited

Returns the current item of the model.

Returns
ProjectItem * The item

References Isis::ProjectItemModel::currentItem(), and Isis::AbstractProjectItemView::model().

void Isis::CubeDnView::deleteControlPoint ( ControlPoint controlPoint)
signal

Referenced by CubeDnView().

void Isis::AbstractProjectItemView::dragEnterEvent ( QDragEnterEvent *  event)
virtualinherited

Accepts the drag enter event if the internal model can accept the mime data.

Parameters
[in]event(QDragEnterEvent *) The drag event

References Isis::AbstractProjectItemView::internalModel().

Referenced by Isis::Footprint2DView::eventFilter().

void Isis::AbstractProjectItemView::dragMoveEvent ( QDragMoveEvent *  event)
virtualinherited

Accepts the drag event if the internal model can accept the mime data.

Parameters
[in]event(QDragMoveEvent *) The drag event

References Isis::AbstractProjectItemView::internalModel().

Referenced by Isis::Footprint2DView::eventFilter().

void Isis::AbstractProjectItemView::dropEvent ( QDropEvent *  event)
virtualinherited

Drops the data into the internal model if it can accept the data.

Parameters
[in]event(QDropEvent *) The drop event

References Isis::AbstractProjectItemView::internalModel().

Referenced by Isis::Footprint2DView::eventFilter().

QList< QAction * > Isis::CubeDnView::editMenuActions ( )
virtual

Returns a list of actions appropriate for an edit menu.

Returns
QList<QAction*> The actions

Reimplemented from Isis::AbstractProjectItemView.

QList< QAction * > Isis::CubeDnView::fileMenuActions ( )
virtual

Returns a list of actions appropriate for a file menu.

Returns
QList<QAction*> The actions

Reimplemented from Isis::AbstractProjectItemView.

QList< QAction * > Isis::CubeDnView::helpMenuActions ( )
virtual

Returns a list of actions appropriate for a help menu.

Returns
QList<QAction*> The actions

Reimplemented from Isis::AbstractProjectItemView.

void Isis::CubeDnView::load ( XmlStackedHandlerReader xmlReader,
Project project 
)
ProjectItemModel * Isis::AbstractProjectItemView::model ( )
virtualinherited

Returns the model used by the view.

If the internal model is a proxy model, it returns the source model.

Returns
ProjectItemModel * The model.

References Isis::AbstractProjectItemView::internalModel().

Referenced by Isis::AbstractProjectItemView::currentItem(), Isis::AbstractProjectItemView::selectedItems(), and Isis::AbstractProjectItemView::setInternalModel().

void Isis::CubeDnView::modifyControlPoint ( ControlPoint controlPoint)
signal

Referenced by CubeDnView().

QList< QAction * > Isis::CubeDnView::permToolBarActions ( )
virtual

Returns a list of actions for the permanent tool bar.

Returns
QList<QAction*> The actions

Reimplemented from Isis::AbstractProjectItemView.

QList< QAction * > Isis::CubeDnView::projectMenuActions ( )
virtual

Returns a list of actions appropriate for a project menu.

Returns
QList<QAction*> The actions

Reimplemented from Isis::AbstractProjectItemView.

void Isis::AbstractProjectItemView::removeItem ( ProjectItem item)
virtualslotinherited

Removes an item to the view.

The item must be part of the view's model. This method can be overriden in a subclass to filter out unneeded items.

Parameters
[in]item(ProjectItem *) The item to remove.

References Isis::AbstractProjectItemView::internalModel().

Referenced by Isis::AbstractProjectItemView::removeItems().

void Isis::AbstractProjectItemView::removeItems ( QList< ProjectItem * >  items)
virtualslotinherited

Removes several items from the view.

The items must be a part of the view's model.

Parameters
[in]items(QList<ProjectItem *>) The items to remove.

References Isis::AbstractProjectItemView::removeItem().

QList< ProjectItem * > Isis::AbstractProjectItemView::selectedItems ( )
virtualinherited

Return the selected items of the model.

Returns
QList<ProjectItem *> The items

References Isis::AbstractProjectItemView::model(), and Isis::ProjectItemModel::selectedItems().

void Isis::AbstractProjectItemView::setInternalModel ( ProjectItemModel model)
virtualinherited

Sets the internal model of the view.

Parameters
[in]model(ProjectItemModel *) The new internal model

Reimplemented in Isis::ProjectItemTreeView.

References Isis::AbstractProjectItemView::model().

Referenced by Isis::ProjectItemTreeView::setInternalModel().

void Isis::AbstractProjectItemView::setModel ( ProjectItemModel model)
virtualinherited

Sets the model used by the view.

If the internal model is a proxy model, it sets the source model.

Parameters
[in]model(ProjectItemModel *) The new model

References Isis::AbstractProjectItemView::internalModel().

Referenced by Isis::Directory::addCubeDnView(), Isis::Directory::addFootprint2DView(), and Isis::Directory::addProjectItemTreeView().

QList< QAction * > Isis::CubeDnView::settingsMenuActions ( )
virtual

Returns a list of actions appropriate for a settings menu.

Returns
QList<QAction*> The actions

Reimplemented from Isis::AbstractProjectItemView.

QSize Isis::CubeDnView::sizeHint ( ) const

Returns the suggested size.

Returns
QSize The size hint
QList< QAction * > Isis::CubeDnView::toolPadActions ( )
virtual

Returns a list of actions for the tool pad.

Returns
QList<QAction*> The actions

Reimplemented from Isis::AbstractProjectItemView.

QList< QAction * > Isis::CubeDnView::viewMenuActions ( )
virtual

Returns a list of actions appropriate for a view menu.

Returns
QList<QAction*> The actions

Reimplemented from Isis::AbstractProjectItemView.

bool Isis::CubeDnView::viewportContainsShape ( MdiCubeViewport viewport)

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