Isis 3 Programmer Reference
Isis::CnetEditorWidget Class Reference

This widget provides full editing, filtering and viewing capabilities for the raw data in a control network. More...

#include <CnetEditorWidget.h>

Inheritance diagram for Isis::CnetEditorWidget:
Inheritance graph
Collaboration diagram for Isis::CnetEditorWidget:
Collaboration graph

Public Types

enum  View { PointView , ImageView , ConnectionView }
 

Public Slots

void configSorting ()
 Configures the sorting dialog.
 
void setTablesFrozen (bool)
 Sets if the tables are frozen.
 
void rebuildModels ()
 Rebuilds the models.
 

Signals

void cnetModified ()
 
void editControlPoint (ControlPoint *controlPoint, QString serialNumber)
 

Public Member Functions

 CnetEditorWidget (Control *control, QString pathForSettings)
 
virtual ~CnetEditorWidget ()
 Destructor.
 
void readSettings ()
 Reads the working version settings stored at the settings path.
 
void writeSettings ()
 Writes the configuration settings used.
 
QWidgetpointTreeView ()
 Returns the point tree view.
 
QWidgetserialTreeView ()
 Returns the serial tree view.
 
QWidgetconnectionTreeView ()
 Returns the connection tree view.
 
QWidgetpointFilterWidget ()
 Returns the point filter widget.
 
QWidgetserialFilterWidget ()
 Returns the serial filter widget.
 
QWidgetconnectionFilterWidget ()
 Returns the connection filter widget.
 
TableViewpointTableView ()
 Returns the point table view.
 
TableViewmeasureTableView ()
 Returns the measure table view.
 
ControlNetcontrol ()
 Returns the control network.
 
AbstractTableModelmeasureTableModel ()
 Returns the measure table model.
 
AbstractTableModelpointTableModel ()
 Returns the point table model.
 
QMap< QAction *, QList< QString > > menuActions ()
 Returns the menu actions.
 
QMap< QString, QList< QAction * > > toolBarActions ()
 Returns the tool bar actions.
 
ControlNetfilteredNetwork () const
 Returns the filtered control net.
 
bool measureTableSortingEnabled () const
 Returns true if the measure table can be sorted.
 
int measureTableSortLimit () const
 Returns the sorting limit for the measure table.
 
bool pointTableSortingEnabled () const
 Returns true if the point table can be sorted.
 
int pointTableSortLimit () const
 Returns the sorting limit for the point table.
 
void setMeasureTableSortingEnabled (bool enabled)
 Sets if the measure table can be sorted.
 
void setMeasureTableSortLimit (int limit)
 Sets the measure table sorting limit.
 
void setPointTableSortingEnabled (bool enabled)
 Sets if the point table can be sorted.
 
void setPointTableSortLimit (int limit)
 Sets the point table sorting limit.
 

Private Slots

void rebuildModels (QList< AbstractTreeItem * > itemsToDelete)
 Deletes the current models, clears the tree, and rebuilds the models.
 
void pointColToggled ()
 Toggles the point column.
 
void measureColToggled ()
 Toggles the measure column.
 
void handlePointTableFilterCountsChanged (int visibleRows, int totalRows)
 Handles point table filter changes.
 
void handleMeasureTableFilterCountsChanged (int visibleRows, int totalRows)
 Handles measure table filter changes.
 
void setCnetModified ()
 Connected to cnetModified().
 

Private Member Functions

void nullify ()
 Sets all member variables to NULL.
 
QBoxLayout * createMainLayout ()
 Creates the layout of the widget.
 
void createActions ()
 Creates the menus, and options for the widget.
 
void createPointTreeView ()
 Creates the point tree view and adds it to the model.
 
void createSerialTreeView ()
 Creates the serial tree and adds it to the model.
 
void createConnectionTreeView ()
 Creates the connection tree and adds it to the model.
 
void createFilterArea ()
 Creates filter widgets.
 
void createPointTableView ()
 Creates the point table and adds it to the widget.
 
void createMeasureTableView ()
 Creates the measure table and adds it to the widget.
 
void upgradeVersion ()
 Upgrades the working version number.
 
void handleTableFilterCountsChanged (int visibleRows, int totalRows, QGroupBox *box, QString initialText)
 Handles any table filter changes.
 

Private Attributes

bool m_updatingSelection
 Updates selection.
 
Controlm_control
 Control for this widget.
 
QString * m_workingVersion
 Working version.
 
