USGS

Isis 3.0 Object Programmers' Reference

Home

Isis::TrackTool Class Reference

This tool is part of the Qisis namespace and displays the statusbar of the window. More...

#include <TrackTool.h>

Inheritance diagram for Isis::TrackTool:
Inheritance graph
Collaboration diagram for Isis::TrackTool:
Collaboration graph

Public Slots

virtual void mouseMove (QPoint p)
 Updates the labels anytime the mouse moves.
 
virtual void mouseLeave ()
 Clears the labels if the mouse leaves the application.
 
void activate (bool)
 Activates the tool.
 
virtual void updateTool ()
 Updates the tool.
 
void setCubeViewport (MdiCubeViewport *cvp)
 Sets the current viewport to the given cvp.
 

Signals

void clearWarningSignal ()
 
void toolActivated ()
 
void viewportChanged ()
 

Public Member Functions

 TrackTool (QStatusBar *parent)
 TrackTool constructor.
 
void displayWarning (std::string &pStr, const std::string &pExStr)
 Display the Warning icon in case of an exception, sent from the tool where the exception occured.
 
void resetStatusWarning (void)
 Resets the warning status on the status bar to default.
 
QStatusBar * getStatusBar (void)
 
void addTo (ViewportMainWindow *mw)
 Adds the tool to the application.
 
void addTo (ToolPad *toolpad)
 Adds the tool to the toolpad.
 
virtual void addTo (QMenu *menu)
 
virtual void addTo (Workspace *ws)
 Adds the given workspace to the cubeviewport list.
 
virtual QString menuName () const
 Anytime a tool is created, you must give it a name for the menu.
 
virtual void addToPermanent (QToolBar *toolbar)
 
void addToActive (QToolBar *toolbar)
 
QString toolIconDir () const
 returns the path to the icon directory.
 
virtual void paintViewport (MdiCubeViewport *vp, QPainter *painter)
 
RubberBandToolrubberBandTool ()
 
void setList (ToolList *currentList)
 

Protected Types

typedef QVector
< MdiCubeViewport * > 
CubeViewportList
 A list of cubeviewports.
 

Protected Slots

virtual void rubberBandComplete ()
 
virtual void screenPixelsChanged ()
 This is called when actions change which pixels from the cube are displayed.
 
virtual void mouseEnter ()
 
virtual void mouseMove (QPoint p, Qt::MouseButton)
 
virtual void mouseDoubleClick (QPoint p)
 
virtual void mouseButtonPress (QPoint p, Qt::MouseButton s)
 
virtual void mouseButtonRelease (QPoint p, Qt::MouseButton s)
 Resets the Warning to Nowarning when a different activity occurs on the application.
 
virtual void updateMeasure ()
 
virtual void scaleChanged ()
 
virtual void stretchRequested (MdiCubeViewport *, int)
 
void registerTool (MdiCubeViewport *viewport)
 Registers the tool to the viewport.
 

Protected Member Functions

void addConnections (MdiCubeViewport *cvp)
 Adds the connections to the given viewport.
 
void removeConnections (MdiCubeViewport *cvp)
 Removes the connections from the given viewport.
 
MdiCubeViewportcubeViewport () const
 Return the current cubeviewport.
 
CubeViewportListcubeViewportList () const
 Return the list of cubeviewports.
 
virtual QActiontoolPadAction (ToolPad *toolpad)
 Anytime a tool is created, you must setup a tool pad action with it.
 
virtual QWidgetcreateToolBarWidget (QStackedWidget *parent)
 Anytime a tool is created, you must add it to the tool bar.
 
virtual void enableRubberBandTool ()
 Anytime a tool is created, you may use the rubber band tool.
 
Workspaceworkspace ()
 

Private Slots

void locateCursor ()
 Finds the cursor position.
 

Private Member Functions

void updateLabels (QPoint p)
 Updates the tracking labels.
 
void clearLabels ()
 Clears the labels.
 

Private Attributes

QStatusBar * p_sbar
 Status bar.
 
QLabel * p_sampLabel
 Sample label.
 
QLabel * p_lineLabel
 Line label.
 
QLabel * p_latLabel
 Lat label.
 
