nextcloud-desktop/src/gui/protocolwidget.h
Christian Kamm 59f2e0634e Protocol: Correct sorting by size #6326
Previously we were sorting by size string, where
"6 MB" < "3 KB".
2018-01-23 12:02:16 +01:00

106 lines
3.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;
/**
* The items used in the protocol and issue QTreeWidget
*
* Special sorting: It allows items for global entries to be moved to the top if the
* sorting section is the "Time" column.
*/
class ProtocolItem : public QTreeWidgetItem
{
public:
using QTreeWidgetItem::QTreeWidgetItem;
// Shared with IssueWidget
static ProtocolItem *create(const QString &folder, const SyncFileItem &item);
static QString timeString(QDateTime dt, QLocale::FormatType format = QLocale::NarrowFormat);
// accessors for extra data stored in the item
static QString folderName(const QTreeWidgetItem *item);
static void setFolderName(QTreeWidgetItem *item, const QString &folderName);
static QString filePath(const QTreeWidgetItem *item);
static void setFilePath(QTreeWidgetItem *item, const QString &filePath);
static QDateTime timestamp(const QTreeWidgetItem *item);
static void setTimestamp(QTreeWidgetItem *item, const QDateTime &timestamp);
static SyncFileItem::Status status(const QTreeWidgetItem *item);
static void setStatus(QTreeWidgetItem *item, SyncFileItem::Status status);
static quint64 size(const QTreeWidgetItem *item);
static void setSize(QTreeWidgetItem *item, quint64 size);
static SyncJournalFileRecord syncJournalRecord(QTreeWidgetItem *item);
static Folder *folder(QTreeWidgetItem *item);
static void openContextMenu(QPoint globalPos, QTreeWidgetItem *item, QWidget *parent);
private:
bool operator<(const QTreeWidgetItem &other) const override;
};
/**
* @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(); }
void storeSyncActivity(QTextStream &ts);
public slots:
void slotItemCompleted(const QString &folder, const SyncFileItemPtr &item);
void slotOpenFile(QTreeWidgetItem *item, int);
protected:
void showEvent(QShowEvent *);
void hideEvent(QHideEvent *);
private slots:
void slotItemContextMenu(const QPoint &pos);
signals:
void copyToClipboard();
private:
Ui::ProtocolWidget *_ui;
};
}
#endif // PROTOCOLWIDGET_H