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

userstatusconnector.cpp « libsync « src - github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 178e8d7948cc97c12b4409ac3ae95ed04f93fa6e (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
 * Copyright (C) by Felix Weilbach <felix.weilbach@nextcloud.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.
 */

#include "userstatusconnector.h"
#include "theme.h"

namespace OCC {

UserStatus::UserStatus() = default;

UserStatus::UserStatus(
    const QString &id, const QString &message, const QString &icon,
    OnlineStatus state, bool messagePredefined, const Optional<ClearAt> &clearAt)
    : _id(id)
    , _message(message)
    , _icon(icon)
    , _state(state)
    , _messagePredefined(messagePredefined)
    , _clearAt(clearAt)
{
}

QString UserStatus::id() const
{
    return _id;
}

QString UserStatus::message() const
{
    return _message;
}

QString UserStatus::icon() const
{
    return _icon;
}

auto UserStatus::state() const -> OnlineStatus
{
    return _state;
}

bool UserStatus::messagePredefined() const
{
    return _messagePredefined;
}

QUrl UserStatus::stateIcon() const
{
    switch (_state) {
    case UserStatus::OnlineStatus::Away:
        return Theme::instance()->statusAwayImageSource();

    case UserStatus::OnlineStatus::DoNotDisturb:
        return Theme::instance()->statusDoNotDisturbImageSource();

    case UserStatus::OnlineStatus::Invisible:
    case UserStatus::OnlineStatus::Offline:
        return Theme::instance()->statusInvisibleImageSource();

    case UserStatus::OnlineStatus::Online:
        return Theme::instance()->statusOnlineImageSource();
    }

    Q_UNREACHABLE();
}

Optional<ClearAt> UserStatus::clearAt() const
{
    return _clearAt;
}

void UserStatus::setId(const QString &id)
{
    _id = id;
}

void UserStatus::setMessage(const QString &message)
{
    _message = message;
}

void UserStatus::setState(OnlineStatus state)
{
    _state = state;
}

void UserStatus::setIcon(const QString &icon)
{
    _icon = icon;
}

void UserStatus::setMessagePredefined(bool value)
{
    _messagePredefined = value;
}

void UserStatus::setClearAt(const Optional<ClearAt> &dateTime)
{
    _clearAt = dateTime;
}


UserStatusConnector::UserStatusConnector(QObject *parent)
    : QObject(parent)
{
}

UserStatusConnector::~UserStatusConnector() = default;
}