QLabel * p_lonLabel
 Lon label.
 
QLabel * p_grayLabel
 Gray label.
 
QLabel * p_redLabel
 Red label.
 
QLabel * p_grnLabel
 Green label.
 
QLabel * p_bluLabel
 Blue label.
 
WarningWidgetmWarningWidget
 Warning Widget.
 

Detailed Description

This tool is part of the Qisis namespace and displays the statusbar of the window.

 The status bar tracks the line, sample, lat ,lon and pixel values. Also displays Warning
   status for any application activity.
Author
????-??-?? Unknown
History:

2010-03-18 Sharmila Prasad - Added the Warning widget to the status bar to display the error status both icon and message for any application activity

2010-06-26 Eric Hyer - Now uses MdiCubeViewport instead of CubeViewport. Fixed include issues.

2011-04-25 Steven Lambright - Fixed updates at the bottom right

2012-06-18 Steven Lambright - Fixed access of viewport DN data to not access out of range data. Fixes #896.

2013-02-20 Debbie A. Cook - Changed to use TProjection instead of Projection. References #775.

2013-04-24 Jeannie Backer - Capitalized text output, "n/a", to be consistent with the AdvancedTrackTool text output. References #775.

2013-05-07 Jeannie Backer - Replaced Lat with Rad for non-projected "Plane" shaped models. References #775.

Definition at line 42 of file TrackTool.h.

Member Typedef Documentation

typedef QVector< MdiCubeViewport * > Isis::Tool::CubeViewportList
protectedinherited

A list of cubeviewports.

Definition at line 219 of file Tool.h.

Constructor & Destructor Documentation

Isis::TrackTool::TrackTool ( QStatusBar *  parent)

Member Function Documentation

void Isis::TrackTool::addConnections ( MdiCubeViewport cvp)
protectedvirtual

Adds the connections to the given viewport.

Parameters
cvp

Reimplemented from Isis::Tool.

Definition at line 358 of file TrackTool.cpp.

References Isis::Tool::cubeViewport(), and locateCursor().

void Isis::Tool::addTo ( ToolPad toolpad)
inherited

Adds the tool to the toolpad.

Parameters
toolpad

Definition at line 97 of file Tool.cpp.

References Isis::Tool::activate(), Isis::ToolPad::addAction(), Isis::Tool::m_toolPadAction, and Isis::Tool::toolPadAction().

void Isis::Tool::addTo ( Workspace ws)
virtualinherited

Adds the given workspace to the cubeviewport list.

Parameters
ws

Reimplemented in Isis::EditTool, Isis::FileTool, Isis::SpecialPixelTool, and Isis::WindowTool.

Definition at line 44 of file Tool.cpp.

References Isis::Tool::registerTool(), and Isis::Tool::setCubeViewport().

void Isis::Tool::addToActive ( QToolBar toolbar)
inherited
virtual void Isis::Tool::addToPermanent ( QToolBar toolbar)
inlinevirtualinherited
void Isis::TrackTool::clearLabels ( )
private

Clears the labels.

Definition at line 325 of file TrackTool.cpp.

References p_bluLabel, p_grayLabel, p_grnLabel, p_latLabel, p_lineLabel, p_lonLabel, p_redLabel, and p_sampLabel.

Referenced by mouseLeave(), TrackTool(), and updateLabels().

virtual QWidget* Isis::Tool::createToolBarWidget ( QStackedWidget *  parent)
inlineprotectedvirtualinherited
MdiCubeViewport* Isis::Tool::cubeViewport ( ) const
inlineprotectedinherited

Return the current cubeviewport.

Returns
CubeViewport*

Definition at line 211 of file Tool.h.

References Isis::Tool::m_cvp.