TreeViewm_pointTreeView
 Point tree view.
 
TreeViewm_imageTreeView
 Image tree view.
 
TreeViewm_connectionTreeView
 Connection tree view.
 
TableViewm_pointTableView
 Point table view.
 
TableViewm_measureTableView
 Measure table view.
 
QGroupBox * m_pointTableBox
 Point table box.
 
QGroupBox * m_measureTableBox
 Measure table box.
 
QScrollArea * m_filterArea
 Scroll area for filters.
 
QWidgetm_pointFilterWidget
 Point filter widget.
 
QWidgetm_serialFilterWidget
 Serial filter widget.
 
QWidgetm_connectionFilterWidget
 Connection filter widget.
 
PointMeasureTreeModelm_pointModel
 Point tree model.
 
ImagePointTreeModelm_imageModel
 Image tree model.
 
ImageImageTreeModelm_connectionModel
 Connection tree model.
 
PointTableModelm_pointTableModel
 Point table model.
 
MeasureTableModelm_measureTableModel
 Measure table model.
 
QSplitter * m_mainSplitter
 Splitter.
 
QMap< QAction *, QList< QString > > * m_menuActions
 QMap of menu actions.
 
QMap< QString, QList< QAction * > > * m_toolBarActions
 QMap of tool bar actions.
 
QString * m_settingsPath
 Path to read/write settings.
 
CnetEditorSortConfigDialogm_sortDialog
 Sorting dialog.
 

Static Private Attributes

static const QString VERSION = "0.1"
 Version.
 

Detailed Description

This widget provides full editing, filtering and viewing capabilities for the raw data in a control network.

The raw data is, for example, chooser name or cube serial number. The display is all textual. Please use the widget accessors to appropriately place the various ancillary sections of the editor.

Author
????-??-?? Eric Hyer
History

2015-10-07 Ian Humphrey - Icons updated and no longer embedded (in order to not violate licensing terms). Fixes #1041.

2017-05-18 Tracie Sucharski - Added a signal to indicate the control point chosen from either the point table or the measure table. If the point was chosen from the measure table, the serial number of the measure is also passed. This was added for IPCE, for the interaction with other views.

2017-07-25 Summer Stapleton - Removed the CnetViz namespace. Fixes #5054.

2017-07-24 Makayla Shepherd - Fixed a seg fault in ipce that occurs when attempting to edit a control point when there is not an active control network. Fixes #5048.

2017-08-10 Christopher Combs - Added Apriori lat, lon, and radius labels. Fixes#5066

2017-08-11 Christopher Combs - Changed constructor to take in a Control instead of a ControlNet. Added load and save methods as well as an XmlHandler to allow for serialization of the widget into the project. Fixes #4989.

2018-04-11 Tracie Sucharski - Moved the Xml serialization to the newly created CnetEditorView class for ipce.

2018-06-12 Kaitlyn Lee - Added m_sortDialog to keep track if a dialog exists so only one instance can be open at a time.

2018-07-12 Kaitlyn Lee - Added setCnetModified() and the connection with cnetModified() to call setModified(true) on a control when a user edits a cnet. cnetModified() was only connected to a slot in Directory, and this was connected to a slot in Project called activeControlModified() that would call setModified(true) on the active control. So, when a user changed any cnets, the only cnet that was recognized as being modified was the active. Adding this allows a user to save changes made to a nonactive cnet. Fixes #5414.

Definition at line 96 of file CnetEditorWidget.h.

Member Enumeration Documentation

◆ View

enum Isis::CnetEditorWidget::View

Definition at line 100 of file CnetEditorWidget.h.

Constructor & Destructor Documentation

◆ CnetEditorWidget()

Isis::CnetEditorWidget::CnetEditorWidget ( Control * control,
QString pathForSettings )

Definition at line 75 of file CnetEditorWidget.cpp.

◆ ~CnetEditorWidget()

Member Function Documentation

◆ configSorting

void Isis::CnetEditorWidget::configSorting ( )
slot

Configures the sorting dialog.

If one does not already exist, create it, then show the dialog

Definition at line 1024 of file CnetEditorWidget.cpp.

References m_sortDialog.

Referenced by createActions().

◆ connectionFilterWidget()

QWidget * Isis::CnetEditorWidget::connectionFilterWidget ( )

Returns the connection filter widget.

Returns
QWidget The connection filter widget

Definition at line 765 of file CnetEditorWidget.cpp.

References m_connectionFilterWidget.

