Sine Striker
2023-12-04 3d0d0c24adf5001be1c42b2fa86129b1b258cf70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "mainwindow.h"
 
#include <QtCore/QDebug>
 
#include <QWKWidgets/widgetwindowagent.h>
 
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) {
    auto agent = new QWK::WidgetWindowAgent(this);
    if (!agent->setup(this)) {
        qDebug() << "Frameless handle failed to initialize.";
    }
}
 
MainWindow::~MainWindow() {
}