mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-21 13:14:30 +03:00
db24f60ae3
See #5180
80 lines
2.1 KiB
C++
80 lines
2.1 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; 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 PROTOCOLWIDGET_H
|
|
#define PROTOCOLWIDGET_H
|
|
|
|
#include <QDialog>
|
|
#include <QDateTime>
|
|
#include <QLocale>
|
|
|
|
#include "progressdispatcher.h"
|
|
#include "owncloudgui.h"
|
|
|
|
#include "ui_protocolwidget.h"
|
|
|
|
class QPushButton;
|
|
|
|
namespace OCC {
|
|
class SyncResult;
|
|
|
|
namespace Ui {
|
|
class ProtocolWidget;
|
|
}
|
|
class Application;
|
|
|
|
/**
|
|
* @brief The ProtocolWidget class
|
|
* @ingroup gui
|
|
*/
|
|
class ProtocolWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ProtocolWidget(QWidget *parent = 0);
|
|
~ProtocolWidget();
|
|
QSize sizeHint() const { return ownCloudGui::settingsDialogSize(); }
|
|
|
|
QTreeWidget *issueWidget() { return _issueItemView; }
|
|
void storeSyncActivity(QTextStream& ts);
|
|
void storeSyncIssues(QTextStream& ts);
|
|
|
|
public slots:
|
|
void slotProgressInfo( const QString& folder, const ProgressInfo& progress );
|
|
void slotItemCompleted( const QString& folder, const SyncFileItem& item, const PropagatorJob& job);
|
|
void slotOpenFile( QTreeWidgetItem* item, int );
|
|
|
|
protected:
|
|
void showEvent(QShowEvent *);
|
|
void hideEvent(QHideEvent *);
|
|
|
|
signals:
|
|
void copyToClipboard();
|
|
void issueItemCountUpdated(int);
|
|
|
|
private:
|
|
void setSyncResultStatus(const SyncResult& result );
|
|
void cleanItems( const QString& folder );
|
|
|
|
QTreeWidgetItem* createCompletedTreewidgetItem(const QString &folder, const SyncFileItem &item );
|
|
|
|
QString timeString(QDateTime dt, QLocale::FormatType format = QLocale::NarrowFormat) const;
|
|
|
|
const int IgnoredIndicatorRole;
|
|
Ui::ProtocolWidget *_ui;
|
|
QTreeWidget *_issueItemView;
|
|
};
|
|
|
|
}
|
|
#endif // PROTOCOLWIDGET_H
|