◆ connectionTreeView()

QWidget * Isis::CnetEditorWidget::connectionTreeView ( )

Returns the connection tree view.

Returns
QWidget The connection tree view

Definition at line 735 of file CnetEditorWidget.cpp.

References m_connectionTreeView.

◆ control()

ControlNet * Isis::CnetEditorWidget::control ( )

Returns the control network.

Returns
ControlNet The control network

Definition at line 815 of file CnetEditorWidget.cpp.

References Isis::Control::controlNet(), and m_control.

◆ createActions()

void Isis::CnetEditorWidget::createActions ( )
private

Creates the menus, and options for the widget.

Definition at line 305 of file CnetEditorWidget.cpp.

References configSorting(), m_menuActions, m_toolBarActions, and setTablesFrozen().

◆ createConnectionTreeView()

void Isis::CnetEditorWidget::createConnectionTreeView ( )
private

Creates the connection tree and adds it to the model.

Definition at line 375 of file CnetEditorWidget.cpp.

References Isis::Control::controlNet(), m_connectionModel, m_connectionTreeView, and m_control.

Referenced by createMainLayout().

◆ createFilterArea()

void Isis::CnetEditorWidget::createFilterArea ( )
private

Creates filter widgets.

Definition at line 386 of file CnetEditorWidget.cpp.

References m_connectionFilterWidget, m_connectionModel, m_imageModel, m_pointFilterWidget, m_pointModel, and m_serialFilterWidget.

Referenced by createMainLayout().

◆ createMainLayout()

◆ createMeasureTableView()

void Isis::CnetEditorWidget::createMeasureTableView ( )
private

◆ createPointTableView()

void Isis::CnetEditorWidget::createPointTableView ( )
private

◆ createPointTreeView()

void Isis::CnetEditorWidget::createPointTreeView ( )
private

Creates the point tree view and adds it to the model.

Definition at line 353 of file CnetEditorWidget.cpp.

References Isis::Control::controlNet(), m_control, m_pointModel, and m_pointTreeView.

Referenced by createMainLayout().

◆ createSerialTreeView()

void Isis::CnetEditorWidget::createSerialTreeView ( )
private

Creates the serial tree and adds it to the model.

Definition at line 364 of file CnetEditorWidget.cpp.

References Isis::Control::controlNet(), m_control, m_imageModel, and m_imageTreeView.

Referenced by createMainLayout().

◆ filteredNetwork()

ControlNet * Isis::CnetEditorWidget::filteredNetwork ( ) const

Returns the filtered control net.

Returns
ControlNet Filtered control network

Definition at line 845 of file CnetEditorWidget.cpp.

References Isis::Control::controlNet(), m_control, m_pointModel, and Isis::ControlPoint::SetEditLock().

◆ handleMeasureTableFilterCountsChanged

void Isis::CnetEditorWidget::handleMeasureTableFilterCountsChanged ( int visibleRows,
int totalRows )
privateslot

Handles measure table filter changes.

Parameters
visibleRowsNumber of visible rows
totalRowsTotal number of rows
See also
handleTableFilterCountsChanged(int visibleRows, int totalRows, QGroupBox *box, QString initialText)

Definition at line 585 of file CnetEditorWidget.cpp.

References handleTableFilterCountsChanged(), and m_measureTableBox.

Referenced by createMeasureTableView().

◆ handlePointTableFilterCountsChanged

void Isis::CnetEditorWidget::handlePointTableFilterCountsChanged ( int visibleRows,
int totalRows )
privateslot

Handles point table filter changes.

Parameters
visibleRowsNumber of visible rows
totalRowsTotal number of rows
See also
handleTableFilterCountsChanged(int visibleRows, int totalRows, QGroupBox *box, QString initialText)

Definition at line 569 of file CnetEditorWidget.cpp.

References handleTableFilterCountsChanged(), and m_pointTableBox.

Referenced by createPointTableView().

◆ handleTableFilterCountsChanged()

void Isis::CnetEditorWidget::handleTableFilterCountsChanged ( int visibleRows,
int totalRows,
QGroupBox * box,
QString initialText )
private

Handles any table filter changes.

Parameters
visibleRowsNumber of visible rows
totalRowsTotal number of rows
boxThe table box to change
initialTextThe initial text at the top of the table

Definition at line 600 of file CnetEditorWidget.cpp.

Referenced by handleMeasureTableFilterCountsChanged(), and handlePointTableFilterCountsChanged().

