mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-10-03 08:41:42 +00:00
29 lines
443 B
C++
29 lines
443 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui
|
|
{
|
|
class CheckableInputDialog;
|
|
}
|
|
|
|
class CheckableInputDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CheckableInputDialog(QWidget *parent);
|
|
~CheckableInputDialog();
|
|
|
|
void setText(QString text);
|
|
void setExtraText(QString text);
|
|
void setCheckboxText(QString checkboxText);
|
|
|
|
bool checkboxChecked();
|
|
QString getInput();
|
|
|
|
private:
|
|
Ui::CheckableInputDialog *ui;
|
|
|
|
};
|