cutter/src/dialogs/WelcomeDialog.h
2019-01-19 21:54:02 +01:00

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