Main window of the Angle Measure plug-in.
|
|
void | visibleChanged (bool) |
| |
|
| StelDialog (QString dialogName="Default", QObject *parent=Q_NULLPTR) |
| |
|
virtual void | styleChanged () |
| | Notify that the application style changed.
|
| |
|
bool | visible () const |
| | Returns true if the dialog contents have been constructed and are currently shown.
|
| |
| void | askColor () |
| | To be called by a connected QToolButton with a color background. More...
|
| |
|
void | enableKineticScrolling (bool b) |
| | enable kinetic scrolling. This should be connected to StelApp's StelGui signal flagUseKineticScrollingChanged.
|
| |
|
void | handleFontChanged () |
| | connect from StelApp to handle font and font size changes.
|
| |
|
static void | connectCheckBox (QAbstractButton *checkBox, const QString &actionName) |
| | Helper function to connect a checkbox to the StelAction with the specified name.
|
| |
|
static void | connectCheckBox (QAbstractButton *checkBox, StelAction *action) |
| | Helper function to connect a checkbox to the given StelAction.
|
| |
| static void | connectIntProperty (QLineEdit *lineEdit, const QString &propName) |
| | Helper function to connect a QLineEdit to an integer StelProperty. More...
|
| |
| static void | connectIntProperty (QSpinBox *spinBox, const QString &propName) |
| | Helper function to connect a QSpinBox to an integer StelProperty. More...
|
| |
| static void | connectIntProperty (QComboBox *comboBox, const QString &propName) |
| | Helper function to connect a QComboBox to an integer StelProperty. More...
|
| |
| static void | connectIntProperty (QSlider *slider, const QString &propName, int minValue, int maxValue) |
| | Helper function to connect a QSlider to an double or float StelProperty. More...
|
| |
| static void | connectDoubleProperty (QDoubleSpinBox *spinBox, const QString &propName) |
| | Helper function to connect a QDoubleSpinBox to an double or float StelProperty. More...
|
| |
| static void | connectDoubleProperty (QSlider *slider, const QString &propName, double minValue, double maxValue) |
| | Helper function to connect a QSlider to an double or float StelProperty. More...
|
| |
| static void | connectStringProperty (QComboBox *comboBox, const QString &propName) |
| | Helper function to connect a QComboBox to an QString StelProperty. More...
|
| |
| static void | connectBoolProperty (QAbstractButton *checkBox, const QString &propName) |
| | Helper function to connect a checkbox to a bool StelProperty. More...
|
| |
| static void | connectBoolProperty (QGroupBox *checkBox, const QString &propName) |
| | Helper function to connect a groupbox to a bool StelProperty. More...
|
| |
|
QWidget * | dialog |
| | The main dialog.
|
| |
|
class CustomProxy * | proxy |
| |
|
QString | dialogName |
| | The name should be set in derived classes' constructors and can be used to store and retrieve the panel locations.
|
| |
| QList< QWidget * > | kineticScrollingList |
| | A list of widgets where kinetic scrolling can be activated or deactivated The list must be filled once, in the constructor or init() of fillDialog() etc. More...
|
| |
|
bool | visible |
| |