classicui_plat/ganes_api/inc/ganes/HgDoubleTextList.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 15 Mar 2010 12:41:34 +0200
branchRCL_3
changeset 10 9f56a4e1b8ab
parent 0 2f259fa3e83a
permissions -rw-r--r--
Revision: 201009 Kit: 201010

/*
* Copyright (c) 2009 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:     
*
*/


#ifndef HGDOUBLETEXTLIST_H_
#define HGDOUBLETEXTLIST_H_

#include <ganes/HgList.h>

class CHgDoubleTextList : public CHgList
    {
public:
    /**
     * Creates new CHgDoubleTextList.
     * 
     * @param aRect Rect that the control draws onto.
     * @param aItemCount Total count of items in the grid
     * @param aDefaultIcon Default icon to be used.
     * @param aSession Window server session for DSA. Default is NULL and DSA is disabled.
     * 
     * @return CHgDoubleTextList-object
     */
    IMPORT_C static CHgDoubleTextList* NewL ( const TRect& aRect, 
                                                    TInt aItemCount, 
                                                    CGulIcon* aDefaultIcon = NULL,
                                                    RWsSession* aSession = NULL); 

    /**
     * Destructor.
     */
    IMPORT_C virtual ~CHgDoubleTextList( );

public:
    
    /**
     * Returns preferred image size that should be used when passing images.
     */
    IMPORT_C static TSize PreferredImageSize();
    
protected: // CHgScroller
    void HandleSizeChanged();
    void HandleScrollbarVisibilityChange(TBool aVisible);
    
protected: // CHgList
    void DrawItem(TInt aIndex, const TRect& aRect) const; 
    
protected:
    CHgDoubleTextList( TInt aItemCount, 
            CGulIcon* aDefaultIcon );
    
    };

#endif /*HGDOUBLETEXTLIST_H_*/