LinechartWidget.h 7.22 KB
Newer Older
1 2
/****************************************************************************
 *
3
 *   (c) 2009-2018 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
pixhawk's avatar
pixhawk committed
9 10 11 12 13 14 15


/**
 * @file
 *   @brief Definition of Line chart plot widget
 *
 *   @author Lorenz Meier <mavteam@student.ethz.ch>
16
 *   @author Thomas Gubler <thomasgubler@student.ethz.ch>
pixhawk's avatar
pixhawk committed
17
 */
18
#pragma once
pixhawk's avatar
pixhawk committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

#include <QGridLayout>
#include <QWidget>
#include <QFrame>
#include <QComboBox>
#include <QVBoxLayout>
#include <QCheckBox>
#include <QScrollBar>
#include <QSpinBox>
#include <QMap>
#include <QString>
#include <QAction>
#include <QIcon>
#include <QLabel>
#include <QReadWriteLock>
#include <QToolButton>
35
#include <QTimer>
pixhawk's avatar
pixhawk committed
36 37 38 39 40 41 42 43 44 45 46 47
#include <qwt_plot_curve.h>

#include "LinechartPlot.h"
#include "UASInterface.h"
#include "ui_Linechart.h"

#include "LogCompressor.h"

/**
 * @brief The linechart widget allows to visualize different timeseries as lineplot.
 * The display interval, the timeseries and the scaling can be changed interactively
 **/
48 49
class LinechartWidget : public QWidget
{
pixhawk's avatar
pixhawk committed
50 51 52
    Q_OBJECT

public:
53
    LinechartWidget(int systemid, QWidget *parent = 0);
pixhawk's avatar
pixhawk committed
54 55 56 57 58 59
    ~LinechartWidget();

    static const int MIN_TIME_SCROLLBAR_VALUE = 0; ///< The minimum scrollbar value
    static const int MAX_TIME_SCROLLBAR_VALUE = 16383; ///< The maximum scrollbar value

public slots:
60
    void addCurve(const QString& curve, const QString& unit);
61
    void removeCurve(QString curve);
62 63 64 65
    /** @brief Recolor all curves */
    void recolor();
    /** @brief Set short names for curves */
    void setShortNames(bool enable);
66 67
    /** @brief Append data to the given curve. */
    void appendData(int uasId, const QString& curve, const QString& unit, const QVariant& value, quint64 usec);
68 69
    /** @brief Hide curves which do not match the filter pattern */
    void filterCurves(const QString &filter);
70

71
    void toggleLogarithmicScaling(bool toggled);
pixhawk's avatar
pixhawk committed
72 73 74 75
    void takeButtonClick(bool checked);
    void setPlotWindowPosition(int scrollBarValue);
    void setPlotWindowPosition(quint64 position);
    void setPlotInterval(quint64 interval);
76 77 78 79
    /** @brief Start automatic updates once visible */
    void showEvent(QShowEvent* event);
    /** @brief Stop automatic updates once hidden */
    void hideEvent(QHideEvent* event);
80
    void setActive(bool active);
81 82
    /** @brief Select one MAV for curve display */
    void selectActiveSystem(int mav);
pixhawk's avatar
pixhawk committed
83 84 85 86 87 88
    /** @brief Set the number of values to average over */
    void setAverageWindow(int windowSize);
    /** @brief Start logging to file */
    void startLogging();
    /** @brief Stop logging to file */
    void stopLogging();
89 90
    /** @brief Refresh the view */
    void refresh();
91 92 93 94
    /** @brief Write the current configuration to disk */
    void writeSettings();
    /** @brief Read the current configuration from disk */
    void readSettings();
95 96
    /** @brief Select all curves */
    void selectAllCurves(bool all);
97 98
    /** @brief Sets the focus to the LineEdit for plot-filtering */
    void setPlotFilterLineEditFocus();
pixhawk's avatar
pixhawk committed
99

100 101 102
private slots:
    /** Called when the user changes the time scale combobox. */
    void timeScaleChanged(int index);
103
    /** @brief Toggles visibility of curve based on bool match if corresponding checkbox is not checked */
104
    void filterCurve(const QString &key, bool match);
105

pixhawk's avatar
pixhawk committed
106 107 108
protected:
    void addCurveToList(QString curve);
    void removeCurveFromList(QString curve);
109
    QToolButton* createButton(QWidget* parent);
110
    void createCurveItem(QString curve);
111
    void createLayout();
112 113
    /** @brief Get the name for a curve key */
    QString getCurveName(const QString& key, bool shortEnabled);
pixhawk's avatar
pixhawk committed
114

115 116 117 118
    int sysid;                            ///< ID of the unmanned system this plot belongs to
    LinechartPlot* activePlot;            ///< Plot for this system
    QReadWriteLock* curvesLock;           ///< A lock (mutex) for the concurrent access on the curves
    QReadWriteLock plotWindowLock;        ///< A lock (mutex) for the concurrent access on the window position
pixhawk's avatar
pixhawk committed
119 120

