Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-10-07 18:51:18 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-10-22 17:40:46 +0300
commit49c478cd2aaef1533d0c19981f0968e6f8c49385 (patch)
tree0c8bd7beaf51a0adb3a8d35933eb131599b0e72a /src/gui/conflictdialog.h
parent67e81fcd0f97e89752237ea5e030cf2b4dbbfa5f (diff)
Add a conflict dialog to help the user solve them
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to 'src/gui/conflictdialog.h')
-rw-r--r--src/gui/conflictdialog.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/gui/conflictdialog.h b/src/gui/conflictdialog.h
new file mode 100644
index 000000000..5c5b763b4
--- /dev/null
+++ b/src/gui/conflictdialog.h
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) by Kevin Ottens <kevin.ottens@nextcloud.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * for more details.
+ */
+
+#ifndef CONFLICTDIALOG_H
+#define CONFLICTDIALOG_H
+
+#include <QDialog>
+
+namespace OCC {
+
+class ConflictSolver;
+
+namespace Ui {
+ class ConflictDialog;
+}
+
+class ConflictDialog : public QDialog
+{
+ Q_OBJECT
+public:
+ explicit ConflictDialog(QWidget *parent = nullptr);
+ ~ConflictDialog() override;
+
+ QString baseFilename() const;
+ QString localVersionFilename() const;
+ QString remoteVersionFilename() const;
+
+public slots:
+ void setBaseFilename(const QString &baseFilename);
+ void setLocalVersionFilename(const QString &localVersionFilename);
+ void setRemoteVersionFilename(const QString &remoteVersionFilename);
+
+ void accept() override;
+
+private:
+ void updateWidgets();
+ void updateButtonStates();
+
+ QString _baseFilename;
+ QScopedPointer<Ui::ConflictDialog> _ui;
+ ConflictSolver *_solver;
+};
+
+} // namespace OCC
+
+#endif // CONFLICTDIALOG_H