|
void | setVisible (bool) override |
| On the first call with "true" populates the window contents.
|
|
virtual void | styleChanged (const QString &style) |
| Apply application style change.
|
|
virtual void | retranslate ()=0 |
| Retranslate the content of the dialog. More...
|
|
virtual void | setVisible (bool) |
| On the first call with "true" populates the window contents.
|
|
virtual void | close () |
| Closes the window (the window widget is not deleted, just not visible).
|
|
void | handleMovedTo (QPoint newPos) |
| Adds dialog location to config.ini; should be connected in createDialogContent()
|
|
virtual void | handleDialogSizeChanged (QSizeF size) |
| Stores dialog sizes into config.ini; should be connected from the proxy. More...
|
|
|
void | visibleChanged (bool) |
|
virtual void | createDialogContent ()=0 |
| Initialize the dialog widgets and connect the signals/slots.
|
|
void | connectColorButton (QToolButton *button, QString propertyName, QString iniName, QString moduleName="") |
| Prepare a QToolButton so that it can receive and handle askColor() connections properly. More...
|
|
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 (AngleSpinBox *spinBox, const QString &propName) |
| Helper function to connect an AngleSpinBox to a double or float StelProperty representing decimal degrees. 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 a QString StelProperty. More...
|
|
static void | connectStringProperty (QLineEdit *lineEdit, const QString &propName) |
| Helper function to connect a QLineEdit to a 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...
|
|
bool | visible |
|
for windows NOT embedded in the graphics scene. Some GUI elements like QWebEngineView don't like to be embedded into our MainView. Another motivation may be to have windows on another screen.
The dialog behaves almost like