![]()  | 
  
    Isis 3 Programmer Reference
    
   | 
 
#include <BlinkTool.h>


Public Slots | |
| void | activate (bool) | 
| Activates the tool.  More... | |
| void | setCubeViewport (MdiCubeViewport *cvp) | 
| Sets the current viewport to the given cvp.  More... | |
Signals | |
| void | clearWarningSignal () | 
| void | toolActivated () | 
| void | viewportChanged () | 
Public Member Functions | |
| BlinkTool (QWidget *parent) | |
| Blink Tool Constructor.  More... | |
| void | addTo (QMenu *menu) | 
| Adds this action to the given menu.  More... | |
| void | addToPermanent (QToolBar *perm) | 
| Adds this action to the permanent tool bar.  More... | |
| void | writeSettings () | 
| Writes the current settings of this window so the next time this tool is used, certain user prefs.  More... | |
| void | readSettings () | 
| Reads the settings saved from the last time this tool was used.  More... | |
| QString | menuName () const | 
| Returns the menu name.  More... | |
| void | addTo (ViewportMainWindow *mw) | 
| Adds the tool to the application.  More... | |
| void | addTo (ToolPad *toolpad) | 
| Adds the tool to the toolpad.  More... | |
| virtual void | addTo (Workspace *ws) | 
| Adds the given workspace to the cubeviewport list.  More... | |
| void | addToActive (QToolBar *toolbar) | 
| QString | toolIconDir () const | 
| returns the path to the icon directory.  More... | |
| virtual void | paintViewport (MdiCubeViewport *vp, QPainter *painter) | 
| RubberBandTool * | rubberBandTool () | 
| void | setList (ToolList *currentList) | 
Protected Types | |
| typedef QVector< MdiCubeViewport *> | CubeViewportList | 
| A list of cubeviewports.  More... | |
Protected Slots | |
| virtual void | rubberBandComplete () | 
| virtual void | screenPixelsChanged () | 
| This is called when actions change which pixels from the cube are displayed.  More... | |
| virtual void | mouseEnter () | 
| virtual void | mouseMove (QPoint p) | 
| virtual void | mouseMove (QPoint p, Qt::MouseButton) | 
| virtual void | mouseLeave () | 
Protected Member Functions | |
| void | updateTool () | 
| Updates the blink tool.  More... | |
| bool | eventFilter (QObject *o, QEvent *e) | 
| Catches the events happening so we can make this tool do what we want.  More... | |
| 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.  More... | |
| virtual void | updateMeasure () | 
| virtual void | scaleChanged () | 
| virtual void | stretchRequested (MdiCubeViewport *, int) | 
| void | registerTool (MdiCubeViewport *viewport) | 
| Registers the tool to the viewport.  More... | |
| MdiCubeViewport * | cubeViewport () const | 
| Return the current cubeviewport.  More... | |
| CubeViewportList * | cubeViewportList () const | 
| Return the list of cubeviewports.  More... | |
| virtual QAction * | toolPadAction (ToolPad *toolpad) | 
| Anytime a tool is created, you must setup a tool pad action with it.  More... | |
| virtual QWidget * | createToolBarWidget (QStackedWidget *parent) | 
| Anytime a tool is created, you must add it to the tool bar.  More... | |
| virtual void | addConnections (MdiCubeViewport *cvp) | 
| Anytime a tool is created, you must add the connections for it.  More... | |
| virtual void | removeConnections (MdiCubeViewport *cvp) | 
| Anytime a tool is created, you must be able to remove it's connections.  More... | |
| virtual void | enableRubberBandTool () | 
| Anytime a tool is created, you may use the rubber band tool.  More... | |
| Workspace * | workspace () | 
Private Slots | |
| void | toggleLink (QListWidgetItem *item) | 
| Links/unlinks viewports.  More... | |
| void | reverse () | 
| Reverses the order of the blinking.  More... | |
| void | stop () | 
| Stops the blinking.  More... | |
| void | start () | 
| Starts the blinking.  More... | |
| void | advance () | 
| Manual blinking.  More... | |
| void | timeout () | 
| The blink tool's timer.  More... | |
| void | updateWindow () | 
| Repaints the blink tool window.  More... | |
Private Attributes | |
| QAction * | p_action | 
| The action associated with this tool.  More... | |
| QWidget * | p_blinkWindow | 
| The blink tool widget.  More... | |
| QListWidget * | p_listWidget | 
| The list widget with the blink tool.  More... | |
| QDoubleSpinBox * | p_timeBox | 
| Time selection box.  More... | |
| bool | p_timerOn | 
| Is the timer on?  More... | |
| QDialog * | p_dialog | 
| Dialog widget.  More... | |
| QSplitter * | p_splitter | 
Definition at line 26 of file BlinkTool.h.
      
  | 
  protectedinherited | 
