mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
30 lines
584 B
C++
30 lines
584 B
C++
#include "koboxsettings.h"
|
|
#include "ui_koboxsettings.h"
|
|
|
|
#include <QFile>
|
|
|
|
koboxSettings::koboxSettings(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::koboxSettings)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
// Stylesheet
|
|
QFile stylesheetFile(":/resources/eink.qss");
|
|
stylesheetFile.open(QFile::ReadOnly);
|
|
this->setStyleSheet(stylesheetFile.readAll());
|
|
stylesheetFile.close();
|
|
|
|
// UI tweaks
|
|
ui->okBtn->setProperty("type", "borderless");
|
|
}
|
|
|
|
koboxSettings::~koboxSettings()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void koboxSettings::on_okBtn_clicked()
|
|
{
|
|
koboxSettings::close();
|
|
}
|