File failed to load: https://isis.astrogeology.usgs.gov/6.0.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
TargetBodyDisplayProperties.h
1 #ifndef TargetBodyDisplayProperties_H
2 #define TargetBodyDisplayProperties_H
3 
10 /* SPDX-License-Identifier: CC0-1.0 */
11 
12 #include <QColor> // This is required since QColor is in a slot
13 #include <QMetaType> // required since we're adding to QVariant
14 #include <QObject>
15 
16 #include "DisplayProperties.h"
17 #include "XmlStackedHandler.h"
18 
19 class QAction;
20 class QXmlStreamWriter;
21 
22 namespace Isis {
23  class FileName;
24  class Project;
25  class Pvl;
26  class PvlObject;
27  class XmlStackedHandlerReader;
28 
64  Q_OBJECT
65  public:
69  enum Property {
71  None = 0,
73  Color = 1,
75  Selected = 2,
77  ShowLabel = 16,
78  };
79 
80 
81  TargetBodyDisplayProperties(QString displayName, QObject *parent = NULL);
84 
85 // void fromPvl(const PvlObject &pvl);
86 // PvlObject toPvl() const;
87 
88  void addSupport(Property prop);
89  bool supports(Property prop);
90 
91  QVariant getValue(Property prop) const;
92 
93  static QColor randomColor();
94 
95  void save(QXmlStreamWriter &stream, const Project *project, FileName newProjectRoot) const;
96 
97  signals:
98  void propertyChanged(TargetBodyDisplayProperties *);
99  void supportAdded(Property);
100 
101  public slots:
102  void setColor(QColor newColor);
103  void setShowLabel(bool);
104  void setSelected(bool);
105 
106  private slots:
107  void toggleShowLabel();
108 
109  private:
117  class XmlHandler : public XmlStackedHandler {
118  public:
119  XmlHandler(TargetBodyDisplayProperties *displayProperties);
120 
121  virtual bool startElement(const QString &namespaceURI, const QString &localName,
122  const QString &qName, const QXmlAttributes &atts);
123 
124  virtual bool characters(const QString &ch);
125 
126  virtual bool endElement(const QString &namespaceURI, const QString &localName,
127  const QString &qName);
128 
129  private:
130  Q_DISABLE_COPY(XmlHandler);
131 
132  TargetBodyDisplayProperties *m_displayProperties;
133  QString m_hexData;
134  };
135 
136  private:
139 
140  void setValue(Property prop, QVariant value);
142 
149 
155  };
156 }
157 
159 
160 #endif
Isis::Color
This class is designed to serialize QColor in a human-readable form.
Definition: Color.h:26
Isis::TargetBodyDisplayProperties
This is the GUI communication mechanism for target body objects.
Definition: TargetBodyDisplayProperties.h:63
QList
This is free and unencumbered software released into the public domain.
Definition: BoxcarCachingAlgorithm.h:13
Isis::TargetBodyDisplayProperties::getValue
QVariant getValue(Property prop) const
Get a property's associated data.
Definition: TargetBodyDisplayProperties.cpp:119
Isis::TargetBodyDisplayProperties::TargetBodyDisplayProperties
TargetBodyDisplayProperties(QString displayName, QObject *parent=NULL)
TargetBodyDisplayProperties constructor.
Definition: TargetBodyDisplayProperties.cpp:24
Isis::FileName
File name manipulation and expansion.
Definition: FileName.h:100
Isis::TargetBodyDisplayProperties::setColor
void setColor(QColor newColor)
Change the color associated with this target.
Definition: TargetBodyDisplayProperties.cpp:176
Isis::DisplayProperties
Definition: DisplayProperties.h:34
Isis::TargetBodyDisplayProperties::senderToData
static QList< TargetBodyDisplayProperties * > senderToData(QObject *sender)
Return display properties associated with a slot.
Definition: TargetBodyDisplayProperties.cpp:329
Isis::TargetBodyDisplayProperties::~TargetBodyDisplayProperties
virtual ~TargetBodyDisplayProperties()
The destructor.
Definition: TargetBodyDisplayProperties.cpp:55
Isis::TargetBodyDisplayProperties::ShowLabel
@ ShowLabel
True if the control net should show its display name (bool)
Definition: TargetBodyDisplayProperties.h:77
Isis::XmlStackedHandlerReader
Manage a stack of content handlers for reading XML files.
Definition: XmlStackedHandlerReader.h:30
Isis::TargetBodyDisplayProperties::Selected
@ Selected
The selection state of this control net (bool)
Definition: TargetBodyDisplayProperties.h:75
Isis::TargetBodyDisplayProperties::setSelected
void setSelected(bool)
Change the selected state associated with this target.
Definition: TargetBodyDisplayProperties.cpp:186
Isis::Project
The main project for ipce.
Definition: Project.h:289
Isis::TargetBodyDisplayProperties::save
void save(QXmlStreamWriter &stream, const Project *project, FileName newProjectRoot) const
Saves this object to an XML file.
Definition: TargetBodyDisplayProperties.cpp:152
Isis::TargetBodyDisplayProperties::m_propertyValues
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 Q...
Definition: TargetBodyDisplayProperties.h:154
Isis::TargetBodyDisplayProperties::Property
Property
This is a list of properties and actions that are possible.
Definition: TargetBodyDisplayProperties.h:69
Isis::DisplayProperties::displayName
QString displayName() const
Returns the display name.
Definition: DisplayProperties.cpp:88
Isis::TargetBodyDisplayProperties::XmlHandler::XmlHandler
XmlHandler(TargetBodyDisplayProperties *displayProperties)
Constructor for the XmlHandler class.
Definition: TargetBodyDisplayProperties.cpp:228
Isis::TargetBodyDisplayProperties::None
@ None
Null display property for bit-flag purposes.
Definition: TargetBodyDisplayProperties.h:71
Isis::TargetBodyDisplayProperties::XmlHandler
Process an XML file containing information about a WorkOrder.
Definition: TargetBodyDisplayProperties.h:117
Isis::TargetBodyDisplayProperties::XmlHandler::characters
virtual bool characters(const QString &ch)
This implementation of a virtual function calls QXmlDefaultHandler::characters(QString &ch) which in ...
Definition: TargetBodyDisplayProperties.cpp:269
Isis::TargetBodyDisplayProperties::randomColor
static QColor randomColor()
Creates and returns a random color for the initial color of the footprint polygon.
Definition: TargetBodyDisplayProperties.cpp:129
Isis::TargetBodyDisplayProperties::setValue
void setValue(Property prop, QVariant value)
This is the generic mutator for properties.
Definition: TargetBodyDisplayProperties.cpp:309
Isis::TargetBodyDisplayProperties::addSupport
void addSupport(Property prop)
Call this with every property you support, otherwise they will not communicate properly between widge...
Definition: TargetBodyDisplayProperties.cpp:95
Isis::TargetBodyDisplayProperties::supports
bool supports(Property prop)
Support for this may come later.
Definition: TargetBodyDisplayProperties.cpp:108
Isis::XmlStackedHandler
XML Handler that parses XMLs in a stack-oriented way.
Definition: XmlStackedHandler.h:118
QMap< int, QVariant >
Isis::TargetBodyDisplayProperties::XmlHandler::endElement
virtual bool endElement(const QString &namespaceURI, const QString &localName, const QString &qName)
The XML reader invokes this method at the end of every element in the XML document.
Definition: TargetBodyDisplayProperties.cpp:288
Isis::TargetBodyDisplayProperties::m_propertiesUsed
Property m_propertiesUsed
This indicated whether any widgets with this DisplayProperties is using a particular property.
Definition: TargetBodyDisplayProperties.h:148
Isis::TargetBodyDisplayProperties::XmlHandler::startElement
virtual bool startElement(const QString &namespaceURI, const QString &localName, const QString &qName, const QXmlAttributes &atts)
This overrides the parent startElement function in XmlStackedHandler so the parser can handle an XML ...
Definition: TargetBodyDisplayProperties.cpp:243
QObject
QAction
Isis::TargetBodyDisplayProperties::setShowLabel
void setShowLabel(bool)
Change the visibility of the display name associated with this target.
Definition: TargetBodyDisplayProperties.cpp:196
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Isis::TargetBodyDisplayProperties::toggleShowLabel
void toggleShowLabel()
Change the visibility of the display name.
Definition: TargetBodyDisplayProperties.cpp:208
Q_DECLARE_METATYPE
Q_DECLARE_METATYPE(Isis::PlotWindow *)
We have plot windows as QVariant data types, so here it's enabled.

U.S. Department of the Interior | U.S. Geological Survey
ISIS | Privacy & Disclaimers | Astrogeology Research Program
To contact us, please post comments and questions on the USGS Astrogeology Discussion Board
To report a bug, or suggest a feature go to: ISIS Github
File Modified: 07/13/2023 15:17:22