blob: 141329aef6e6f2f036afa1932d4e30b91b0158ca [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 Lision7a166e42015-09-02 15:04:43 -040022#import <interfaces/pixmapmanipulatori.h>
Alexandre Lision3b0bd332015-03-15 18:43:07 -040023#import <call.h>
24
25class Person;
26class QPixmap;
27
Alexandre Lision7a166e42015-09-02 15:04:43 -040028namespace Interfaces {
Alexandre Lision3b0bd332015-03-15 18:43:07 -040029
Alexandre Lision7a166e42015-09-02 15:04:43 -040030 class ImageManipulationDelegate : public PixmapManipulatorI {
Alexandre Lision3b0bd332015-03-15 18:43:07 -040031
Alexandre Lision7a166e42015-09-02 15:04:43 -040032 public:
33 ImageManipulationDelegate();
34 QVariant contactPhoto(Person* c, const QSize& size, bool displayPresence = true) override;
35 virtual QByteArray toByteArray(const QVariant& pxm) override;
36 virtual QVariant personPhoto(const QByteArray& data, const QString& type = "PNG") override;
Alexandre Lision3b0bd332015-03-15 18:43:07 -040037
Alexandre Lision7a166e42015-09-02 15:04:43 -040038 QVariant callPhoto(Call* c, const QSize& size, bool displayPresence = true) override;
39 QVariant callPhoto(const ContactMethod* n, const QSize& size, bool displayPresence = true) override;
Alexandre Lision3b0bd332015-03-15 18:43:07 -040040
Alexandre Lision7a166e42015-09-02 15:04:43 -040041 /* TODO: the following methods return an empty QVariant/QByteArray */
42 QVariant numberCategoryIcon(const QVariant& p, const QSize& size, bool displayPresence = false, bool isPresent = false) override;
43 QVariant securityIssueIcon(const QModelIndex& index) override;
44 QVariant collectionIcon(const CollectionInterface* interface, PixmapManipulatorI::CollectionIconHint hint = PixmapManipulatorI::CollectionIconHint::NONE) const override;
45 QVariant securityLevelIcon(const SecurityEvaluationModel::SecurityLevel level) const override;
46 QVariant historySortingCategoryIcon(const CategorizedHistoryModel::SortedProxy::Categories cat) const override;
47 QVariant contactSortingCategoryIcon(const CategorizedContactModel::SortedProxy::Categories cat) const override;
48 QVariant userActionIcon(const UserActionElement& state) const override;
Stepan Salenikovich3a6ea302016-01-08 13:54:34 -050049 QVariant decorationRole(const QModelIndex& index) override;
50 QVariant decorationRole(const Call* c) override;
51 QVariant decorationRole(const ContactMethod* cm) override;
52 QVariant decorationRole(const Person* p) override;
Alexandre Lision3b0bd332015-03-15 18:43:07 -040053
Alexandre Lision7a166e42015-09-02 15:04:43 -040054 private:
55 //Helper
56 QPixmap drawDefaultUserPixmap(const QSize& size, bool displayPresence, bool isPresent);
57 CGImageRef resizeCGImage(CGImageRef image, const QSize& size);
58 };
Alexandre Lision7a166e42015-09-02 15:04:43 -040059
Alexandre Lision4dfcafc2015-08-20 12:43:23 -040060} // namespace Interfaces