Skip to content
QGCParamSlider.h 2.05 KiB
Newer Older
#ifndef QGCPARAMSLIDER_H
#define QGCPARAMSLIDER_H

#include <QWidget>
#include <QtDesigner/QDesignerExportWidget>

namespace Ui
{
class QGCParamSlider;
pixhawk's avatar
pixhawk committed
class QGCParamSlider : public QGCToolWidgetItem
{
    Q_OBJECT

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

public slots:
    void startEditMode();
    void endEditMode();
    /** @brief Send the parameter to the MAV */
    void sendParameter();
pixhawk's avatar
pixhawk committed
    /** @brief Set the slider value as parameter value */
    void setSliderValue(int sliderValue);
    /** @brief Update the UI with the new parameter value */
    void setParameterValue(int uas, int component, int paramCount, int paramIndex, QString parameterName, const QVariant value);
lm's avatar
lm committed
    void writeSettings(QSettings& settings);
    void readSettings(const QSettings& settings);
    void setActiveUAS(UASInterface *uas);
    void selectComponent(int componentIndex);
    void selectParameter(int paramIndex);
    /** @brief Set a double parameter value */
    /** @brief Set an integer parameter value */
    void setParamValue(int value);
    /** @brief Show descriptive text next to slider */
    void showInfo(bool enable);
Lorenz Meier's avatar
Lorenz Meier committed
    /** @brief Show tool tip of calling element */
    void showTooltip();

protected slots:
    /** @brief Request the parameter of this widget from the MAV */
    void requestParameter();
    QString parameterName;         ///< Key/Name of the parameter
    QVariant parameterValue;          ///< Value of the parameter
    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
    double scaledInt;
pixhawk's avatar
pixhawk committed
    /** @brief Convert scaled int to float */

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

private:
    Ui::QGCParamSlider *ui;
};

#endif // QGCPARAMSLIDER_H