Referenced by Isis::WindowTool::addConnections(), addConnections(), Isis::StretchTool::advancedStretchChanged(), Isis::FindTool::centerLinkedViewports(), Isis::StretchTool::changeStretch(), Isis::BandTool::changeView(), Isis::BandTool::copyLinkedViewports(), Isis::FileTool::discard(), Isis::Tool::enableToolBar(), Isis::FileTool::exportView(), Isis::StatisticsTool::getStatistics(), Isis::FindTool::handleRecordClicked(), Isis::EditTool::LineToPoints(), locateCursor(), Isis::SunShadowTool::mouseButtonPress(), Isis::RubberBandTool::mouseButtonRelease(), Isis::EditTool::mouseButtonRelease(), Isis::FeatureNomenclatureTool::mouseButtonRelease(), Isis::FindTool::mouseButtonRelease(), Isis::StretchTool::mouseButtonRelease(), Isis::MatchTool::mouseButtonRelease(), Isis::QnetTool::mouseButtonRelease(), Isis::AdvancedTrackTool::mouseLeave(), Isis::ScatterPlotTool::mouseMove(), Isis::SunShadowTool::mouseMove(), mouseMove(), Isis::RubberBandTool::mouseMove(), Isis::SunShadowTool::paintViewport(), Isis::RubberBandTool::paintViewport(), Isis::FindTool::paintViewport(), Isis::FileTool::print(), Isis::SunShadowTool::recalculateShadowHeight(), Isis::EditTool::redoEdit(), Isis::FindTool::refresh(), Isis::HistogramTool::refreshPlot(), Isis::SpatialPlotTool::refreshPlot(), Isis::SpectralPlotTool::refreshPlot(), Isis::WindowTool::removeConnections(), removeConnections(), Isis::RubberBandTool::repaint(), Isis::WindowTool::resizeWindows(), Isis::HistogramTool::rubberBandComplete(), Isis::MeasureTool::rubberBandComplete(), Isis::ZoomTool::rubberBandComplete(), Isis::EditTool::rubberBandComplete(), Isis::StretchTool::rubberBandComplete(), Isis::FileTool::save(), Isis::FileTool::saveAs(), Isis::FileTool::saveAsCubeByOption(), Isis::FileTool::saveAsReducedCube(), Isis::FileTool::saveInfo(), Isis::BandTool::setBandBin(), Isis::BandTool::setList(), Isis::StretchTool::setStretchAcrossBands(), Isis::StretchTool::setStretchAllViewports(), Isis::StretchTool::showAdvancedDialog(), Isis::ScatterPlotTool::showNewScatterPlotConfig(), Isis::StretchTool::stretchChanged(), Isis::StretchTool::stretchGlobal(), Isis::StretchTool::stretchGlobalAllBands(), Isis::StretchTool::stretchRegional(), Isis::EditTool::undoEdit(), Isis::StretchTool::updateAdvStretchDialogforAll(), Isis::StretchTool::updateHistograms(), updateLabels(), Isis::MeasureTool::updateMeasure(), Isis::AdvancedTrackTool::updateRow(), Isis::WindowTool::updateTool(), Isis::BlinkTool::updateTool(), Isis::SpecialPixelTool::updateTool(), Isis::BandTool::updateTool(), Isis::SunShadowTool::updateTool(), Isis::AbstractPlotTool::updateTool(), Isis::ZoomTool::updateTool(), Isis::FileTool::updateTool(), Isis::EditTool::updateTool(), Isis::FindTool::updateTool(), Isis::StretchTool::updateTool(), Isis::AbstractPlotTool::viewportsToPlot(), Isis::EditTool::writeToCube(), Isis::ZoomTool::zoomBy(), Isis::ZoomTool::zoomFit(), Isis::ZoomTool::zoomFitHeight(), Isis::ZoomTool::zoomFitWidth(), and Isis::ZoomTool::zoomManual().

Tool::CubeViewportList * Isis::Tool::cubeViewportList ( ) const
protectedinherited

Return the list of cubeviewports.

Returns
CubeViewportList*

Definition at line 389 of file Tool.cpp.

References Isis::Workspace::cubeViewportList().

