contentstorage/caclient/s60/inc/cabitmapadapter.h
changeset 66 32469d7d46ff
child 83 156f692b1687
equal deleted inserted replaced
61:8e5041d13c84 66:32469d7d46ff
       
     1 /*
       
     2  * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  *
       
    14  * Description:
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef BITMAPADAPTER_H
       
    19 #define BITMAPADAPTER_H
       
    20 
       
    21 // INCLUDES
       
    22 
       
    23 // CLASS DECLARATION
       
    24 #include <QList>
       
    25 
       
    26 class CFbsBitmap;
       
    27 
       
    28 /**
       
    29  *  CaBitmapAdapter
       
    30  *
       
    31  */
       
    32 class CaBitmapAdapter
       
    33 {
       
    34 public:
       
    35 
       
    36     //Static convertion methods between Symbian and Qt objects
       
    37 
       
    38     /**
       
    39      * Make bitmap copy, used to get rid of compression for extended bitmap
       
    40      * @param input input bitmap.
       
    41      * @return copied bitmap.
       
    42      */
       
    43     static CFbsBitmap *copyBitmapLC(CFbsBitmap *input);
       
    44     
       
    45     /**
       
    46      * Convert bitmap
       
    47      * @param input bitmap.
       
    48      * @return qPixmap.
       
    49      */
       
    50     static QPixmap fromSymbianCFbsBitmap(CFbsBitmap *aBitmap);
       
    51     
       
    52     /**
       
    53      * Convert from bitmap and mask to qpixmap
       
    54      * @param input bitmap.
       
    55      * @param pixmap to prepare.
       
    56      * @return void.
       
    57      */
       
    58     static void fromBitmapAndMaskToPixmapL(CFbsBitmap* fbsBitmap, CFbsBitmap* fbsMask, QPixmap& pixmap);
       
    59 
       
    60 };
       
    61 
       
    62 #endif // BITMAPADAPTER_H