Welcome to mirror list, hosted at ThFree Co, Russian Federation.

protocolwidget.h « gui « src - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8612634dce0af3817eea2e54bdeb006c2af5b9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 * 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