| Isis::BlinkTool::BlinkTool | ( | QWidget * | parent | ) | 
Blink Tool Constructor.
| parent | 
Definition at line 31 of file BlinkTool.cpp.
References advance(), p_action, p_blinkWindow, p_dialog, p_listWidget, p_timeBox, p_timerOn, readSettings(), reverse(), start(), stop(), toggleLink(), Isis::Tool::toolIconDir(), and updateWindow().
      
  | 
  slotinherited | 
Activates the tool.
| on | 
Definition at line 131 of file Tool.cpp.
References Isis::Tool::addViewportConnections(), Isis::Tool::disableToolBar(), Isis::Tool::enableToolBar(), Isis::Tool::m_active, Isis::Tool::m_toolPadAction, and Isis::Tool::removeViewportConnections().
Referenced by Isis::Tool::addTo(), Isis::AdvancedTrackTool::AdvancedTrackTool(), Isis::RubberBandTool::disable(), Isis::RubberBandTool::enable(), Isis::AdvancedTrackTool::eventFilter(), Isis::FileTool::FileTool(), Isis::RubberBandTool::RubberBandTool(), Isis::TrackTool::TrackTool(), Isis::WindowTool::WindowTool(), and Isis::Workspace::Workspace().
      
  | 
  inlineprotectedvirtualinherited | 
Anytime a tool is created, you must add the connections for it.
| cvp | 
Reimplemented in Isis::TrackTool, and Isis::WindowTool.
Definition at line 253 of file Tool.h.
Referenced by Isis::Tool::addViewportConnections().
      
  | 
  virtual | 
Adds this action to the given menu.
| menu | 
Reimplemented from Isis::Tool.
Definition at line 157 of file BlinkTool.cpp.
References p_action.
      
  | 
  inherited | 
Adds the tool to the application.
| pViewPortMnWin | 
Definition at line 78 of file Tool.cpp.
References Isis::ViewportMainWindow::activeToolBar(), Isis::Tool::addToActive(), Isis::Tool::addToPermanent(), Isis::ViewportMainWindow::getMenu(), Isis::Tool::menuName(), Isis::ViewportMainWindow::permanentToolBar(), Isis::ViewportMainWindow::toolPad(), and Isis::ViewportMainWindow::workspace().
Referenced by Isis::WindowTool::addTo(), Isis::SpecialPixelTool::addTo(), Isis::FileTool::addTo(), Isis::EditTool::addTo(), Isis::ViewportMainWindow::ViewportMainWindow(), and Isis::Workspace::Workspace().
      
  | 
  inherited | 
Adds the tool to the toolpad.
| toolpad | 
Definition at line 98 of file Tool.cpp.
References Isis::Tool::activate(), Isis::ToolPad::addAction(), Isis::Tool::m_toolPadAction, and Isis::Tool::toolPadAction().
      
  | 
  virtualinherited | 
Adds the given workspace to the cubeviewport list.
| ws | 
Reimplemented in Isis::EditTool, Isis::FileTool, Isis::SpecialPixelTool, and Isis::WindowTool.
Definition at line 45 of file Tool.cpp.
References Isis::Tool::registerTool(), and Isis::Tool::setCubeViewport().
      
  | 
  inherited | 
| toolbar | 
Definition at line 112 of file Tool.cpp.
References Isis::Tool::createToolBarWidget(), Isis::Tool::disableToolBar(), and Isis::Tool::m_toolBarWidget.
Referenced by Isis::Tool::addTo(), and Isis::Workspace::Workspace().
      
  | 
  virtual | 
Adds this action to the permanent tool bar.
| perm | 
Reimplemented from Isis::Tool.
Definition at line 168 of file BlinkTool.cpp.
References p_action.
      
  | 
  privateslot | 