Referenced by Isis::BlinkTool::advance(), Isis::SpecialPixelTool::apply(), Isis::FindTool::centerLinkedViewports(), Isis::WindowTool::changeCursor(), Isis::FileTool::closeAll(), Isis::BandTool::copyAllViewports(), Isis::BandTool::copyLinkedViewports(), Isis::MatchTool::createPoint(), Isis::BlinkTool::eventFilter(), Isis::FeatureNomenclatureTool::featuresIdentified(), Isis::FeatureNomenclatureTool::findMissingNomenclature(), Isis::FeatureNomenclatureTool::findNomenclatureStateChanged(), Isis::FindTool::handleLinkClicked(), Isis::WindowTool::linkWindows(), Isis::RubberBandTool::mouseButtonRelease(), Isis::RubberBandTool::mouseMove(), Isis::QnetTool::openGround(), Isis::StereoTool::paintAllViewports(), Isis::MatchTool::paintAllViewports(), Isis::QnetTool::paintAllViewports(), Isis::FindTool::refresh(), Isis::ScatterPlotTool::repaintViewports(), Isis::AbstractPlotTool::repaintViewports(), Isis::WindowTool::resizeWindows(), Isis::BlinkTool::reverse(), Isis::ZoomTool::rubberBandComplete(), Isis::MatchTool::serialNumberList(), Isis::FeatureNomenclatureTool::setFontColor(), Isis::FeatureNomenclatureTool::setFontSize(), Isis::FeatureNomenclatureTool::setShowApprovedOnly(), Isis::StretchTool::setStretchAllViewports(), Isis::FeatureNomenclatureTool::setVectorType(), Isis::StretchTool::stretchGlobalAllViewports(), Isis::BlinkTool::toggleLink(), Isis::WindowTool::unlinkWindows(), Isis::MeasureTool::updateMeasure(), Isis::AdvancedTrackTool::updateRow(), Isis::WindowTool::updateTool(), Isis::BlinkTool::updateTool(), Isis::FindTool::updateTool(), Isis::AbstractPlotTool::viewportsToPlot(), Isis::ZoomTool::zoomBy(), Isis::ZoomTool::zoomFit(), Isis::ZoomTool::zoomFitHeight(), Isis::ZoomTool::zoomFitWidth(), and Isis::ZoomTool::zoomManual().

void Isis::TrackTool::displayWarning ( std::string &  pStr,
const std::string &  pExStr 
)

Display the Warning icon in case of an exception, sent from the tool where the exception occured.

Parameters
pStr- Topmost Exception Message String
pExStr- Propagated exception message string

Definition at line 97 of file TrackTool.cpp.

References mWarningWidget, and Isis::WarningWidget::viewWarningWidgetIcon().

Referenced by Isis::ViewportMainWindow::displayWarning().

void Isis::Tool::enableRubberBandTool ( )
protectedvirtualinherited

Anytime a tool is created, you may use the rubber band tool.

Enable the use of the rubberband tool.

Reimplemented in Isis::RubberBandTool, Isis::ZoomTool, Isis::MeasureTool, Isis::StereoTool, Isis::SpatialPlotTool, Isis::SpectralPlotTool, and Isis::HistogramTool.

Definition at line 338 of file Tool.cpp.

References Isis::RubberBandTool::disable().

Referenced by Isis::Tool::addViewportConnections().

void Isis::TrackTool::locateCursor ( )
privateslot

Finds the cursor position.

Definition at line 341 of file TrackTool.cpp.

References Isis::Tool::cubeViewport(), and updateLabels().

Referenced by addConnections(), and removeConnections().

virtual QString Isis::Tool::menuName ( ) const
inlinevirtualinherited
void Isis::Tool::mouseButtonPress ( QPoint  p,
Qt::MouseButton  s 
)
protectedvirtualslotinherited
Parameters
p
s

Definition at line 366 of file Tool.cpp.

Referenced by Isis::Tool::addViewportConnections(), and Isis::Tool::removeViewportConnections().

void Isis::Tool::mouseButtonRelease ( QPoint  p,
Qt::MouseButton  s 
)
protectedvirtualslotinherited

Resets the Warning to Nowarning when a different activity occurs on the application.

This is called by all the mouseButtonRelease events in all the tools.

Parameters
p
s

Reimplemented in Isis::FeatureNomenclatureTool.

Definition at line 379 of file Tool.cpp.

Referenced by Isis::Tool::addViewportConnections(), Isis::StretchTool::mouseButtonRelease(), and Isis::Tool::removeViewportConnections().

void Isis::Tool::mouseDoubleClick ( QPoint  p)
protectedvirtualslotinherited
Parameters
p

