QGCParamSlider.h 1.9 KB
Newer Older
1 2 3 4
#ifndef QGCPARAMSLIDER_H
#define QGCPARAMSLIDER_H

#include <QWidget>
5
#include <QAction>
6 7
#include <QtDesigner/QDesignerExportWidget>

8 9
#include "QGCToolWidgetItem.h"

10 11 12
namespace Ui
{
class QGCParamSlider;
13 14
}

pixhawk's avatar
pixhawk committed
15
class QGCParamSlider : public QGCToolWidgetItem
16 17 18 19 20 21 22
{
    Q_OBJECT

public:
    explicit QGCParamSlider(QWidget *parent = 0);
    ~QGCParamSlider();

23 24 25
public slots:
    void startEditMode();
    void endEditMode();
26 27
    /** @brief Send the parameter to the MAV */
    void sendParameter();
pixhawk's avatar
pixhawk committed
28 29 30
    /** @brief Set the slider value as parameter value */
    void setSliderValue(int sliderValue);
    /** @brief Update the UI with the new parameter value */
31
    void setParameterValue(int uas, int component, int paramCount, int paramIndex, QString parameterName, const QVariant value);
lm's avatar
lm committed
32 33
    void writeSettings(QSettings& settings);
    void readSettings(const QSettings& settings);
34
    void refreshParamList();
35 36 37
    void setActiveUAS(UASInterface *uas);
    void selectComponent(int componentIndex);
    void selectParameter(int paramIndex);
38
    /** @brief Set a double parameter value */
39
    void setParamValue(double value);
40 41
    /** @brief Set an integer parameter value */
    void setParamValue(int value);
42 43 44 45

protected slots:
    /** @brief Request the parameter of this widget from the MAV */
    void requestParameter();
46

47
protected:
48
    QString parameterName;         ///< Key/Name of the parameter
49
    QVariant parameterValue;          ///< Value of the parameter
50 51 52 53
    double parameterScalingFactor; ///< Factor to scale the parameter between slider and true value
    float parameterMin;
    float parameterMax;
    int component;                 ///< ID of the MAV component to address
pixhawk's avatar
pixhawk committed
54
    double scaledInt;
55 56
    void changeEvent(QEvent *e);

pixhawk's avatar
pixhawk committed
57 58 59 60 61
    /** @brief Convert scaled int to float */

    float scaledIntToFloat(int sliderValue);
    int floatToScaledInt(float value);

62 63 64 65 66
private:
    Ui::QGCParamSlider *ui;
};

#endif // QGCPARAMSLIDER_H