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

62 lines
1.7 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"
QQTWindow::QQTWindow ( QWidget* parent ) :
QStackedWidget ( parent ),
ui ( new Ui::QQTWindow )
2017-09-05 18:07:05 +08:00
{
ui->setupUi ( this );
2017-09-05 18:07:05 +08:00
#ifdef __EMBEDDED_LINUX__
2017-09-05 18:07:05 +08:00
/*
* frameless足够
*/
setWindowFlags ( Qt::FramelessWindowHint );
2017-09-05 18:07:05 +08:00
/*
*
*/
setAttribute ( Qt::WA_TranslucentBackground, true );
2017-09-05 18:07:05 +08:00
#endif
setFixedSize ( 1024, 600 );
moveCenter ( this );
QPropertyAnimation* animation = new QPropertyAnimation ( this, "windowOpacity" );
animation->setDuration ( 1000 );
animation->setStartValue ( 0 );
animation->setEndValue ( 1 );
animation->start();
pline() << ui->pushButton->objectName();
pline() << ui->pushButton_2->objectName();
pline() << ui->pushButton_3->objectName();
pline() << ui->pushButton_4->objectName();
pline() << ui->pushButton_5->objectName();
pline() << ui->pushButton_6->objectName();
2017-09-05 18:07:05 +08:00
QQtObjectManager::registerObject ( 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 );
2017-09-05 18:07:05 +08:00
}
QQTWindow::~QQTWindow()
{
delete ui;
}