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.
		
		
		
		
		
			
		
			
				
					
					
						
							54 lines
						
					
					
						
							1.5 KiB
						
					
					
				
			
		
		
	
	
							54 lines
						
					
					
						
							1.5 KiB
						
					
					
				| #pragma once
 | |
| 
 | |
| #include <optional>
 | |
| #include <vector>
 | |
| 
 | |
| #include <QDateTime>
 | |
| #include <QFileSystemWatcher>
 | |
| #include <QPainter>
 | |
| #include <QPixmap>
 | |
| #include <QSurfaceFormat>
 | |
| #include <QWidget>
 | |
| 
 | |
| #include "cereal/gen/cpp/car.capnp.h"
 | |
| #include "common/params.h"
 | |
| 
 | |
| QString getVersion();
 | |
| QString getBrand();
 | |
| QString getUserAgent();
 | |
| std::optional<QString> getDongleId();
 | |
| QMap<QString, QString> getSupportedLanguages();
 | |
| void setQtSurfaceFormat();
 | |
| void sigTermHandler(int s);
 | |
| QString timeAgo(const QDateTime &date);
 | |
| void swagLogMessageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg);
 | |
| void initApp(int argc, char *argv[], bool disable_hidpi = true);
 | |
| QWidget* topWidget(QWidget* widget);
 | |
| QPixmap loadPixmap(const QString &fileName, const QSize &size = {}, Qt::AspectRatioMode aspectRatioMode = Qt::KeepAspectRatio);
 | |
| QPixmap bootstrapPixmap(const QString &id);
 | |
| bool hasLongitudinalControl(const cereal::CarParams::Reader &car_params);
 | |
| 
 | |
| struct InterFont : public QFont {
 | |
|   InterFont(int pixel_size, QFont::Weight weight = QFont::Normal) : QFont("Inter") {
 | |
|     setPixelSize(pixel_size);
 | |
|     setWeight(weight);
 | |
|   }
 | |
| };
 | |
| 
 | |
| class ParamWatcher : public QObject {
 | |
|   Q_OBJECT
 | |
| 
 | |
| public:
 | |
|   ParamWatcher(QObject *parent);
 | |
|   void addParam(const QString ¶m_name);
 | |
| 
 | |
| signals:
 | |
|   void paramChanged(const QString ¶m_name, const QString ¶m_value);
 | |
| 
 | |
| private:
 | |
|   void fileChanged(const QString &path);
 | |
| 
 | |
|   QFileSystemWatcher *watcher;
 | |
|   QHash<QString, QString> params_hash;
 | |
|   Params params;
 | |
| };
 | |
| 
 |