uigraphics/AknIcon/inc/AknIconFormatHandlerFactory.h
changeset 0 05e9090e2422
equal deleted inserted replaced
-1:000000000000 0:05e9090e2422
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Factory for different icon format handlers.
       
    15 *
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef AKN_ICON_FORMAT_HANDLER_FACTORY_H
       
    22 #define AKN_ICON_FORMAT_HANDLER_FACTORY_H
       
    23 
       
    24 // INCLUDES
       
    25 #include <e32std.h>
       
    26 #include <gdi.h>
       
    27 // FORWARD DECLARATIONS
       
    28 class MAknIconFormatHandler;
       
    29 
       
    30 // CLASS DECLARATION
       
    31 
       
    32 /**
       
    33 * AknIconFormatFactory
       
    34 */
       
    35 class AknIconFormatHandlerFactory
       
    36 	{
       
    37     public:  // New methods
       
    38         
       
    39         static MAknIconFormatHandler* NewIconFormatHandlerL(
       
    40             const TInt aType ,TSize BitmapSize=TSize(0,0),TDisplayMode aBitmapDspMode=ENone,TDisplayMode aMaskDspMode=ENone);
       
    41 
       
    42     private:
       
    43         // Private constructor.
       
    44         AknIconFormatHandlerFactory();
       
    45     };
       
    46 
       
    47 #endif      // AKN_ICON_FORMAT_HANDLER_FACTORY_H
       
    48             
       
    49 // End of File