You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
616 B
32 lines
616 B
10 months ago
|
#ifndef CONFFILEHANDLERDIALOG_H
|
||
|
#define CONFFILEHANDLERDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QStringList>
|
||
|
|
||
|
class ConffileWidget;
|
||
|
|
||
|
namespace Ui {
|
||
|
class ConffileHandlerDialog;
|
||
|
}
|
||
|
|
||
|
class ConffileHandlerDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit ConffileHandlerDialog(const QStringList &conffiles, QWidget *parent = nullptr);
|
||
|
~ConffileHandlerDialog();
|
||
|
QStringList getReplaceConffileList();
|
||
|
|
||
|
private slots:
|
||
|
void onDoneClicked();
|
||
|
|
||
|
private:
|
||
|
Ui::ConffileHandlerDialog *ui;
|
||
|
QList<ConffileWidget *> conffileList;
|
||
|
QStringList replaceConffileList;
|
||
|
};
|
||
|
|
||
|
#endif // CONFFILEHANDLERDIALOG_H
|