src/hbcore/image/hbpixmapiconrenderer_p.h
changeset 1 f7ac710697a9
child 5 627c4a0fd0e7
equal deleted inserted replaced
0:16d8024aca5e 1:f7ac710697a9
       
     1 /****************************************************************************
       
     2 **
       
     3 ** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
       
     4 ** All rights reserved.
       
     5 ** Contact: Nokia Corporation (developer.feedback@nokia.com)
       
     6 **
       
     7 ** This file is part of the HbCore module of the UI Extensions for Mobile.
       
     8 **
       
     9 ** GNU Lesser General Public License Usage
       
    10 ** This file may be used under the terms of the GNU Lesser General Public
       
    11 ** License version 2.1 as published by the Free Software Foundation and
       
    12 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
       
    13 ** Please review the following information to ensure the GNU Lesser General
       
    14 ** Public License version 2.1 requirements will be met:
       
    15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
       
    16 **
       
    17 ** In addition, as a special exception, Nokia gives you certain additional
       
    18 ** rights.  These rights are described in the Nokia Qt LGPL Exception
       
    19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
       
    20 **
       
    21 ** If you have questions regarding the use of this file, please contact
       
    22 ** Nokia at developer.feedback@nokia.com.
       
    23 **
       
    24 ****************************************************************************/
       
    25 
       
    26 #ifndef HBPIXMAPICONRENDERER_P_H_
       
    27 #define HBPIXMAPICONRENDERER_P_H_
       
    28 
       
    29 #include <hbglobal.h>
       
    30 #include <QIcon>
       
    31 
       
    32 #include "hbiconimpl_p.h"
       
    33 
       
    34 class HbMaskableIconImpl;
       
    35 
       
    36 class HB_CORE_PRIVATE_EXPORT HbPixmapIconRenderer
       
    37 {
       
    38 public:
       
    39     
       
    40     HbPixmapIconRenderer(const QPixmap & pixmap, HbIconImpl *impl);
       
    41     
       
    42     ~HbPixmapIconRenderer();
       
    43     
       
    44     void setColor(const QColor & color)
       
    45     {
       
    46         this->iconColor = color;
       
    47     }
       
    48     
       
    49     void setMode(QIcon::Mode mode)
       
    50     {
       
    51         this->iconMode = mode;
       
    52     }
       
    53     
       
    54     QColor color()
       
    55     {
       
    56         return iconColor;
       
    57     }
       
    58     
       
    59     QIcon::Mode mode() 
       
    60     {
       
    61         return iconMode;
       
    62     }
       
    63 
       
    64     void draw(QPainter* painter,
       
    65               const QPointF &topLeft,
       
    66               const QPainterPath &clipPath,
       
    67               HbMaskableIconImpl * maskIconData);
       
    68 
       
    69     void destroyMaskedData(HbIconMaskedData *data);
       
    70 
       
    71 private:
       
    72 
       
    73     void applyIconProperties();
       
    74 
       
    75     QPixmap getMaskedPixmap(HbMaskableIconImpl * maskIconData);
       
    76 
       
    77     void doDraw(QPainter * painter,
       
    78                 const QPointF & topLeft,
       
    79                 const QPixmap & finalPixmap,
       
    80                 const QPainterPath & clipPath);
       
    81 
       
    82     QColor                  iconColor;
       
    83     QIcon::Mode             iconMode;
       
    84     bool                    iconPropertiesApplied;
       
    85     QPixmap                 pixmapData;
       
    86     HbIconImpl *            iconImpl;
       
    87 };
       
    88 
       
    89 #endif
       
    90