mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 12:56:11 +00:00
39 lines
837 B
C
39 lines
837 B
C
|
#ifndef WELCOMEDIALOG_H
|
||
|
#define WELCOMEDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
|
||
|
/*!
|
||
|
* \class WelcomeDialog
|
||
|
* \brief The WelcomeDialog class will show the user the Welcome windows
|
||
|
* upon first execution of Cutter.
|
||
|
*
|
||
|
* Upon first execution of Cutter, the WelcomeDialog would be showed to the user.
|
||
|
* The Welcome dialog would be showed after a reset of Cutter's preferences by the user.
|
||
|
*/
|
||
|
|
||
|
class WelcomeDialog;
|
||
|
}
|
||
|
|
||
|
class WelcomeDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit WelcomeDialog(QWidget *parent = 0);
|
||
|
~WelcomeDialog();
|
||
|
|
||
|
private slots:
|
||
|
void on_themeComboBox_currentIndexChanged(int index);
|
||
|
void onLanguageComboBox_currentIndexChanged(int index);
|
||
|
void on_checkUpdateButton_clicked();
|
||
|
void on_continueButton_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::WelcomeDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // WELCOMEDIALOG_H
|