Manual blinking.
Definition at line 273 of file BlinkTool.cpp.
References Isis::Tool::cubeViewportList(), Isis::MdiCubeViewport::isLinked(), p_listWidget, and p_timerOn.
Referenced by BlinkTool(), and timeout().
      
  | 
  inlineprotectedvirtualinherited | 
Anytime a tool is created, you must add it to the tool bar.
| parent | 
Reimplemented in Isis::StretchTool, Isis::FindTool, Isis::StatisticsTool, Isis::FeatureNomenclatureTool, Isis::EditTool, Isis::ZoomTool, Isis::StereoTool, Isis::MeasureTool, Isis::SpatialPlotTool, Isis::SpectralPlotTool, Isis::AbstractPlotTool, Isis::BandTool, Isis::SunShadowTool, Isis::HistogramTool, Isis::ScatterPlotTool, and Isis::PanTool.
Definition at line 243 of file Tool.h.
Referenced by Isis::Tool::addToActive().
      
  | 
  inlineprotectedinherited | 
Return the current cubeviewport.
Definition at line 211 of file Tool.h.
References Isis::Tool::m_cvp.
Referenced by Isis::WindowTool::addConnections(), Isis::TrackTool::addConnections(), Isis::StretchTool::advancedStretchChanged(), Isis::FindTool::centerLinkedViewports(), Isis::StretchTool::changeStretch(), Isis::BandTool::changeView(), Isis::BandTool::copyLinkedViewports(), Isis::FileTool::discard(), Isis::Tool::enableToolBar(), Isis::FileTool::exportToList(), Isis::FileTool::exportView(), Isis::StatisticsTool::getStatistics(), Isis::FindTool::handleRecordClicked(), Isis::EditTool::LineToPoints(), Isis::TrackTool::locateCursor(), Isis::SunShadowTool::mouseButtonPress(), Isis::ControlNetTool::mouseButtonRelease(), 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(), Isis::TrackTool::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(), Isis::TrackTool::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(), Isis::TrackTool::updateLabels(), Isis::MeasureTool::updateMeasure(), Isis::AdvancedTrackTool::updateRow(), Isis::WindowTool::updateTool(), 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().
      
  | 
  protectedinherited | 
Return the list of cubeviewports.
Definition at line 390 of file Tool.cpp.
References Isis::Workspace::cubeViewportList().
Referenced by advance(), Isis::SpecialPixelTool::apply(), Isis::FindTool::centerLinkedViewports(), Isis::WindowTool::changeCursor(), Isis::FileTool::closeAll(), Isis::BandTool::copyAllViewports(), Isis::BandTool::copyLinkedViewports(), Isis::MatchTool::createPoint(), 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::ControlNetTool::paintAllViewports(), Isis::MatchTool::paintAllViewports(), Isis::QnetTool::paintAllViewports(), Isis::FindTool::refresh(), Isis::ScatterPlotTool::repaintViewports(), Isis::AbstractPlotTool::repaintViewports(), Isis::WindowTool::resizeWindows(), reverse(), Isis::ZoomTool::rubberBandComplete(), Isis::MatchTool::serialNumberList(), Isis::ControlNetTool::setControlNet(), Isis::FeatureNomenclatureTool::setFontColor(), Isis::FeatureNomenclatureTool::setFontSize(), Isis::FeatureNomenclatureTool::setShowApprovedOnly(), Isis::StretchTool::setStretchAllViewports(), Isis::FeatureNomenclatureTool::setVectorType(), Isis::StretchTool::stretchGlobalAllViewports(), toggleLink(), Isis::WindowTool::unlinkWindows(), Isis::MeasureTool::updateMeasure(), Isis::AdvancedTrackTool::updateRow(), Isis::WindowTool::updateTool(), updateTool(), Isis::FindTool::updateTool(), Isis::AbstractPlotTool::viewportsToPlot(), Isis::ZoomTool::zoomBy(), Isis::ZoomTool::zoomFit(), Isis::ZoomTool::zoomFitHeight(), Isis::ZoomTool::zoomFitWidth(), and Isis::ZoomTool::zoomManual().
      
  | 
  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 339 of file Tool.cpp.
References Isis::RubberBandTool::disable().
Referenced by Isis::Tool::addViewportConnections().
      
  | 
  protected | 