    int curveListIndex;
121 122
    int curveListCounter;                 ///< Counter of curves in curve list
    QMap<QString, QLabel*>* curveLabels;  ///< References to the curve labels
123 124
    QMap<QString, QLabel*> curveNameLabels;  ///< References to the curve labels
    QMap<QString, QString> curveNames;    ///< Full curve names
125 126
    QMap<QString, QLabel*>* curveMeans;   ///< References to the curve means
    QMap<QString, QLabel*>* curveMedians; ///< References to the curve medians
127
    QMap<QString, QWidget*> curveUnits;    ///< References to the curve units
128
    QMap<QString, QLabel*>* curveVariances; ///< References to the curve variances
129
    QMap<QString, int> intData;           ///< Current values for integer-valued curves
130
    QMap<QString, QWidget*> colorIcons;    ///< Reference to color icons
131
    QMap<QString, QCheckBox*> checkBoxes;    ///< Reference to checkboxes
132 133

    QWidget* curvesWidget;                ///< The QWidget containing the curve selection button
134
    QGridLayout* curvesWidgetLayout;      ///< The layout for the curvesWidget QWidget
135 136
    QScrollBar* scrollbar;                ///< The plot window scroll bar
    QSpinBox* averageSpinBox;             ///< Spin box to setup average window filter size
pixhawk's avatar
pixhawk committed
137

138
    QAction* addNewCurve;                 ///< Add curve candidate to the active curves
pixhawk's avatar
pixhawk committed
139

140
    QComboBox *timeScaleCmb;
pixhawk's avatar
pixhawk committed
141 142 143

    QToolButton* scalingLogButton;
    QToolButton* logButton;
144
    QPointer<QCheckBox> timeButton;
pixhawk's avatar
pixhawk committed
145 146 147 148

    QFile* logFile;
    unsigned int logindex;
    bool logging;
149
    quint64 logStartTime;
150
    QTimer* updateTimer;
pixhawk's avatar
pixhawk committed
151
    LogCompressor* compressor;
152
    QCheckBox* selectAllCheckBox;
lm's avatar
lm committed
153
    int selectedMAV; ///< The MAV for which plot items are accepted, -1 for all systems
154 155 156
    quint64 lastTimestamp;
    bool userGroundTimeSet;
    bool autoGroundTimeSet;
LM's avatar
LM committed
157
    static const int updateInterval = 1000; ///< Time between number updates, in milliseconds
pixhawk's avatar
pixhawk committed
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192

    static const int MAX_CURVE_MENUITEM_NUMBER = 8;
    static const int PAGESTEP_TIME_SCROLLBAR_VALUE = (MAX_TIME_SCROLLBAR_VALUE - MIN_TIME_SCROLLBAR_VALUE) / 10;

private:
    Ui::linechart ui;
    void createActions();

signals:
    /**
         * @brief This signal is emitted if a curve is removed from the list
         *
         * @param curve The removed plot curve
         **/
    void curveRemoved(QString curve);

    /**
         * @brief This signal is emitted if a curve has been moved or added
         *
         * @param curve The moved or added curve
         * @param position The x-position of the curve (The centerline)
         **/
    void curveSet(QString curve, int position);

    /**
         * @brief This signal is emitted to change the visibility of a curve
         *
         * @param curve The changed curve
         * @pram visible The visibility
         **/
    void curveVisible(QString curve, bool visible);

    void plotWindowPositionUpdated(quint64 position);
    void plotWindowPositionUpdated(int position);

193 194 195
    /** @brief This signal is emitted once a logfile has been finished writing */
    void logfileWritten(QString fileName);

196 197 198 199 200 201
private slots:
    void _filterTimeout(void);
    void _restartFilterTimeout(void);

private:
    QTimer _filterTimer;
pixhawk's avatar
pixhawk committed
202 203
};