blob: 8b7e43bba9b6f81d4e92be4d80803720886a6d64 [file] [log] [blame]
Stepan Salenikovich6f687072015-03-26 10:43:37 -04001/*
Stepan Salenikovichbbd6c132015-08-20 15:21:48 -04002 * Copyright (C) 2015 Savoir-faire Linux Inc.
Stepan Salenikovich6f687072015-03-26 10:43:37 -04003 * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Additional permission under GNU GPL version 3 section 7:
20 *
21 * If you modify this program, or any covered work, by linking or
22 * combining it with the OpenSSL project's OpenSSL library (or a
23 * modified version of that library), containing parts covered by the
Stepan Salenikovichbbd6c132015-08-20 15:21:48 -040024 * terms of the OpenSSL or SSLeay licenses, Savoir-faire Linux Inc.
Stepan Salenikovich6f687072015-03-26 10:43:37 -040025 * grants you additional permission to convey the resulting work.
26 * Corresponding Source for a non-source form of such a combination
27 * shall include the source code for the parts of OpenSSL used as well
28 * as that of the covered work.
29 */
30
Stepan Salenikovichbbd6c132015-08-20 15:21:48 -040031#pragma once
Stepan Salenikovich6f687072015-03-26 10:43:37 -040032
33#include <gtk/gtk.h>
34#include <memory>
Stepan Salenikovichbbd6c132015-08-20 15:21:48 -040035#include <interfaces/pixmapmanipulatori.h>
Stepan Salenikovich6f687072015-03-26 10:43:37 -040036
37Q_DECLARE_METATYPE(std::shared_ptr<GdkPixbuf>);
38
39class Person;
40
Stepan Salenikovichbbd6c132015-08-20 15:21:48 -040041namespace Interfaces {
42
43class PixbufManipulator : public PixmapManipulatorI {
Stepan Salenikovich6f687072015-03-26 10:43:37 -040044 constexpr static int FALLBACK_AVATAR_SIZE {100};
45public:
Stepan Salenikovichbbd6c132015-08-20 15:21:48 -040046 PixbufManipulator();
Stepan Salenikovich6f687072015-03-26 10:43:37 -040047
48 QVariant callPhoto(Call* c, const QSize& size, bool displayPresence = true) override;
49 QVariant callPhoto(const ContactMethod* n, const QSize& size, bool displayPresence = true) override;
50 QVariant contactPhoto(Person* c, const QSize& size, bool displayPresence = true) override;
51 QVariant personPhoto(const QByteArray& data, const QString& type = "PNG") override;
52
Stepan Salenikovichbbd6c132015-08-20 15:21:48 -040053 /* TODO: the following methods return an empty QVariant/QByteArray */
54 QVariant numberCategoryIcon(const QVariant& p, const QSize& size, bool displayPresence = false, bool isPresent = false) override;
55 QVariant securityIssueIcon(const QModelIndex& index) override;
56 QByteArray toByteArray(const QVariant& pxm) override;
57 QVariant collectionIcon(const CollectionInterface* interface, PixmapManipulatorI::CollectionIconHint hint = PixmapManipulatorI::CollectionIconHint::NONE) const override;
58 QVariant securityLevelIcon(const SecurityEvaluationModel::SecurityLevel level) const override;
59 QVariant historySortingCategoryIcon(const CategorizedHistoryModel::SortedProxy::Categories cat) const override;
60 QVariant contactSortingCategoryIcon(const CategorizedContactModel::SortedProxy::Categories cat) const override;
61 QVariant userActionIcon(const UserActionElement& state) const override;
62
Stepan Salenikovich6f687072015-03-26 10:43:37 -040063private:
64 std::shared_ptr<GdkPixbuf> scaleAndFrame(const GdkPixbuf *photo, const QSize& size);
65 std::shared_ptr<GdkPixbuf> fallbackAvatar_;
Stepan Salenikovichee8506e2015-08-13 11:35:14 -040066 std::shared_ptr<GdkPixbuf> conferenceAvatar_;
Stepan Salenikovich6f687072015-03-26 10:43:37 -040067};
68
Stepan Salenikovichbbd6c132015-08-20 15:21:48 -040069} // namespace Interfaces