uifw/EikStd/coctlinc/AknDoubleSpanScrollIndicatorItem.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 11 May 2010 16:27:42 +0300
branchRCL_3
changeset 23 3d340a0166ff
parent 4 8ca85d2f0db7
child 55 aecbbf00d063
permissions -rw-r--r--
Revision: 201017 Kit: 201019

/*
* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  Indicator item for double span scroll bar.
*    
*
*/


#ifndef __AKNDOUBLESPANSCROLLINDICATORITEM_H
#define __AKNDOUBLESPANSCROLLINDICATORITEM_H

#include <e32base.h>
#include <AknsItemID.h>

class MAknsSkinInstance;
class CFbsBitmap;

NONSHARABLE_CLASS(CAknDoubleSpanScrollIndicatorItem) : public CBase
	{
public: // public construction and destruction methods
   
   /**
    * Two-phased constructor.
    *
    * @since    2.6
    * @return   Newly constructed object.
    */
    static CAknDoubleSpanScrollIndicatorItem* NewL(TBool aRotated,
        TAknsItemID aTopItem,
        TInt        aTopItemBitmapId,
        TInt        aTopItemMaskId,
        TAknsItemID aMiddleItem,
        TInt        aMiddleItemBitmapId,
        TInt        aMiddleItemMaskId,
        TAknsItemID aBottomItem,
        TInt        aBottomItemBitmapId,
        TInt        aBottomItemMaskId
        );
    
    /**
     * Creates only a container for bitmaps
     *
     * @since   5.0
     * @return  Newly constructed object, with
     *          NULL bitmap pointers.
     */
    static CAknDoubleSpanScrollIndicatorItem* NewL();

   /**
    * Destructor.
    *
    * @since    2.6
    */
	~CAknDoubleSpanScrollIndicatorItem(); 

public: // new methods


private: // new methods

   /**
    * C++ default constructor.
    *
    * @since    2.6
    */
	CAknDoubleSpanScrollIndicatorItem();
    
   /**
    * By default Symbian 2nd phase constructor is private.
    *
    * @since    2.6
    */
    void ConstructL(TBool aRotated,
        TAknsItemID aTopItem,
        TInt        aTopItemBitmapId,
        TInt        aTopItemMaskId,
        TAknsItemID aMiddleItem,
        TInt        aMiddleItemBitmapId,
        TInt        aMiddleItemMaskId,
        TAknsItemID aBottomItem,
        TInt        aBottomItemBitmapId,
        TInt        aBottomItemMaskId
        );


public: // data
    TAknsItemID iTopId;
    TAknsItemID iMidId;
    TAknsItemID iBottomId;
    TSize       iItemSize;
    };

#endif