1 #ifndef ShapeDisplayProperties_H 2 #define ShapeDisplayProperties_H 30 #include "DisplayProperties.h" 31 #include "XmlStackedHandler.h" 34 class QXmlStreamWriter;
41 class XmlStackedHandlerReader;
106 void save(QXmlStreamWriter &stream,
const Project *project,
FileName newProjectRoot)
const;
133 virtual bool startElement(
const QString &namespaceURI,
const QString &localName,
134 const QString &qName,
const QXmlAttributes &atts);
138 virtual bool endElement(
const QString &namespaceURI,
const QString &localName,
139 const QString &qName);
This class is designed to serialize QColor in a human-readable form.
The main project for ipce.
File name manipulation and expansion.
QVariant getValue(Property prop) const
Get a property's associated data.
bool supports(Property prop)
Support for this may come later.
Property m_propertiesUsed
This indicated whether any widgets with this DisplayProperties is using a particular property...
virtual ~ShapeDisplayProperties()
The destructor.
This class is used for processing an XML file containing information about a WorkOrder.
QString displayName() const
Returns the display name.
Q_DECLARE_METATYPE(Isis::Cube *)
This allows Cube *'s to be stored in a QVariant.
This is the GUI communication mechanism for shape objects.
static QColor randomColor()
Creates and returns a random color for the initial color of the footprint polygon.
void setShowLabel(bool)
Change the visibility of the display name associated with this shape.
void toggleShowLabel()
Change the visibility of the display name.
True if the control net should show its display name (bool)
void setSelected(bool)
Change the selected state associated with this shape.
XML Handler that parses XMLs in a stack-oriented way.
virtual bool characters(const QString &ch)
This is called when the XML processor has parsed a chunk of character data.
void setColor(QColor newColor)
Change the color associated with this shape.
void save(QXmlStreamWriter &stream, const Project *project, FileName newProjectRoot) const
Saves this object to an XML file.
void addSupport(Property prop)
Call this with every property you support, otherwise they will not communicate properly between widge...
void setValue(Property prop, QVariant value)
This is the generic mutator for properties.
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 ...
Null display property for bit-flag purposes.
Namespace for ISIS/Bullet specific routines.
ShapeDisplayProperties(QString displayName, QObject *parent=NULL)
ShapeDisplayProperties constructor.
The selection state of this control net (bool)
Property
This is a list of properties and actions that are possible.
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 ...
Manage a stack of content handlers for reading XML files.
static QList< ShapeDisplayProperties * > senderToData(QObject *sender)
Get the display properties from a slot.
XmlHandler(ShapeDisplayProperties *displayProperties)
Constructor for the XmlHandler class.
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.