6adb63b915
date: 2026-06-04T09:49:56 master commit: c0ab3550eca2e9daf197c46b7e4b24aa9637cf2e
27 lines
610 B
C++
27 lines
610 B
C++
#pragma once
|
|
|
|
#include <QPixmap>
|
|
#include <QPointF>
|
|
#include <vector>
|
|
|
|
#include "tools/cabana/dbc/dbc.h"
|
|
#include "tools/cabana/streams/abstractstream.h"
|
|
|
|
class Sparkline {
|
|
public:
|
|
void update(const cabana::Signal *sig, CanEventIter first, CanEventIter last, int range, QSize size);
|
|
inline double freq() const { return freq_; }
|
|
bool isEmpty() const { return pixmap.isNull(); }
|
|
|
|
QPixmap pixmap;
|
|
double min_val = 0;
|
|
double max_val = 0;
|
|
|
|
private:
|
|
void render(const QColor &color, int range, QSize size);
|
|
|
|
std::vector<QPointF> points_;
|
|
std::vector<QPointF> render_points_;
|
|
double freq_ = 0;
|
|
};
|