Linloir 984c53340c
UI update: frameless window
- window skeleton
- multi screen resize support
- auto maximize
2022-12-14 08:41:47 +08:00

14 lines
307 B
C++

#include "mainwindow.h"
#include <QtWidgets/QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.setWindowFlag(Qt::FramelessWindowHint);
w.setAttribute(Qt::WA_TranslucentBackground);
w.setMouseTracking(true);
w.show();
return a.exec();
}