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);
|
|
|
|
|
|
2018-04-22 16:00:14 +08:00
|
|
|
|
QQtObjectManager::registerObject(this);
|
2017-09-05 18:07:05 +08:00
|
|
|
|
|
2017-10-20 19:28:52 +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);
|
|
|
|
|
|
2018-04-22 16:00:14 +08:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
/**
|
2017-11-21 23:12:29 +08:00
|
|
|
|
* @brief QQtAnimationManager::Instance
|
2017-09-05 18:07:05 +08:00
|
|
|
|
* 开启或者关闭动画
|
|
|
|
|
*/
|
|
|
|
|
AnimationManager::Instance(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QQTWindow::~QQTWindow()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|