File failed to load: https://isis.astrogeology.usgs.gov/9.0.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
ControlDisplayProperties.h
1#ifndef ControlDisplayProperties_H
2#define ControlDisplayProperties_H
3
9
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include <QObject>
13#include <QMetaType> // required since we're adding to QVariant
14#include <QColor> // This is required since QColor is in a slot
15
16#include "DisplayProperties.h"
17
18class QAction;
19class QXmlStreamWriter;
20
21namespace Isis {
22 class FileName;
23 class Project;
24 class Pvl;
25 class PvlObject;
26
58 Q_OBJECT
59 public:
63 enum Property {
65 None = 0,
67 Color = 1,
72 };
73
74
75 ControlDisplayProperties(QString displayName, QObject *parent = NULL);
77
78// void fromPvl(const PvlObject &pvl);
79// PvlObject toPvl() const;
80
81 void addSupport(Property prop);
82 bool supports(Property prop);
83
84 QVariant getValue(Property prop) const;
85
86 static QColor randomColor();
87
88 void save(QXmlStreamWriter &stream, const Project *project, FileName newProjectRoot) const;
89
90 signals:
91 void propertyChanged(ControlDisplayProperties *);
92 void supportAdded(Property);
93
94 public slots:
95 void setColor(QColor newColor);
96 void setShowLabel(bool);
97 void setSelected(bool);
98
99 private slots:
100 void toggleShowLabel();
101
102 private:
105
106 void setValue(Property prop, QVariant value);
108
115
121 };
122}
123
125
126#endif
This is the GUI communication mechanism for cubes.
Property m_propertiesUsed
This indicated whether any widgets with this DisplayProperties is using a particular property.
void setColor(QColor newColor)
Change the color associated with this cube.
static QColor randomColor()
Creates and returns a random color for the intial color of the footprint polygon.
ControlDisplayProperties(QString displayName, QObject *parent=NULL)
ControlDisplayProperties constructor.
void setValue(Property prop, QVariant value)
This is the generic mutator for properties.
QVariant getValue(Property prop) const
Get a property's associated data.
bool supports(Property prop)
Support may come later, please make sure you are connected to the supportAdded signal.
void toggleShowLabel()
Change the visibility of the display name.
void addSupport(Property prop)
Call this with every property you support, otherwise they will not communicate properly between widge...
static QList< ControlDisplayProperties * > senderToData(QObject *sender)
This is for the slots that have a list of display properties as associated data.
Property
This is a list of properties and actions that are possible.
@ None
Null display property for bit-flag purposes.
@ Color
The color of the control net, default randomized (QColor)
@ ShowLabel
True if the control net should show its display name (bool)
@ Selected
The selection state of this control net (bool)
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...
void setShowLabel(bool)
Change the visibility of the display name associated with this cube.
void setSelected(bool)
Change the selected state associated with this cube.
QString displayName() const
Returns the display name.
DisplayProperties(QString displayName, QObject *parent=NULL)
DisplayProperties constructor.
File name manipulation and expansion.
Definition FileName.h:100
The main project for ipce.
Definition Project.h:287
Container for cube-like labels.
Definition Pvl.h:119
Contains Pvl Groups and Pvl Objects.
Definition PvlObject.h:61
This is free and unencumbered software released into the public domain.
This is free and unencumbered software released into the public domain.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16