Isis 3 Developer 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. More... | |
void | setShowLabel (bool) |
Change the visibility of the display name associated with this target. More... | |
void | setSelected (bool) |
Change the selected state associated with this target. More... | |
Signals | |
void | propertyChanged (GuiCameraDisplayProperties *) |
void | supportAdded (Property) |
void | propertyChanged (DisplayProperties *) |
void | supportAdded (int) |
Public Member Functions | |
GuiCameraDisplayProperties (QString displayName, QObject *parent=NULL) | |
GuiCameraDisplayProperties constructor. More... | |
GuiCameraDisplayProperties (XmlStackedHandlerReader *xmlReader, QObject *parent=NULL) | |
GuiCameraDisplayProperties constructor. More... | |
virtual | ~GuiCameraDisplayProperties () |
destructor More... | |
void | addSupport (Property prop) |
Convert to Pvl for project files. More... | |
bool | supports (Property prop) |
Support may come later, please make sure you are connected to the supportAdded signal. More... | |
QVariant | getValue (Property prop) const |
Get a property's associated data. More... | |
void | save (QXmlStreamWriter &stream, const Project *project, FileName newProjectRoot) const |
Write the Gui Camera Display Properties out to an XML file. More... | |
void | fromPvl (const PvlObject &pvl) |
PvlObject | toPvl () const |
Convert to Pvl for project files. More... | |
void | addSupport (int property) |
Call this with every property you support, otherwise they will not communicate properly between widgets. More... | |
bool | supports (int property) |
Support may come later, please make sure you are connected to the supportAdded signal. More... | |
QVariant | getValue (int property) const |
Get a property's associated data. More... | |
void | setDisplayName (QString displayName) |
Sets display name. More... | |
QString | displayName () const |
Returns the display name. More... | |
Static Public Member Functions | |
static QColor | randomColor () |
Creates and returns a random color for the intial color of the footprint polygon. More... | |
Protected Member Functions | |
void | setValue (int prop, QVariant value) |
This is the generic mutator for properties. More... | |
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.
This is a list of properties and actions that are possible.
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) |
References None, randomColor(), setSelected(), and setShowLabel().
Isis::GuiCameraDisplayProperties::GuiCameraDisplayProperties | ( | XmlStackedHandlerReader * | xmlReader, |
QObject * | parent = NULL |
||
) |
GuiCameraDisplayProperties constructor.
References None, and Isis::XmlStackedHandlerReader::pushContentHandler().
|
virtual |
destructor
|
inherited |
Call this with every property you support, otherwise they will not communicate properly between widgets.
prop | The property you are adding support for |
References Isis::DisplayProperties::supportAdded(), and Isis::DisplayProperties::supports().
Referenced by Isis::ImageTreeWidgetItem::ImageTreeWidgetItem(), and Isis::MosaicSceneItem::MosaicSceneItem().
void Isis::GuiCameraDisplayProperties::addSupport | ( | Property | prop | ) |
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 s tores the target filename. Call this with every property you support, otherwise they will not communicate properly between widgets.
prop | The property you are adding support for |
References supportAdded(), and supports().
|
inherited |
Returns the display name.
Referenced by Isis::Directory::addCnetEditorView(), Isis::MosaicSceneItem::contextMenuEvent(), Isis::DisplayProperties::DisplayProperties(), Isis::ImageTreeWidgetItem::ImageTreeWidgetItem(), Isis::Shape::initFootprint(), Isis::Image::initFootprint(), Isis::MosaicSceneItem::MosaicSceneItem(), Isis::GuiCamera::operator==(), Isis::MosaicSceneItem::reproject(), Isis::DisplayProperties::save(), Isis::ControlDisplayProperties::save(), Isis::ShapeDisplayProperties::save(), save(), Isis::TargetBodyDisplayProperties::save(), Isis::SensorInfoWidget::SensorInfoWidget(), Isis::DisplayProperties::setDisplayName(), Isis::ExportControlNetWorkOrder::setupExecution(), Isis::TargetInfoWidget::TargetInfoWidget(), and Isis::DisplayProperties::toPvl().
|
inherited |
References Isis::DisplayProperties::setDisplayName().
Referenced by Isis::Shape::fromPvl(), and Isis::Image::fromPvl().
|
inherited |
Get a property's associated data.
prop | The property |
Referenced by Isis::MosaicSceneItem::color(), Isis::MosaicSceneItem::cubeDisplayChanged(), Isis::MosaicSceneItem::paint(), Isis::ImageListActionWorkOrder::qualifyString(), Isis::MosaicSceneItem::reproject(), Isis::ImageTreeWidgetItem::update(), and Isis::MosaicSceneItem::updateSelection().
QVariant Isis::GuiCameraDisplayProperties::getValue | ( | Property | prop | ) | const |
Get a property's associated data.
prop | The property |
|
signalinherited |
Referenced by Isis::DisplayProperties::setValue().
|
signal |
|
static |
Creates and returns a random color for the intial color of the footprint polygon.
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. |
References Isis::DisplayProperties::displayName(), and Isis::ReadWrite.
|
slot |
Change the color associated with this target.
newColor | is the color to associate with this target. |
|
inherited |
Sets display name.
displayName | Display name of the object. |
References Isis::DisplayProperties::displayName().
Referenced by Isis::DisplayProperties::fromPvl().
|
slot |
Change the selected state associated with this target.
newValue | is the new state associated with this target. |
References Selected.
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. |
References ShowLabel.
Referenced by GuiCameraDisplayProperties().
|
protectedinherited |
This is the generic mutator for properties.
Given a value, this will change it and emit propertyChanged if its different and supported.
References Isis::DisplayProperties::propertyChanged(), 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().
|
signalinherited |
Referenced by Isis::DisplayProperties::addSupport().
|
signal |
Referenced by addSupport().
|
inherited |
Support may come later, please make sure you are connected to the supportAdded signal.
Referenced by Isis::DisplayProperties::addSupport(), Isis::ImageList::allSupport(), Isis::DisplayProperties::setValue(), and Isis::ImageTreeWidgetItem::update().
bool Isis::GuiCameraDisplayProperties::supports | ( | Property | prop | ) |
Support may come later, please make sure you are connected to the supportAdded signal.
Referenced by addSupport().
|
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.
References Isis::DisplayProperties::displayName(), and Isis::ReadWrite.
Referenced by Isis::Shape::toPvl(), and Isis::Image::toPvl().