mirror of
https://github.com/Quill-OS/quill.git
synced 2024-11-01 05:43:21 -07:00
30 lines
553 B
C++
30 lines
553 B
C++
|
#include "calendarapp.h"
|
||
|
#include "ui_calendarapp.h"
|
||
|
|
||
|
#include <QFile>
|
||
|
|
||
|
calendarApp::calendarApp(QWidget *parent) :
|
||
|
QWidget(parent),
|
||
|
ui(new Ui::calendarApp)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
|
||
|
// Stylesheet
|
||
|
QFile stylesheetFile(":/resources/eink.qss");
|
||
|
stylesheetFile.open(QFile::ReadOnly);
|
||
|
this->setStyleSheet(stylesheetFile.readAll());
|
||
|
stylesheetFile.close();
|
||
|
|
||
|
ui->backBtn->setProperty("type", "borderless");
|
||
|
}
|
||
|
|
||
|
calendarApp::~calendarApp()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|
||
|
|
||
|
void calendarApp::on_backBtn_clicked()
|
||
|
{
|
||
|
calendarApp::close();
|
||
|
}
|