FluentUI/src/WindowHelper.cpp

30 lines
640 B
C++
Raw Normal View History

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
}
2023-03-01 11:58:30 +08:00
2023-03-02 18:21:43 +08:00
void WindowHelper::setMinimumWidth(int width){
this->window->setMinimumWidth(width);
2023-03-01 11:58:30 +08:00
}
2023-03-02 18:21:43 +08:00
void WindowHelper::setMaximumWidth(int width){
this->window->setMaximumWidth(width);
2023-03-01 11:58:30 +08:00
}
2023-03-02 18:21:43 +08:00
void WindowHelper::setMinimumHeight(int height){
this->window->setMinimumHeight(height);
}
void WindowHelper::setMaximumHeight(int height){
this->window->setMaximumHeight(height);
2023-03-01 22:06:48 +08:00
}