blob: 4a2e5d823bb65f5f5cceac11aafeb25d99471af6 [file] [log] [blame]
Alexandre Lision3b0bd332015-03-15 18:43:07 -04001/*
Alexandre Lision7a166e42015-09-02 15:04:43 -04002 * Copyright (C) 2015 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.
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
24 * terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
25 * 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 */
Alexandre Lision3b0bd332015-03-15 18:43:07 -040030
31#import <QuartzCore/QuartzCore.h>
32
Alexandre Lision7a166e42015-09-02 15:04:43 -040033#import <interfaces/pixmapmanipulatori.h>
Alexandre Lision3b0bd332015-03-15 18:43:07 -040034#import <call.h>
35
36class Person;
37class QPixmap;
38
Alexandre Lision7a166e42015-09-02 15:04:43 -040039namespace Interfaces {
Alexandre Lision3b0bd332015-03-15 18:43:07 -040040
Alexandre Lision7a166e42015-09-02 15:04:43 -040041 class ImageManipulationDelegate : public PixmapManipulatorI {
Alexandre Lision3b0bd332015-03-15 18:43:07 -040042
Alexandre Lision7a166e42015-09-02 15:04:43 -040043 public:
44 ImageManipulationDelegate();
45 QVariant contactPhoto(Person* c, const QSize& size, bool displayPresence = true) override;
46 virtual QByteArray toByteArray(const QVariant& pxm) override;
47 virtual QVariant personPhoto(const QByteArray& data, const QString& type = "PNG") override;
Alexandre Lision3b0bd332015-03-15 18:43:07 -040048
Alexandre Lision7a166e42015-09-02 15:04:43 -040049 QVariant callPhoto(Call* c, const QSize& size, bool displayPresence = true) override;
50 QVariant callPhoto(const ContactMethod* n, const QSize& size, bool displayPresence = true) override;
Alexandre Lision3b0bd332015-03-15 18:43:07 -040051
Alexandre Lision7a166e42015-09-02 15:04:43 -040052 /* TODO: the following methods return an empty QVariant/QByteArray */
53 QVariant numberCategoryIcon(const QVariant& p, const QSize& size, bool displayPresence = false, bool isPresent = false) override;
54 QVariant securityIssueIcon(const QModelIndex& index) override;
55 QVariant collectionIcon(const CollectionInterface* interface, PixmapManipulatorI::CollectionIconHint hint = PixmapManipulatorI::CollectionIconHint::NONE) const override;
56 QVariant securityLevelIcon(const SecurityEvaluationModel::SecurityLevel level) const override;
57 QVariant historySortingCategoryIcon(const CategorizedHistoryModel::SortedProxy::Categories cat) const override;
58 QVariant contactSortingCategoryIcon(const CategorizedContactModel::SortedProxy::Categories cat) const override;
59 QVariant userActionIcon(const UserActionElement& state) const override;
Alexandre Lision3b0bd332015-03-15 18:43:07 -040060
Alexandre Lision7a166e42015-09-02 15:04:43 -040061 private:
62 //Helper
63 QPixmap drawDefaultUserPixmap(const QSize& size, bool displayPresence, bool isPresent);
64 CGImageRef resizeCGImage(CGImageRef image, const QSize& size);
65 };
66
67} // namespace Interfaces
68