mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-21 05:13:04 +03:00
9613f6437d
Conflicts: src/libsync/networkjobs.cpp
96 lines
2.7 KiB
C++
96 lines
2.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; 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 ISSUESWIDGET_H
|
|
#define ISSUESWIDGET_H
|
|
|
|
#include <QDialog>
|
|
#include <QDateTime>
|
|
#include <QLocale>
|
|
#include <QTimer>
|
|
|
|
#include "progressdispatcher.h"
|
|
#include "owncloudgui.h"
|
|
|
|
#include "ui_issueswidget.h"
|
|
|
|
class QPushButton;
|
|
|
|
namespace OCC {
|
|
class SyncResult;
|
|
|
|
namespace Ui {
|
|
class ProtocolWidget;
|
|
}
|
|
class Application;
|
|
|
|
/**
|
|
* @brief The ProtocolWidget class
|
|
* @ingroup gui
|
|
*/
|
|
class IssuesWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit IssuesWidget(QWidget *parent = 0);
|
|
~IssuesWidget();
|
|
QSize sizeHint() const { return ownCloudGui::settingsDialogSize(); }
|
|
|
|
void storeSyncIssues(QTextStream &ts);
|
|
void showFolderErrors(const QString &folderAlias);
|
|
|
|
public slots:
|
|
void addError(const QString &folderAlias, const QString &message, ErrorCategory category);
|
|
void slotProgressInfo(const QString &folder, const ProgressInfo &progress);
|
|
void slotItemCompleted(const QString &folder, const SyncFileItemPtr &item);
|
|
void slotOpenFile(QTreeWidgetItem *item, int);
|
|
|
|
protected:
|
|
void showEvent(QShowEvent *);
|
|
void hideEvent(QHideEvent *);
|
|
|
|
signals:
|
|
void copyToClipboard();
|
|
void issueCountUpdated(int);
|
|
|
|
private slots:
|
|
void slotRefreshIssues();
|
|
void slotUpdateFolderFilters();
|
|
void slotAccountAdded(AccountState *account);
|
|
void slotAccountRemoved(AccountState *account);
|
|
void slotItemContextMenu(const QPoint &pos);
|
|
|
|
private:
|
|
void updateAccountChoiceVisibility();
|
|
AccountState *currentAccountFilter() const;
|
|
QString currentFolderFilter() const;
|
|
bool shouldBeVisible(QTreeWidgetItem *item, AccountState *filterAccount,
|
|
const QString &filterFolderAlias) const;
|
|
void cleanItems(const QString &folder);
|
|
void addItem(QTreeWidgetItem *item);
|
|
|
|
/// Add the special error widget for the category, if any
|
|
void addErrorWidget(QTreeWidgetItem *item, const QString &message, ErrorCategory category);
|
|
|
|
/// Wipes all insufficient remote storgage blacklist entries
|
|
void retryInsufficentRemoteStorageErrors(const QString &folderAlias);
|
|
|
|
/// Each insert disables sorting, this timer reenables it
|
|
QTimer _reenableSorting;
|
|
|
|
Ui::IssuesWidget *_ui;
|
|
};
|
|
}
|
|
|
|
#endif
|