1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00

50 lines
1.2 KiB
C++
Raw Normal View History

2017-09-05 18:07:05 +08:00
#include "qqtwindow.h"
#include "ui_qqtwindow.h"
2018-04-22 16:17:15 +08:00
#include "qqtobjectmanager.h"
2017-10-22 12:21:19 +08:00
#include "qqt-qt.h"
2017-09-05 18:07:05 +08:00
#include "qqtcore.h"
#include "qqtwidgets.h"
#include "qqtanimation.h"
2018-04-22 16:17:15 +08:00
#include "qqtobjectmanager.h"
2017-09-05 18:07:05 +08:00
#include "animationmanager.h"
2017-10-22 12:21:19 +08:00
QQTWindow::QQTWindow(QWidget* parent) :
2017-09-05 18:07:05 +08:00
QStackedWidget(parent),
ui(new Ui::QQTWindow)
{
ui->setupUi(this);
QQtObjectManager::registerObject(this);
2017-09-05 18:07:05 +08:00
#ifdef __EMBEDDED_LINUX__
2017-09-05 18:07:05 +08:00
/*
* frameless足够
*/
setWindowFlags(Qt::FramelessWindowHint);
/*
*
*/
setAttribute(Qt::WA_TranslucentBackground, true);
#endif
setFixedSize(1024, 600);
moveCenter(this);
QQtObjectManager::registerObject(ui->pushButton);
QQtObjectManager::registerObject(ui->pushButton_2);
QQtObjectManager::registerObject(ui->pushButton_3);
QQtObjectManager::registerObject(ui->pushButton_4);
QQtObjectManager::registerObject(ui->pushButton_5);
QQtObjectManager::registerObject(ui->pushButton_6);
2017-09-05 18:07:05 +08:00
/**
* @brief QQtAnimationManager::Instance
2017-09-05 18:07:05 +08:00
*
*/
AnimationManager::Instance(this);
}
QQTWindow::~QQTWindow()
{
delete ui;
}