Definition at line 357 of file Tool.cpp.

Referenced by Isis::Tool::addViewportConnections(), and Isis::Tool::removeViewportConnections().

void Isis::TrackTool::mouseLeave ( )
virtualslot

Clears the labels if the mouse leaves the application.

Definition at line 131 of file TrackTool.cpp.

References clearLabels().

void Isis::TrackTool::mouseMove ( QPoint  p)
virtualslot

Updates the labels anytime the mouse moves.

Parameters
p

Definition at line 116 of file TrackTool.cpp.

References Isis::Tool::cubeViewport(), and updateLabels().

virtual void Isis::Tool::paintViewport ( MdiCubeViewport vp,
QPainter *  painter 
)
inlinevirtualinherited
void Isis::Tool::registerTool ( MdiCubeViewport viewport)
protectedslotinherited

Registers the tool to the viewport.

Parameters
viewport

Definition at line 326 of file Tool.cpp.

References Isis::Tool::m_cvp, and Isis::MdiCubeViewport::registerTool().

Referenced by Isis::Tool::addTo().

void Isis::TrackTool::removeConnections ( MdiCubeViewport cvp)
protectedvirtual

Removes the connections from the given viewport.

Parameters
cvp

Reimplemented from Isis::Tool.

Definition at line 370 of file TrackTool.cpp.

References Isis::Tool::cubeViewport(), and locateCursor().

void Isis::TrackTool::resetStatusWarning ( void  )

Resets the warning status on the status bar to default.

Definition at line 104 of file TrackTool.cpp.

References mWarningWidget, and Isis::WarningWidget::resetWarning().

Referenced by Isis::ViewportMainWindow::resetWarning().

virtual void Isis::Tool::screenPixelsChanged ( )
inlineprotectedvirtualslotinherited

This is called when actions change which pixels from the cube are displayed.

Definition at line 162 of file Tool.h.

Referenced by Isis::Tool::addViewportConnections(), Isis::Tool::removeViewportConnections(), and Isis::FeatureNomenclatureTool::viewportDone().

void Isis::Tool::setCubeViewport ( MdiCubeViewport cvp)
slotinherited
virtual QAction* Isis::Tool::toolPadAction ( ToolPad toolpad)
inlineprotectedvirtualinherited

Member Data Documentation

WarningWidget* Isis::TrackTool::mWarningWidget
private

Warning Widget.

Definition at line 75 of file TrackTool.h.

Referenced by displayWarning(), resetStatusWarning(), and TrackTool().

QLabel* Isis::TrackTool::p_bluLabel
private

Blue label.

Definition at line 74 of file TrackTool.h.

Referenced by clearLabels(), TrackTool(), and updateLabels().

QLabel* Isis::TrackTool::p_grayLabel
private

Gray label.

Definition at line 71 of file TrackTool.h.

Referenced by clearLabels(), TrackTool(), and updateLabels().

QLabel* Isis::TrackTool::p_grnLabel
private

Green label.

Definition at line 73 of file TrackTool.h.

Referenced by clearLabels(), TrackTool(), and updateLabels().

QLabel* Isis::TrackTool::p_latLabel
private

Lat label.

Definition at line 69 of file TrackTool.h.

Referenced by clearLabels(), TrackTool(), and updateLabels().

QLabel* Isis::TrackTool::p_lineLabel
private

Line label.

Definition at line 68 of file TrackTool.h.

Referenced by clearLabels(), TrackTool(), and updateLabels().

QLabel* Isis::TrackTool::p_lonLabel
private

Lon label.

Definition at line 70 of file TrackTool.h.

Referenced by clearLabels(), TrackTool(), and updateLabels().

QLabel* Isis::TrackTool::p_redLabel
private

Red label.

Definition at line 72 of file TrackTool.h.

Referenced by clearLabels(), TrackTool(), and updateLabels().

QLabel* Isis::TrackTool::p_sampLabel
private

Sample label.

Definition at line 67 of file TrackTool.h.

Referenced by clearLabels(), TrackTool(), and updateLabels().

QStatusBar* Isis::TrackTool::p_sbar
private

Status bar.

Definition at line 66 of file TrackTool.h.

Referenced by TrackTool().


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