caesium/exit.h
Gary Wang 216e1a9f71 init commit that compiles
Commit the original Caesium 1.7.0 codebase with some adjustment.
You can also get the original source at:

https://sourceforge.net/projects/caesium/files/1.7.0/

Since the file names listed in the Qt resource file have encoding
issue which can cause compile failure, these files get removed.

Adjustments:

+ .gitignore
M icons.qrc
- *.pro.user(.*)
- icons/language/*.png
2021-09-10 10:03:13 +08:00

28 lines
366 B
C++

#ifndef EXIT_H
#define EXIT_H
#include <QtWidgets/QDialog>
namespace Ui {
class Exit;
}
class Exit : public QDialog
{
Q_OBJECT
public:
explicit Exit(QWidget *parent = 0);
~Exit();
private slots:
void on_alwaysCheckBox_toggled(bool checked);
private:
Ui::Exit *ui;
QWidget *e_parent;
};
#endif // EXIT_H