2023-02-27 18:46:39 +08:00
|
|
|
|
#include "WindowHelper.h"
|
|
|
|
|
|
|
|
|
|
WindowHelper::WindowHelper(QObject *parent)
|
|
|
|
|
: QObject{parent}
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-27 23:04:52 +08:00
|
|
|
|
void WindowHelper::setTitle(const QString& text){
|
|
|
|
|
window->setTitle(text);
|
2023-02-27 18:46:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-02-27 23:04:52 +08:00
|
|
|
|
void WindowHelper::initWindow(FramelessView* window){
|
|
|
|
|
this->window = window;
|
2023-02-27 18:46:39 +08:00
|
|
|
|
}
|