Catches the events happening so we can make this tool do what we want.
| o | |
| e | 
Definition at line 357 of file BlinkTool.cpp.
References Isis::Tool::cubeViewportList(), p_blinkWindow, p_listWidget, Isis::CubeViewport::pixmap(), and writeSettings().
      
  | 
  inlinevirtual | 
Returns the menu name.
Reimplemented from Isis::Tool.
Definition at line 42 of file BlinkTool.h.
      
  | 
  protectedvirtualinherited | 
| p | |
| s | 
Definition at line 367 of file Tool.cpp.
Referenced by Isis::Tool::addViewportConnections(), and Isis::Tool::removeViewportConnections().
      
  | 
  protectedvirtualinherited | 
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.
| p | |
| s | 
Reimplemented in Isis::FeatureNomenclatureTool.
Definition at line 380 of file Tool.cpp.
Referenced by Isis::Tool::addViewportConnections(), Isis::StretchTool::mouseButtonRelease(), and Isis::Tool::removeViewportConnections().
      
  | 
  protectedvirtualinherited | 
| p | 
Definition at line 358 of file Tool.cpp.
Referenced by Isis::Tool::addViewportConnections(), and Isis::Tool::removeViewportConnections().
      
  | 
  protectedvirtualslotinherited | 
| p | 
Definition at line 352 of file Tool.cpp.
Referenced by Isis::Tool::addViewportConnections(), and Isis::Tool::removeViewportConnections().
      
  | 
  inlinevirtualinherited | 
| vp | |
| painter | 
Reimplemented in Isis::QnetTool, Isis::MatchTool, Isis::FindTool, Isis::FeatureNomenclatureTool, Isis::RubberBandTool, Isis::ControlNetTool, Isis::StereoTool, Isis::SunShadowTool, Isis::AbstractPlotTool, and Isis::ScatterPlotTool.
| void Isis::BlinkTool::readSettings | ( | ) | 
Reads the settings saved from the last time this tool was used.
Definition at line 331 of file BlinkTool.cpp.
References p_dialog, and p_timeBox.
Referenced by BlinkTool().
      
  | 
  protectedinherited | 
Registers the tool to the viewport.
| viewport | 
Definition at line 327 of file Tool.cpp.
References Isis::Tool::m_cvp, and Isis::MdiCubeViewport::registerTool().
Referenced by Isis::Tool::addTo().
      
  | 
  inlineprotectedvirtualinherited | 
Anytime a tool is created, you must be able to remove it's connections.
| cvp | 
Reimplemented in Isis::MeasureTool, Isis::TrackTool, and Isis::WindowTool.
Definition at line 261 of file Tool.h.
Referenced by Isis::Tool::removeViewportConnections().
      
  | 
  privateslot | 
Reverses the order of the blinking.
Definition at line 232 of file BlinkTool.cpp.
References Isis::Tool::cubeViewportList(), Isis::MdiCubeViewport::isLinked(), p_listWidget, and p_timerOn.
Referenced by BlinkTool().
      
  | 
  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().
      
  | 
  slotinherited | 
Sets the current viewport to the given cvp.
| cvp | 
Definition at line 160 of file Tool.cpp.
References Isis::Tool::addViewportConnections(), Isis::Tool::enableToolBar(), Isis::Tool::m_active, Isis::Tool::m_cvp, Isis::Tool::removeViewportConnections(), and Isis::Tool::updateTool().
Referenced by Isis::Tool::addTo(), and Isis::FileTool::closeAll().
      
  | 
  privateslot | 
Starts the blinking.
Definition at line 262 of file BlinkTool.cpp.
References p_timeBox, p_timerOn, and timeout().
Referenced by BlinkTool(), and timeout().
      
  | 
  privateslot | 
Stops the blinking.
Definition at line 253 of file BlinkTool.cpp.
References p_timerOn.
Referenced by BlinkTool().
      
  | 
  privateslot | 
      
  | 
  privateslot | 
Links/unlinks viewports.
| item | 
Definition at line 217 of file BlinkTool.cpp.
References Isis::Tool::cubeViewportList(), Isis::MdiCubeViewport::isLinked(), p_listWidget, and Isis::MdiCubeViewport::setLinked().
Referenced by BlinkTool().
      
  | 
  inlineinherited | 
