nextcloud-desktop/src/gui/conflictdialog.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.5 KiB
C
Raw Normal View History

/*
* 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;
[[nodiscard]] QString baseFilename() const;
[[nodiscard]] QString localVersionFilename() const;
[[nodiscard]] 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