Isis 3 Programmer Reference
|
The GUI communication mechanism for target body objects. More...
#include <GuiCameraDisplayProperties.h>
Public Types | |
enum | Property { None = 0 , Color = 1 , Selected = 2 , ShowLabel = 16 } |
This is a list of properties and actions that are possible. More... | |
Public Slots | |
void | setColor (QColor newColor) |
Change the color associated with this target. | |
void | setShowLabel (bool) |
Change the visibility of the display name associated with this target. | |
void | setSelected (bool) |
Change the selected state associated with this target. | |
Signals | |
void | propertyChanged (GuiCameraDisplayProperties *) |
void | supportAdded (Property) |
void | propertyChanged (DisplayProperties *) |
void | supportAdded (int) |
Public Member Functions | |
GuiCameraDisplayProperties (QString displayName, QObject *parent=NULL) | |
GuiCameraDisplayProperties constructor. | |
virtual | ~GuiCameraDisplayProperties () |
destructor | |
void | addSupport (Property prop) |
Call this with every property you support, otherwise they will not communicate properly between widgets. | |
bool | supports (Property prop) |
Support may come later, please make sure you are connected to the supportAdded signal. | |
QVariant | getValue (Property prop) const |
Get a property's associated data. | |
void | save (QXmlStreamWriter &stream, const Project *project, FileName newProjectRoot) const |
Write the Gui Camera Display Properties out to an XML file. | |
void | fromPvl (const PvlObject &pvl) |
PvlObject | toPvl () const |
Convert to Pvl for project files. | |
void | addSupport (int property) |
Call this with every property you support, otherwise they will not communicate properly between widgets. | |
bool | supports (int property) |
Support may come later, please make sure you are connected to the supportAdded signal. | |
QVariant | getValue (int property) const |
Get a property's associated data. | |
void | setDisplayName (QString displayName) |
Sets display name. | |
QString | displayName () const |
Returns the display name. | |
Static Public Member Functions | |
static QColor | randomColor () |
Creates and returns a random color for the intial color of the footprint polygon. | |
Protected Member Functions | |
void | setValue (int prop, QVariant value) |
This is the generic mutator for properties. | |
Private Slots | |
void | toggleShowLabel () |
Change the visibility of the display name. | |
Private Member Functions | |
GuiCameraDisplayProperties (const GuiCameraDisplayProperties &) | |
GuiCameraDisplayProperties & | operator= (const GuiCameraDisplayProperties &) |
void | setValue (Property prop, QVariant value) |
This is the generic mutator for properties. | |
Q_DISABLE_COPY (DisplayProperties) | |
Static Private Member Functions | |
static QList< GuiCameraDisplayProperties * > | senderToData (QObject *sender) |
This is for the slots that have a list of display properties as associated data. | |
Private Attributes | |
Property | m_propertiesUsed |
This indicates whether any widgets with this DisplayProperties is using a particular property. | |
QMap< int, QVariant > * | m_propertyValues |
This is a map from Property to value – the reason I use an int is so Qt knows how to serialize this QMap into binary data. | |
QString | m_displayName |
This is the display name. | |
The GUI communication mechanism for target body objects.
This class is the connector between various GUI interfaces for target body objects. We use this to communicate shared properties that various widgets need to know/should react to in a generic way.
This is how this class is supposed to "connect" widgets:
widgetA widgetB widgetC | | | ---—DisplayProperties ----—
When a user selects a target in widgetA, widgetB and widgetC now have a chance to also select the same target. This applies to all shared properties. Some of the properties are actions - such as ?????. This also allows a widget with no ??? (such as a list) to have an option to ???? (if any of the widgets support it*) and have that option work. There is no state associated with ????? - it's an action connected to a signal.
The proper way to detect a target going away is to connect to the destroyed signal (from the parent QObject). Once that is emitted you cannot call any methods on this object.
2015-05-27 Ken Edmundson - Creation.
2016-06-08 Tyler Wilson - Added documentation to many of the member functions, and cleaned up the formatting. Fixes #3997.
Definition at line 74 of file GuiCameraDisplayProperties.h.
This is a list of properties and actions that are possible.
Definition at line 80 of file GuiCameraDisplayProperties.h.
Isis::GuiCameraDisplayProperties::GuiCameraDisplayProperties | ( | QString | displayName, |
QObject * | parent = NULL ) |
GuiCameraDisplayProperties constructor.
This sets default values and constructs the object pointer.
displayName | The filename (fully expanded) of the object. |
parent | Qt parent object (this is destroyed when parent is destroyed) |
Definition at line 23 of file GuiCameraDisplayProperties.cpp.
References m_propertiesUsed, m_propertyValues, None, randomColor(), setSelected(), setShowLabel(), and setValue().
|
virtual |
destructor
Definition at line 41 of file GuiCameraDisplayProperties.cpp.
|
inherited |
Call this with every property you support, otherwise they will not communicate properly between widgets.
prop | The property you are adding support for |
Definition at line 99 of file DisplayProperties.cpp.
References Isis::DisplayProperties::m_propertiesUsed, and Isis::DisplayProperties::supports().
Referenced by Isis::ImageTreeWidgetItem::ImageTreeWidgetItem(), and Isis::MosaicSceneItem::MosaicSceneItem().
void Isis::GuiCameraDisplayProperties::addSupport | ( | Property | prop | ) |
Call this with every property you support, otherwise they will not communicate properly between widgets.
prop | The property you are adding support for |
Definition at line 82 of file GuiCameraDisplayProperties.cpp.
References m_propertiesUsed, and supports().
|
inherited |
Returns the display name.
Definition at line 79 of file DisplayProperties.cpp.
References Isis::DisplayProperties::m_displayName.
Referenced by Isis::Directory::addCnetEditorView(), Isis::MosaicSceneItem::contextMenuEvent(), Isis::DisplayProperties::DisplayProperties(), Isis::TargetInfoWidget::errorMsg(), Isis::Image::initFootprint(), Isis::Shape::initFootprint(), Isis::MosaicSceneItem::MosaicSceneItem(), Isis::GuiCamera::operator==(), Isis::MosaicSceneItem::reproject(), Isis::DisplayProperties::save(), save(), Isis::ShapeDisplayProperties::save(), Isis::TargetBodyDisplayProperties::save(), Isis::DisplayProperties::setDisplayName(), Isis::ExportControlNetWorkOrder::setupExecution(), Isis::TargetInfoWidget::TargetInfoWidget(), and Isis::DisplayProperties::toPvl().
|
inherited |
Definition at line 45 of file DisplayProperties.cpp.
|
inherited |
Get a property's associated data.
prop | The property |
Definition at line 138 of file DisplayProperties.cpp.
References Isis::DisplayProperties::m_propertyValues.
Referenced by Isis::ImageList::applyAlphas(), Isis::MosaicSceneItem::cubeDisplayChanged(), Isis::MosaicControlNetTool::displayConnectivity(), Isis::MosaicSceneItem::paint(), Isis::MosaicSceneItem::reproject(), Isis::ImageList::saveAndApplyAlpha(), Isis::ImageList::saveAndApplyColor(), Isis::ImageList::saveAndApplyRandomColor(), Isis::ImageList::saveAndToggleShowDNs(), Isis::ImageList::saveAndToggleShowFill(), Isis::ImageList::saveAndToggleShowLabel(), Isis::ImageList::saveAndToggleShowOutline(), Isis::MosaicSceneItem::updateChildren(), and Isis::MosaicSceneItem::updateSelection().
QVariant Isis::GuiCameraDisplayProperties::getValue | ( | Property | prop | ) | const |
Get a property's associated data.
prop | The property |
Definition at line 106 of file GuiCameraDisplayProperties.cpp.
References m_propertyValues.
Referenced by toggleShowLabel().
|
static |
Creates and returns a random color for the intial color of the footprint polygon.
Definition at line 116 of file GuiCameraDisplayProperties.cpp.
Referenced by GuiCameraDisplayProperties().
void Isis::GuiCameraDisplayProperties::save | ( | QXmlStreamWriter & | stream, |
const Project * | project, | ||
FileName | newProjectRoot ) const |
Write the Gui Camera Display Properties out to an XML file.
stream | The output data stream. |
project | Not used in this function. |
newProjectRoot | Not used in this function. |
Definition at line 139 of file GuiCameraDisplayProperties.cpp.
References Isis::DisplayProperties::displayName(), and m_propertyValues.
|
staticprivate |
This is for the slots that have a list of display properties as associated data.
This gets that list out of the data.
senderObj | The caller object containing a list of the display properties. |
Definition at line 227 of file GuiCameraDisplayProperties.cpp.
Referenced by toggleShowLabel().
|
slot |
Change the color associated with this target.
newColor | is the color to associate with this target. |
Definition at line 162 of file GuiCameraDisplayProperties.cpp.
References setValue().
|
inherited |
Sets display name.
displayName | Display name of the object. |
Definition at line 88 of file DisplayProperties.cpp.
References Isis::DisplayProperties::displayName(), and Isis::DisplayProperties::m_displayName.
|
slot |
Change the selected state associated with this target.
newValue | is the new state associated with this target. |
Definition at line 171 of file GuiCameraDisplayProperties.cpp.
References Selected, and setValue().
Referenced by GuiCameraDisplayProperties().
|
slot |
Change the visibility of the display name associated with this target.
newValue | Shows/hides the display name of the associated target. |
Definition at line 180 of file GuiCameraDisplayProperties.cpp.
References setValue(), and ShowLabel.
Referenced by GuiCameraDisplayProperties(), and toggleShowLabel().
|
protectedinherited |
This is the generic mutator for properties.
Given a value, this will change it and emit propertyChanged if its different and supported.
Definition at line 122 of file DisplayProperties.cpp.
References Isis::DisplayProperties::m_propertyValues, and Isis::DisplayProperties::supports().
Referenced by Isis::ImageDisplayProperties::ImageDisplayProperties(), Isis::ImageDisplayProperties::setColor(), Isis::ImageDisplayProperties::setSelected(), Isis::ImageDisplayProperties::setShowDNs(), Isis::ImageDisplayProperties::setShowFill(), Isis::ImageDisplayProperties::setShowLabel(), and Isis::ImageDisplayProperties::setShowOutline().
|
private |
This is the generic mutator for properties.
Given a value, this will change it and emit propertyChanged if its different and supported.
prop | The key into the m_propertyValues QMap <int, QVariant> |
value | The value we want to change to. |
Definition at line 211 of file GuiCameraDisplayProperties.cpp.
References m_propertyValues, and supports().
Referenced by GuiCameraDisplayProperties(), setColor(), setSelected(), and setShowLabel().
|
inherited |
Support may come later, please make sure you are connected to the supportAdded signal.
Definition at line 113 of file DisplayProperties.cpp.
References Isis::DisplayProperties::m_propertiesUsed.
Referenced by Isis::DisplayProperties::addSupport(), Isis::ImageList::allSupport(), and Isis::DisplayProperties::setValue().
bool Isis::GuiCameraDisplayProperties::supports | ( | Property | prop | ) |
Support may come later, please make sure you are connected to the supportAdded signal.
Definition at line 96 of file GuiCameraDisplayProperties.cpp.
References m_propertiesUsed.
Referenced by addSupport(), and setValue().
|
privateslot |
Change the visibility of the display name.
This should only be connected to by an action with a list of displays as its data. This synchronizes all of the values where at least one is guaranteed to be toggled.
Definition at line 190 of file GuiCameraDisplayProperties.cpp.
References getValue(), senderToData(), setShowLabel(), and ShowLabel.
|
inherited |
Convert to Pvl for project files.
This stores all of the data associated with all of the properties (but not what is supported). This also stores the cube filename.
Definition at line 59 of file DisplayProperties.cpp.
References Isis::DisplayProperties::displayName(), and Isis::DisplayProperties::m_propertyValues.
Referenced by Isis::Image::toPvl(), and Isis::Shape::toPvl().
|
privateinherited |
This is the display name.
Definition at line 68 of file DisplayProperties.h.
Referenced by Isis::DisplayProperties::displayName(), Isis::DisplayProperties::DisplayProperties(), and Isis::DisplayProperties::setDisplayName().
|
private |
This indicates whether any widgets with this DisplayProperties is using a particular property.
This helps others who can set but not display know whether they should give the option to set.
Definition at line 131 of file GuiCameraDisplayProperties.h.
Referenced by addSupport(), GuiCameraDisplayProperties(), and supports().
|
private |
This is a map from Property to value – the reason I use an int is so Qt knows how to serialize this QMap into binary data.
Definition at line 137 of file GuiCameraDisplayProperties.h.
Referenced by getValue(), GuiCameraDisplayProperties(), save(), and setValue().