◆ measureColToggled

void Isis::CnetEditorWidget::measureColToggled ( )
privateslot

Toggles the measure column.

Definition at line 551 of file CnetEditorWidget.cpp.

References Isis::TableView::getHorizontalHeader(), m_measureTableView, and Isis::TableView::setColumnVisible().

Referenced by createMeasureTableView().

◆ measureTableModel()

AbstractTableModel * Isis::CnetEditorWidget::measureTableModel ( )

Returns the measure table model.

Returns
AbstractTableModel The measure table model

Definition at line 795 of file CnetEditorWidget.cpp.

References m_measureTableModel.

◆ measureTableSortingEnabled()

bool Isis::CnetEditorWidget::measureTableSortingEnabled ( ) const

Returns true if the measure table can be sorted.

Returns
bool True if sorting is enabled on the measure table

Definition at line 945 of file CnetEditorWidget.cpp.

References m_measureTableModel.

Referenced by writeSettings().

◆ measureTableSortLimit()

int Isis::CnetEditorWidget::measureTableSortLimit ( ) const

Returns the sorting limit for the measure table.

Returns
int The sorting limit for the measure table

Definition at line 955 of file CnetEditorWidget.cpp.

References m_measureTableModel.

Referenced by writeSettings().

◆ measureTableView()

TableView * Isis::CnetEditorWidget::measureTableView ( )

Returns the measure table view.

Returns
TableView The measure table view

Definition at line 785 of file CnetEditorWidget.cpp.

References m_measureTableView.

Referenced by Isis::Directory::addCnetEditorView().

◆ menuActions()

QMap< QAction *, QList< QString > > Isis::CnetEditorWidget::menuActions ( )

Returns the menu actions.

Returns
QMap< QAction *, QList< QString > > QMap of menu actions

Definition at line 825 of file CnetEditorWidget.cpp.

References m_menuActions.

◆ nullify()

◆ pointColToggled

void Isis::CnetEditorWidget::pointColToggled ( )
privateslot

Toggles the point column.

Definition at line 537 of file CnetEditorWidget.cpp.

References Isis::TableView::getHorizontalHeader(), m_pointTableView, and Isis::TableView::setColumnVisible().

Referenced by createPointTableView().

◆ pointFilterWidget()

QWidget * Isis::CnetEditorWidget::pointFilterWidget ( )

Returns the point filter widget.

Returns
QWidget The point filter widget

Definition at line 745 of file CnetEditorWidget.cpp.

References m_pointFilterWidget.

◆ pointTableModel()

AbstractTableModel * Isis::CnetEditorWidget::pointTableModel ( )

Returns the point table model.

Returns
AbstractTableModel The point table model

Definition at line 805 of file CnetEditorWidget.cpp.

References m_pointTableModel.

◆ pointTableSortingEnabled()

bool Isis::CnetEditorWidget::pointTableSortingEnabled ( ) const

Returns true if the point table can be sorted.

Returns
bool True if sorting is enabled on the point table

Definition at line 965 of file CnetEditorWidget.cpp.

References m_pointTableModel.

Referenced by writeSettings().

◆ pointTableSortLimit()

int Isis::CnetEditorWidget::pointTableSortLimit ( ) const

Returns the sorting limit for the point table.

Returns
int The sorting limit for the point table

Definition at line 975 of file CnetEditorWidget.cpp.

References m_pointTableModel.

Referenced by writeSettings().

◆ pointTableView()

TableView * Isis::CnetEditorWidget::pointTableView ( )

Returns the point table view.

Returns
TableView The point table view

Definition at line 775 of file CnetEditorWidget.cpp.

References m_pointTableView.

Referenced by Isis::Directory::addCnetEditorView().

◆ pointTreeView()

QWidget * Isis::CnetEditorWidget::pointTreeView ( )

Returns the point tree view.

Returns
QWidget The point tree view

Definition at line 715 of file CnetEditorWidget.cpp.

References m_pointTreeView.

◆ readSettings()

void Isis::CnetEditorWidget::readSettings ( )

◆ rebuildModels [1/2]

void Isis::CnetEditorWidget::rebuildModels ( )
slot

Rebuilds the models.

Definition at line 529 of file CnetEditorWidget.cpp.

References rebuildModels().

Referenced by createMeasureTableView(), createPointTableView(), and rebuildModels().

◆ rebuildModels [2/2]

