Skip to content
Snippets Groups Projects
Select Git revision
  • bab169df1851dc6b10e5cddb4b2d518cad68ac54
  • master default protected
  • release/202005
  • release/202001
  • release/201912
  • release/201911
  • release/201910
  • release/201908
  • release/201906
  • release/201905
  • release/201904
  • release/201903
  • release/201902
  • release/201901
  • release/201812
  • release/201811
  • release/201808
  • releases/beta1
  • packaging
  • native
  • release-0.2.x
  • 1.0.0
  • 0.2.0
  • 0.1.1
  • 0.1.0
25 results

contactdelegate.cpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    contactdelegate.cpp 4.44 KiB
    /***************************************************************************
     * Copyright (C) 2015-2016 by Savoir-faire Linux                                *
     * Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.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 3 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.                            *
     *                                                                         *
     * You should have received a copy of the GNU General Public License       *
     * along with this program.  If not, see <http://www.gnu.org/licenses/>.   *
     **************************************************************************/
    
    #include "contactdelegate.h"
    
    #include "person.h"
    #include "contactmethod.h"
    
    ContactDelegate::ContactDelegate(QObject *parent)
        : QStyledItemDelegate(parent)
    {
    }
    
    
    void
    ContactDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option,
                           const QModelIndex &index) const
    {
        QStyleOptionViewItem opt = option;
        initStyleOption(&opt, index);
    
        if (index.column() == 0) {
            opt.text.clear();
            QStyle *style = opt.widget ? opt.widget->style() : QApplication::style();
            style->drawControl(QStyle::CE_ItemViewItem, &opt, painter, opt.widget);
            QRect rect = opt.rect;
            QPalette::ColorGroup cg = opt.state & QStyle::State_Enabled ?
                        QPalette::Normal : QPalette::Disabled;
            if (cg == QPalette::Normal && !(opt.state & QStyle::State_Active))
                cg = QPalette::Inactive;
            painter->setPen(opt.palette.color(cg, QPalette::Text));
            painter->setOpacity(1.0);
            QVariant var_c = index.child(0,0).data(
                        static_cast<int>(Person::Role::Object));
            if (var_c.isValid()) {
                Person *c = var_c.value<Person *>();
                painter->drawText(QRect(rect.left()+sizeImage_+5, rect.top(),
                                        rect.width(), rect.height()/2),
                                        opt.displayAlignment, c->formattedName());
                QVariant var_p = c->photo();
                if (var_p.isValid()) {
                    painter->drawImage(QRect(rect.left()+1, rect.top()+1,
                                             sizeImage_, sizeImage_),
                                       var_p.value<QImage>());
                } else {
                    QImage defaultImage(":images/account.png");
                    painter->drawImage(QRect(rect.left(), rect.top(),
                                             sizeImage_, sizeImage_),
                                       defaultImage);
                }
                switch (c->phoneNumbers().size()) {
                case 0:
                    break;
                case 1:
                {