You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							138 lines
						
					
					
						
							3.8 KiB
						
					
					
				
			
		
		
	
	
							138 lines
						
					
					
						
							3.8 KiB
						
					
					
				| #pragma once
 | |
| 
 | |
| #include <cmath>
 | |
| 
 | |
| #include <QApplication>
 | |
| #include <QByteArray>
 | |
| #include <QDateTime>
 | |
| #include <QDoubleValidator>
 | |
| #include <QFont>
 | |
| #include <QRegExpValidator>
 | |
| #include <QStringBuilder>
 | |
| #include <QStyledItemDelegate>
 | |
| #include <QToolButton>
 | |
| #include <QVector>
 | |
| 
 | |
| #include "tools/cabana/dbc/dbc.h"
 | |
| #include "tools/cabana/settings.h"
 | |
| 
 | |
| class LogSlider : public QSlider {
 | |
|   Q_OBJECT
 | |
| 
 | |
| public:
 | |
|   LogSlider(double factor, Qt::Orientation orientation, QWidget *parent = nullptr) : factor(factor), QSlider(orientation, parent) {}
 | |
| 
 | |
|   void setRange(double min, double max) {
 | |
|     log_min = factor * std::log10(min);
 | |
|     log_max = factor * std::log10(max);
 | |
|     QSlider::setRange(min, max);
 | |
|     setValue(QSlider::value());
 | |
|   }
 | |
|   int value() const {
 | |
|     double v = log_min + (log_max - log_min) * ((QSlider::value() - minimum()) / double(maximum() - minimum()));
 | |
|     return std::lround(std::pow(10, v / factor));
 | |
|   }
 | |
|   void setValue(int v) {
 | |
|     double log_v = std::clamp(factor * std::log10(v), log_min, log_max);
 | |
|     v = minimum() + (maximum() - minimum()) * ((log_v - log_min) / (log_max - log_min));
 | |
|     QSlider::setValue(v);
 | |
|   }
 | |
| 
 | |
| private:
 | |
|   double factor, log_min = 0, log_max = 1;
 | |
| };
 | |
| 
 | |
| enum {
 | |
|   ColorsRole = Qt::UserRole + 1,
 | |
|   BytesRole = Qt::UserRole + 2
 | |
| };
 | |
| 
 | |
| class SegmentTree {
 | |
| public:
 | |
|   SegmentTree() = default;
 | |
|   void build(const QVector<QPointF> &arr);
 | |
|   inline std::pair<double, double> minmax(int left, int right) const { return get_minmax(1, 0, size - 1, left, right); }
 | |
| 
 | |
| private:
 | |
|   std::pair<double, double> get_minmax(int n, int left, int right, int range_left, int range_right) const;
 | |
|   void build_tree(const QVector<QPointF> &arr, int n, int left, int right);
 | |
|   std::vector<std::pair<double ,double>> tree;
 | |
|   int size = 0;
 | |
| };
 | |
| 
 | |
| class MessageBytesDelegate : public QStyledItemDelegate {
 | |
|   Q_OBJECT
 | |
| public:
 | |
|   MessageBytesDelegate(QObject *parent, bool multiple_lines = false);
 | |
|   void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
 | |
|   QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override;
 | |
|   void setMultipleLines(bool v);
 | |
|   int widthForBytes(int n) const;
 | |
|   bool multipleLines() const { return multiple_lines; }
 | |
| 
 | |
| private:
 | |
|   QFont fixed_font;
 | |
|   QSize byte_size = {};
 | |
|   bool multiple_lines = false;
 | |
|   mutable QSize size_cache[65] = {};
 | |
| };
 | |
| 
 | |
| inline QString toHex(const QByteArray &dat) { return dat.toHex(' ').toUpper(); }
 | |
| QString toHex(uint8_t byte);
 | |
| 
 | |
| class NameValidator : public QRegExpValidator {
 | |
|   Q_OBJECT
 | |
| public:
 | |
|   NameValidator(QObject *parent=nullptr);
 | |
|   QValidator::State validate(QString &input, int &pos) const override;
 | |
| };
 | |
| 
 | |
| class DoubleValidator : public QDoubleValidator {
 | |
|   Q_OBJECT
 | |
| public:
 | |
|   DoubleValidator(QObject *parent = nullptr);
 | |
| };
 | |
| 
 | |
| namespace utils {
 | |
| QPixmap icon(const QString &id);
 | |
| void setTheme(int theme);
 | |
| inline QString formatSeconds(int seconds) {
 | |
|   return QDateTime::fromTime_t(seconds).toString(seconds > 60 * 60 ? "hh:mm:ss" : "mm:ss");
 | |
| }
 | |
| }
 | |
| 
 | |
| class ToolButton : public QToolButton {
 | |
|   Q_OBJECT
 | |
| public:
 | |
|   ToolButton(const QString &icon, const QString &tooltip = {}, QWidget *parent = nullptr) : QToolButton(parent) {
 | |
|     setIcon(icon);
 | |
|     setToolTip(tooltip);
 | |
|     setAutoRaise(true);
 | |
|     const int metric = QApplication::style()->pixelMetric(QStyle::PM_SmallIconSize);
 | |
|     setIconSize({metric, metric});
 | |
|     theme = settings.theme;
 | |
|     connect(&settings, &Settings::changed, this, &ToolButton::updateIcon);
 | |
|   }
 | |
|   void setIcon(const QString &icon) {
 | |
|     icon_str = icon;
 | |
|     QToolButton::setIcon(utils::icon(icon_str));
 | |
|   }
 | |
| 
 | |
| private:
 | |
|   void updateIcon() { if (std::exchange(theme, settings.theme) != theme) setIcon(icon_str); }
 | |
|   QString icon_str;
 | |
|   int theme;
 | |
| };
 | |
| 
 | |
| class TabBar : public QTabBar {
 | |
|   Q_OBJECT
 | |
| 
 | |
| public:
 | |
|   TabBar(QWidget *parent) : QTabBar(parent) {}
 | |
|   int addTab(const QString &text);
 | |
| 
 | |
| private:
 | |
|   void closeTabClicked();
 | |
| };
 | |
| 
 | |
| int num_decimals(double num);
 | |
| 
 |