void Isis::CnetEditorWidget::rebuildModels ( QList< AbstractTreeItem * > itemsToDelete)
privateslot

Deletes the current models, clears the tree, and rebuilds the models.

Parameters
itemsToDeleteTree to clear

Definition at line 214 of file CnetEditorWidget.cpp.

References m_connectionModel, m_imageModel, and m_pointModel.

◆ serialFilterWidget()

QWidget * Isis::CnetEditorWidget::serialFilterWidget ( )

Returns the serial filter widget.

Returns
QWidget The serial filter widget

Definition at line 755 of file CnetEditorWidget.cpp.

References m_serialFilterWidget.

◆ serialTreeView()

QWidget * Isis::CnetEditorWidget::serialTreeView ( )

Returns the serial tree view.

Returns
QWidget The serial tree view

Definition at line 725 of file CnetEditorWidget.cpp.

References m_imageTreeView.

◆ setCnetModified

void Isis::CnetEditorWidget::setCnetModified ( )
privateslot

Connected to cnetModified().

Sets the modification of m_control when the cnet is modified.

Definition at line 1054 of file CnetEditorWidget.cpp.

References m_control, and Isis::Control::setModified().

◆ setMeasureTableSortingEnabled()

void Isis::CnetEditorWidget::setMeasureTableSortingEnabled ( bool enabled)

Sets if the measure table can be sorted.

Parameters
boolBool if the table can be sorted or not

Definition at line 985 of file CnetEditorWidget.cpp.

References m_measureTableModel.

Referenced by readSettings().

◆ setMeasureTableSortLimit()

void Isis::CnetEditorWidget::setMeasureTableSortLimit ( int limit)

Sets the measure table sorting limit.

Parameters
intSorting limit

Definition at line 995 of file CnetEditorWidget.cpp.

References m_measureTableModel.

Referenced by readSettings().

◆ setPointTableSortingEnabled()

void Isis::CnetEditorWidget::setPointTableSortingEnabled ( bool enabled)

Sets if the point table can be sorted.

Parameters
boolBool if the table can be sorted or not

Definition at line 1005 of file CnetEditorWidget.cpp.

References m_pointTableModel.

Referenced by readSettings().

◆ setPointTableSortLimit()

void Isis::CnetEditorWidget::setPointTableSortLimit ( int limit)

Sets the point table sorting limit.

Parameters
intSorting limit

Definition at line 1015 of file CnetEditorWidget.cpp.

References m_pointTableModel.

Referenced by readSettings().

◆ setTablesFrozen

void Isis::CnetEditorWidget::setTablesFrozen ( bool freezeTables)
slot

Sets if the tables are frozen.

Parameters
boolBool that freezes the tables or not

Definition at line 1037 of file CnetEditorWidget.cpp.

References m_connectionModel, m_imageModel, and m_pointModel.

Referenced by createActions().

◆ toolBarActions()

QMap< QString, QList< QAction * > > Isis::CnetEditorWidget::toolBarActions ( )

Returns the tool bar actions.

Returns
QMap< QAction *, QList< QString > > QMap of tool bar actions

Definition at line 835 of file CnetEditorWidget.cpp.

References m_toolBarActions.

◆ upgradeVersion()

void Isis::CnetEditorWidget::upgradeVersion ( )
private

Upgrades the working version number.

Definition at line 619 of file CnetEditorWidget.cpp.

References m_workingVersion, upgradeVersion(), and VERSION.

Referenced by upgradeVersion().

◆ writeSettings()

void Isis::CnetEditorWidget::writeSettings ( )

Member Data Documentation

◆ m_connectionFilterWidget

QWidget* Isis::CnetEditorWidget::m_connectionFilterWidget
private

Connection filter widget.

Definition at line 199 of file CnetEditorWidget.h.

Referenced by connectionFilterWidget(), createFilterArea(), nullify(), and ~CnetEditorWidget().

◆ m_connectionModel

ImageImageTreeModel* Isis::CnetEditorWidget::m_connectionModel
private

Connection tree model.

Definition at line 203 of file CnetEditorWidget.h.

Referenced by createConnectionTreeView(), createFilterArea(), nullify(), rebuildModels(), setTablesFrozen(), and ~CnetEditorWidget().

◆ m_connectionTreeView

TreeView* Isis::CnetEditorWidget::m_connectionTreeView
private

Connection tree view.

Definition at line 187 of file CnetEditorWidget.h.

Referenced by connectionTreeView(), createConnectionTreeView(), createMainLayout(), nullify(), and ~CnetEditorWidget().

