mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-22 05:34:33 +03:00
d744b5e481
And clear the ignored files between syncs
70 lines
1.7 KiB
C++
70 lines
1.7 KiB
C++
/*
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.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; version 2 of the License.
|
|
*
|
|
* 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 PROTOCOLWIDGET_H
|
|
#define PROTOCOLWIDGET_H
|
|
|
|
#include <QDialog>
|
|
#include <QDateTime>
|
|
#include <QLocale>
|
|
|
|
#include "mirall/progressdispatcher.h"
|
|
|
|
#include "ui_protocolwidget.h"
|
|
|
|
class QPushButton;
|
|
|
|
namespace Mirall {
|
|
class SyncResult;
|
|
|
|
namespace Ui {
|
|
class ProtocolWidget;
|
|
}
|
|
class Application;
|
|
|
|
class ProtocolWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ProtocolWidget(QWidget *parent = 0);
|
|
~ProtocolWidget();
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
void slotProgressInfo( const QString& folder, const Progress::Info& progress );
|
|
void slotOpenFile( QTreeWidgetItem* item, int );
|
|
|
|
protected slots:
|
|
void copyToClipboard();
|
|
void slotClearBlacklist();
|
|
|
|
signals:
|
|
void guiLog(const QString&, const QString&);
|
|
|
|
private:
|
|
void setSyncResultStatus(const SyncResult& result );
|
|
void cleanIgnoreItems( const QString& folder );
|
|
void computeResyncButtonEnabled();
|
|
|
|
QTreeWidgetItem* createCompletedTreewidgetItem(const QString &folder, const SyncFileItem &item );
|
|
|
|
QString timeString(QDateTime dt, QLocale::FormatType format = QLocale::NarrowFormat) const;
|
|
|
|
const int IgnoredIndicatorRole;
|
|
Ui::ProtocolWidget *_ui;
|
|
QPushButton *_clearBlacklistBtn;
|
|
};
|
|
|
|
}
|
|
#endif // PROTOCOLWIDGET_H
|