mirror of
https://github.com/MoreTore/openpilot.git
synced 2026-08-04 15:56:08 +08:00
1ce647b0a6
* body ui template
* faces
* abs
* not raw
* auto switch
* check that
* no smoosh
* cmath
old-commit-hash: b51deb97d1
20 lines
263 B
C++
20 lines
263 B
C++
#pragma once
|
|
|
|
#include <QMovie>
|
|
#include <QLabel>
|
|
|
|
#include "selfdrive/ui/ui.h"
|
|
|
|
class BodyWindow : public QLabel {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
BodyWindow(QWidget* parent = 0);
|
|
|
|
private:
|
|
QMovie *awake, *sleep;
|
|
|
|
private slots:
|
|
void updateState(const UIState &s);
|
|
};
|