returns the path to the icon directory.
Definition at line 127 of file Tool.h.
References Isis::Tool::m_toolIconDir.
Referenced by Isis::AdvancedTrackTool::AdvancedTrackTool(), BlinkTool(), Isis::MatchTool::createActions(), Isis::QnetTool::createActions(), Isis::StereoTool::createMenus(), Isis::PanTool::createToolBarWidget(), Isis::BandTool::createToolBarWidget(), Isis::StereoTool::createToolBarWidget(), Isis::ZoomTool::createToolBarWidget(), Isis::EditTool::createToolBarWidget(), Isis::FindTool::createToolBarWidget(), Isis::StretchTool::createToolBarWidget(), Isis::FileTool::FileTool(), Isis::FindTool::FindTool(), Isis::HistogramTool::HistogramTool(), Isis::SpecialPixelTool::SpecialPixelTool(), Isis::RubberBandComboBox::toolIconDir(), Isis::PanTool::toolPadAction(), Isis::ScatterPlotTool::toolPadAction(), Isis::HistogramTool::toolPadAction(), Isis::BandTool::toolPadAction(), Isis::SunShadowTool::toolPadAction(), Isis::SpectralPlotTool::toolPadAction(), Isis::SpatialPlotTool::toolPadAction(), Isis::MeasureTool::toolPadAction(), Isis::StereoTool::toolPadAction(), Isis::ControlNetTool::toolPadAction(), Isis::ZoomTool::toolPadAction(), Isis::EditTool::toolPadAction(), Isis::FeatureNomenclatureTool::toolPadAction(), Isis::StatisticsTool::toolPadAction(), Isis::FindTool::toolPadAction(), Isis::StretchTool::toolPadAction(), Isis::MatchTool::toolPadAction(), Isis::QnetTool::toolPadAction(), Isis::WindowTool::WindowTool(), and Isis::ZoomTool::ZoomTool().
Anytime a tool is created, you must setup a tool pad action with it.
| toolpad | 
Reimplemented in Isis::QnetTool, Isis::MatchTool, Isis::StretchTool, Isis::FindTool, Isis::StatisticsTool, Isis::FeatureNomenclatureTool, Isis::EditTool, Isis::ZoomTool, Isis::ControlNetTool, Isis::StereoTool, Isis::MeasureTool, Isis::SpatialPlotTool, Isis::SpectralPlotTool, Isis::SunShadowTool, Isis::BandTool, Isis::HistogramTool, Isis::ScatterPlotTool, and Isis::PanTool.
Definition at line 231 of file Tool.h.
Referenced by Isis::Tool::addTo().
      
  | 
  protectedvirtual | 
Updates the blink tool.
Reimplemented from Isis::Tool.
Definition at line 177 of file BlinkTool.cpp.
References Isis::Tool::cubeViewport(), Isis::Tool::cubeViewportList(), Isis::FileName::expanded(), Isis::MdiCubeViewport::isLinked(), p_action, and p_listWidget.
      
  | 
  privateslot | 
Repaints the blink tool window.
Definition at line 306 of file BlinkTool.cpp.
References p_blinkWindow.
Referenced by BlinkTool().
| void Isis::BlinkTool::writeSettings | ( | ) | 
Writes the current settings of this window so the next time this tool is used, certain user prefs.
are remembered.
Definition at line 316 of file BlinkTool.cpp.
References p_dialog, and p_timeBox.
Referenced by eventFilter().
      
  | 
  private | 
The action associated with this tool.
Definition at line 60 of file BlinkTool.h.
Referenced by addTo(), addToPermanent(), BlinkTool(), and updateTool().
      
  | 
  private | 
The blink tool widget.
Definition at line 61 of file BlinkTool.h.
Referenced by BlinkTool(), eventFilter(), and updateWindow().
      
  | 
  private | 
Dialog widget.
Definition at line 65 of file BlinkTool.h.
Referenced by BlinkTool(), readSettings(), and writeSettings().
      
  | 
  private | 
The list widget with the blink tool.
Definition at line 62 of file BlinkTool.h.
Referenced by advance(), BlinkTool(), eventFilter(), reverse(), toggleLink(), and updateTool().
      
  | 
  private | 
Time selection box.
Definition at line 63 of file BlinkTool.h.
Referenced by BlinkTool(), readSettings(), start(), and writeSettings().
      
  | 
  private | 
Is the timer on?
Definition at line 64 of file BlinkTool.h.
Referenced by advance(), BlinkTool(), reverse(), start(), stop(), and timeout().