You've already forked ukui-notebook
mirror of
https://github.com/ukui/ukui-notebook.git
synced 2026-03-09 09:34:07 -07:00
52 lines
1.1 KiB
C++
52 lines
1.1 KiB
C++
/*
|
|
* Copyright (C) 2020 Tianjin KYLIN Information Technology Co., Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef EMPTYNOTES_H
|
|
#define EMPTYNOTES_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class emptyNotes;
|
|
}
|
|
|
|
class emptyNotes : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit emptyNotes(QWidget *parent = nullptr);
|
|
~emptyNotes();
|
|
|
|
bool m_isDontShow;
|
|
|
|
private slots:
|
|
void on_pushButton_clicked();
|
|
void on_pushButton_2_clicked();
|
|
|
|
private:
|
|
void paintEvent(QPaintEvent*);
|
|
Ui::emptyNotes *ui;
|
|
|
|
signals:
|
|
void requestEmptyNotes();
|
|
|
|
};
|
|
|
|
#endif // EMPTY_NOTEPAD_H
|