◆ m_control

Control* Isis::CnetEditorWidget::m_control
private

◆ m_filterArea

QScrollArea* Isis::CnetEditorWidget::m_filterArea
private

Scroll area for filters.

Definition at line 195 of file CnetEditorWidget.h.

Referenced by nullify().

◆ m_imageModel

ImagePointTreeModel* Isis::CnetEditorWidget::m_imageModel
private

◆ m_imageTreeView

TreeView* Isis::CnetEditorWidget::m_imageTreeView
private

◆ m_mainSplitter

QSplitter* Isis::CnetEditorWidget::m_mainSplitter
private

Splitter.

Definition at line 208 of file CnetEditorWidget.h.

Referenced by createMainLayout(), nullify(), readSettings(), writeSettings(), and ~CnetEditorWidget().

◆ m_measureTableBox

QGroupBox* Isis::CnetEditorWidget::m_measureTableBox
private

Measure table box.

Definition at line 193 of file CnetEditorWidget.h.

Referenced by createMainLayout(), handleMeasureTableFilterCountsChanged(), nullify(), and ~CnetEditorWidget().

◆ m_measureTableModel

MeasureTableModel* Isis::CnetEditorWidget::m_measureTableModel
private

◆ m_measureTableView

TableView* Isis::CnetEditorWidget::m_measureTableView
private

◆ m_menuActions

QMap< QAction *, QList< QString > >* Isis::CnetEditorWidget::m_menuActions
private

QMap of menu actions.

Definition at line 210 of file CnetEditorWidget.h.

Referenced by createActions(), menuActions(), nullify(), and ~CnetEditorWidget().

◆ m_pointFilterWidget

QWidget* Isis::CnetEditorWidget::m_pointFilterWidget
private

Point filter widget.

Definition at line 197 of file CnetEditorWidget.h.

Referenced by createFilterArea(), nullify(), pointFilterWidget(), and ~CnetEditorWidget().

◆ m_pointModel

◆ m_pointTableBox

QGroupBox* Isis::CnetEditorWidget::m_pointTableBox
private

Point table box.

Definition at line 192 of file CnetEditorWidget.h.

Referenced by createMainLayout(), handlePointTableFilterCountsChanged(), nullify(), and ~CnetEditorWidget().

◆ m_pointTableModel

◆ m_pointTableView

TableView* Isis::CnetEditorWidget::m_pointTableView
private

◆ m_pointTreeView

TreeView* Isis::CnetEditorWidget::m_pointTreeView
private

◆ m_serialFilterWidget

QWidget* Isis::CnetEditorWidget::m_serialFilterWidget
private

Serial filter widget.

Definition at line 198 of file CnetEditorWidget.h.

Referenced by createFilterArea(), nullify(), serialFilterWidget(), and ~CnetEditorWidget().

◆ m_settingsPath

QString* Isis::CnetEditorWidget::m_settingsPath
private

Path to read/write settings.

Definition at line 213 of file CnetEditorWidget.h.

Referenced by createMeasureTableView(), createPointTableView(), nullify(), readSettings(), writeSettings(), and ~CnetEditorWidget().

◆ m_sortDialog

CnetEditorSortConfigDialog* Isis::CnetEditorWidget::m_sortDialog
private

Sorting dialog.

Definition at line 215 of file CnetEditorWidget.h.

Referenced by configSorting(), nullify(), and ~CnetEditorWidget().

◆ m_toolBarActions

QMap< QString, QList< QAction * > >* Isis::CnetEditorWidget::m_toolBarActions
private

QMap of tool bar actions.

Definition at line 211 of file CnetEditorWidget.h.

Referenced by createActions(), nullify(), toolBarActions(), and ~CnetEditorWidget().

◆ m_updatingSelection

bool Isis::CnetEditorWidget::m_updatingSelection
private

Updates selection.

Definition at line 179 of file CnetEditorWidget.h.

◆ m_workingVersion

QString* Isis::CnetEditorWidget::m_workingVersion
private

Working version.

Definition at line 181 of file CnetEditorWidget.h.

Referenced by nullify(), readSettings(), upgradeVersion(), and ~CnetEditorWidget().

◆ VERSION

const QString Isis::CnetEditorWidget::VERSION = "0.1"
staticprivate

Version.

Definition at line 182 of file CnetEditorWidget.h.

Referenced by upgradeVersion(), and writeSettings().


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