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.
29 lines
457 B
29 lines
457 B
#ifndef CONFFILEWIDGET_H
|
|
#define CONFFILEWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class ConffileWidget;
|
|
}
|
|
|
|
class ConffileWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConffileWidget(QString filename, QWidget *parent = nullptr);
|
|
~ConffileWidget();
|
|
QString filename();
|
|
bool doReplace();
|
|
|
|
private slots:
|
|
void onDiffClicked();
|
|
|
|
private:
|
|
Ui::ConffileWidget *ui;
|
|
QString internalFilename;
|
|
};
|
|
|
|
#endif // CONFFILEWIDGET_H
|