mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-22 22:23:52 +08:00
* build python helpers lib * call setMainWindow from python * put in helper lib * linter * move to scripts
22 lines
361 B
C++
22 lines
361 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <QApplication>
|
|
#include <QScreen>
|
|
#include <QWidget>
|
|
|
|
#ifdef QCOM2
|
|
#include <qpa/qplatformnativeinterface.h>
|
|
#include <wayland-client-protocol.h>
|
|
#include <QPlatformSurfaceEvent>
|
|
#endif
|
|
|
|
#include "selfdrive/hardware/hw.h"
|
|
|
|
const QString ASSET_PATH = ":/";
|
|
|
|
const int WIDE_WIDTH = 2160;
|
|
|
|
void setMainWindow(QWidget *w);
|