blob: 9f7cf3122e0781548f9cbb64b4eb3cb06e718f15 [file] [log] [blame]
Alexandre Lision3b0bd332015-03-15 18:43:07 -04001/*
Alexandre Lision9fe374b2016-01-06 10:17:31 -05002 * Copyright (C) 2015-2016 Savoir-faire Linux Inc.
Alexandre Lision3b0bd332015-03-15 18:43:07 -04003 * Author: Alexandre Lision <alexandre.lision@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.
Alexandre Lision3b0bd332015-03-15 18:43:07 -040018 */
Alexandre Lision3b0bd332015-03-15 18:43:07 -040019
20#import <QuartzCore/QuartzCore.h>
21
Alexandre Lision43e91bc2016-04-19 18:04:52 -040022//Qt
23#import <QSize>
Alexandre Lision196545b2016-05-13 17:05:13 -040024#import <QPair>
Alexandre Lision4f264622016-05-08 17:08:56 -040025#import <QtGui/qpixmap.h>
Alexandre Lision43e91bc2016-04-19 18:04:52 -040026
27//Ring
Alexandre Lision7a166e42015-09-02 15:04:43 -040028#import <interfaces/pixmapmanipulatori.h>
Alexandre Lision3b0bd332015-03-15 18:43:07 -040029#import <call.h>
30
31class Person;
Alexandre Lision4f264622016-05-08 17:08:56 -040032class QString;
Alexandre Lision3b0bd332015-03-15 18:43:07 -040033
Alexandre Lision7a166e42015-09-02 15:04:43 -040034namespace Interfaces {
Alexandre Lision3b0bd332015-03-15 18:43:07 -040035
Alexandre Lision7a166e42015-09-02 15:04:43 -040036 class ImageManipulationDelegate : public PixmapManipulatorI {
Alexandre Lision3b0bd332015-03-15 18:43:07 -040037
Alexandre Lision7a166e42015-09-02 15:04:43 -040038 public:
Anthony Léonardd7952d52017-12-04 13:23:05 -050039 static constexpr int IMG_SIZE = 80;
40
Alexandre Lision7a166e42015-09-02 15:04:43 -040041 ImageManipulationDelegate();
42 QVariant contactPhoto(Person* c, const QSize& size, bool displayPresence = true) override;
43 virtual QByteArray toByteArray(const QVariant& pxm) override;
Kateryna Kostiukeab49b62018-07-12 09:26:17 -040044 virtual QVariant personPhoto(const QByteArray& data, const QString& type = nil) override;
Anthony Léonardd7952d52017-12-04 13:23:05 -050045 QVariant conversationPhoto(const lrc::api::conversation::Info& conversation,
46 const lrc::api::account::Info& accountInfo,
47 const QSize& size = QSize(IMG_SIZE, IMG_SIZE),
48 bool displayPresence = true) override;
Alexandre Lision3b0bd332015-03-15 18:43:07 -040049
Alexandre Lision7a166e42015-09-02 15:04:43 -040050 QVariant callPhoto(Call* c, const QSize& size, bool displayPresence = true) override;
51 QVariant callPhoto(const ContactMethod* n, const QSize& size, bool displayPresence = true) override;
Alexandre Lision3b0bd332015-03-15 18:43:07 -040052
Alexandre Lision7a166e42015-09-02 15:04:43 -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 QVariant collectionIcon(const CollectionInterface* interface, PixmapManipulatorI::CollectionIconHint hint = PixmapManipulatorI::CollectionIconHint::NONE) const override;
57 QVariant securityLevelIcon(const SecurityEvaluationModel::SecurityLevel level) const override;
58 QVariant historySortingCategoryIcon(const CategorizedHistoryModel::SortedProxy::Categories cat) const override;
59 QVariant contactSortingCategoryIcon(const CategorizedContactModel::SortedProxy::Categories cat) const override;
60 QVariant userActionIcon(const UserActionElement& state) const override;
Stepan Salenikovich3a6ea302016-01-08 13:54:34 -050061 QVariant decorationRole(const QModelIndex& index) override;
62 QVariant decorationRole(const Call* c) override;
63 QVariant decorationRole(const ContactMethod* cm) override;
64 QVariant decorationRole(const Person* p) override;
Alexandre Lision43e91bc2016-04-19 18:04:52 -040065 QVariant decorationRole(const Account* acc) override;
Alexandre Lision3b0bd332015-03-15 18:43:07 -040066
Alexandre Lision7a166e42015-09-02 15:04:43 -040067 private:
68 //Helper
Anthony Léonardc40b3472017-08-01 15:19:17 -040069 QPixmap drawDefaultUserPixmap(const QSize& size, const char color, const char letter);
Andreas Traczyk87c999f2018-04-12 17:38:25 -040070 QPixmap drawDefaultUserPixmapUriOnly(const QSize& size, const char color);
Alexandre Lision7a166e42015-09-02 15:04:43 -040071 CGImageRef resizeCGImage(CGImageRef image, const QSize& size);
Alexandre Lisionf02a32b2016-04-19 15:01:07 -040072
Alexandre Lision4f264622016-05-08 17:08:56 -040073 QHash<QString, QPixmap> m_hDefaultUserPixmap;
Alexandre Lision196545b2016-05-13 17:05:13 -040074 QHash<QString, QPair<QMetaObject::Connection, QPixmap>> m_hContactsPixmap;
Anthony Léonardd7952d52017-12-04 13:23:05 -050075 QHash<QString, QPixmap> convPixmCache;
Anthony Léonardc40b3472017-08-01 15:19:17 -040076 static const QColor avatarColors_[];
Alexandre Lision4f264622016-05-08 17:08:56 -040077
Alexandre Lisionf02a32b2016-04-19 15:01:07 -040078 /**
79 * Return a version of size destSize centered of the bigger photo
80 */
81 QPixmap crop(QPixmap& photo, const QSize& destSize);
Alexandre Lision43e91bc2016-04-19 18:04:52 -040082
83 const QSize decorationSize = {80,80};
Alexandre Lision7a166e42015-09-02 15:04:43 -040084 };
Alexandre Lision7a166e42015-09-02 15:04:43 -040085
Alexandre Lision4dfcafc2015-08-20 12:43:23 -040086} // namespace Interfaces