| 158 | return value; |
| 159 | } |
| 160 | QVariant getDouble(QWidget* parent, const QString& title, const QString& label, |
| 161 | double value = 0, double min = -2147483647, double max = 2147483647, int decimals = 1) override { |
| 162 | Q_UNUSED(parent); |
| 163 | Q_UNUSED(title); |
| 164 | Q_UNUSED(label); |
| 165 | Q_UNUSED(min); |
| 166 | Q_UNUSED(max); |
| 167 | Q_UNUSED(decimals); |
| 168 | return value; |
| 169 | } |
| 170 | QVariant getItem(QWidget* parent, const QString& title, const QString& label, |
| 171 | const QStringList& items, int current = 0, bool editable = true) override { |
| 172 | Q_UNUSED(parent); |