mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-27 03:54:02 +08:00
* increase form size & fix wrong charts number
* set max axisy to 1.0 if no value
* show 'close' button in floating window
* alwasy show scroll bar
* complete the logs
* more
* increase size to 50
* keep logs for all messages
* more
* rename signal
* better height
* avoid flicker
* dont call setupdatesenabled
* filter dbc files bye typing
* remove all charts if dbc file changed
* fix wrong idx
* bolder dbc filename
* update chart if signal has been edited
* new signals signalAdded,signalUpdated
* split class Parser into CanMessages and DBCManager
* cleanup
* updateState after set message
* cleanup
* emit msgUpdated
* clear history log if selected range changed
* always update time
* change title layout
* show selected range
hide title bar if no charts
less space between title and chart
* custome historylogmodel for extreme fast update
* move historylog to seperate file
* 2 decimal
* cleanup
cleanup
* left click on the chart to set start time
* todo
* show tooltip for header item&cleanup binaryview
add hline to signal form
* better paint
* cleanup signals/slots
* better range if min==max
* set historylog's minheight to 300
* 3x faster,sortable message list.
* zero copy in queued connection
* proxymodel
* clear log if loop to the begin
* simplify history log
* remove icon
* remove assets
* hide linemarker on initialization
* rubber width may less than 0
* dont zoom char if selected range is too small
* cleanup messageslist
* don't zoom chart if selected range less than 500ms
* typo
* check boundary
* check msg_id
* capital first letter
* move history log out of scrollarea
* Show only one form at a time
* auto scroll to header
d
* reduce msg size
entire row clickable
rename filter_msgs
old-commit-hash: 0fa1588f6c
91 lines
2.0 KiB
C++
91 lines
2.0 KiB
C++
#pragma once
|
|
|
|
#include <map>
|
|
|
|
#include <QLabel>
|
|
#include <QPushButton>
|
|
#include <QVBoxLayout>
|
|
#include <QWidget>
|
|
#include <QtCharts/QChartView>
|
|
#include <QtCharts/QLineSeries>
|
|
|
|
#include "tools/cabana/canmessages.h"
|
|
#include "tools/cabana/dbcmanager.h"
|
|
|
|
using namespace QtCharts;
|
|
|
|
class LineMarker : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
LineMarker(QWidget *parent) : QWidget(parent) {}
|
|
void setX(double x);
|
|
|
|
private:
|
|
void paintEvent(QPaintEvent *event) override;
|
|
double x_pos = -1;
|
|
};
|
|
|
|
class ChartView : public QChartView {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ChartView(QChart *chart, QWidget *parent = nullptr) : QChartView(chart, parent) {}
|
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
|
};
|
|
|
|
class ChartWidget : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ChartWidget(const QString &id, const QString &sig_name, QWidget *parent);
|
|
inline QChart *chart() const { return chart_view->chart(); }
|
|
|
|
signals:
|
|
void remove();
|
|
|
|
private:
|
|
void updateState();
|
|
void addData(const CanData &can_data, const Signal &sig);
|
|
void updateSeries();
|
|
void rangeChanged(qreal min, qreal max);
|
|
void updateAxisY();
|
|
|
|
QString id;
|
|
QString sig_name;
|
|
ChartView *chart_view = nullptr;
|
|
LineMarker *line_marker = nullptr;
|
|
QList<QPointF> vals;
|
|
};
|
|
|
|
class ChartsWidget : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ChartsWidget(QWidget *parent = nullptr);
|
|
void addChart(const QString &id, const QString &sig_name);
|
|
void removeChart(const QString &id, const QString &sig_name);
|
|
inline bool hasChart(const QString &id, const QString &sig_name) {
|
|
return charts.find(id + sig_name) != charts.end();
|
|
}
|
|
|
|
signals:
|
|
void dock(bool floating);
|
|
|
|
private:
|
|
void updateState();
|
|
void updateTitleBar();
|
|
void removeAll();
|
|
bool eventFilter(QObject *obj, QEvent *event);
|
|
|
|
QWidget *title_bar;
|
|
QLabel *title_label;
|
|
QLabel *range_label;
|
|
bool docking = true;
|
|
QPushButton *dock_btn;
|
|
QPushButton *reset_zoom_btn;
|
|
QPushButton *remove_all_btn;
|
|
QVBoxLayout *charts_layout;
|
|
std::map<QString, ChartWidget *> charts;
|
|
};
|