mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
c84305c33a
fix registerObject function, it can registerObject now.
62 lines
1.7 KiB
C++
62 lines
1.7 KiB
C++
#include "qqtwindow.h"
|
|
#include "ui_qqtwindow.h"
|
|
#include "qqtobjectmanager.h"
|
|
#include "qqt-qt.h"
|
|
#include "qqtcore.h"
|
|
#include "qqtwidgets.h"
|
|
#include "qqtanimation.h"
|
|
#include "qqtobjectmanager.h"
|
|
#include "animationmanager.h"
|
|
|
|
QQTWindow::QQTWindow ( QWidget* parent ) :
|
|
QStackedWidget ( parent ),
|
|
ui ( new Ui::QQTWindow )
|
|
{
|
|
ui->setupUi ( this );
|
|
|
|
#ifdef __EMBEDDED_LINUX__
|
|
/*
|
|
* 这里只要frameless足够
|
|
*/
|
|
setWindowFlags ( Qt::FramelessWindowHint );
|
|
/*
|
|
* 控件背景透明,显示设置的图片背景或者下一级背景。
|
|
*/
|
|
setAttribute ( Qt::WA_TranslucentBackground, true );
|
|
#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();
|
|
|
|
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 );
|
|
|
|
/**
|
|
* @brief QQtAnimationManager::Instance
|
|
* 开启或者关闭动画
|
|
*/
|
|
AnimationManager::Instance ( this );
|
|
}
|
|
|
|
QQTWindow::~QQTWindow()
|
|
{
|
|
delete ui;
|
|
}
|