21class QeDmsLabel :
public QLabel {
43 explicit QeDmsLabel(QWidget *parent = Q_NULLPTR);
45 double getRadians(){
return m_radians; };
46 int getPrecision(){
return m_precision; };
60 void setRadians(
double newValue){this->m_radians = newValue; emit
radiansChanged(newValue); this->update();};
61 void setPrecision(
int newValue){this->m_precision = newValue; emit
precisionChanged(newValue); this->update();};
65 double m_radians = 0.0;
double radians
Value to represent in radians.
Definition QeDmsLabel.hpp:28
void radiansChanged(double newValue)
Indicates that the radians value has been changed.
int precision
Precision used in the subsecond section of the label.
Definition QeDmsLabel.hpp:37
void precisionChanged(int newValue)
Indicates the precision configuration has been changed.