diff -r fc42a86c98e3 -r 694fa80c203c textinput/peninputcommonctrls/inc/peninputdropdownlist/peninputlistmultirowwithiconwithbubble.h --- a/textinput/peninputcommonctrls/inc/peninputdropdownlist/peninputlistmultirowwithiconwithbubble.h Wed Jun 23 04:57:58 2010 +0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,122 +0,0 @@ -/* -* 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 C_CLISTMULTIROWWITHICONWITHBUBBLE_H -#define C_CLISTMULTIROWWITHICONWITHBUBBLE_H - -// INCLUDES -#include -#include - -#include "peninputlist.h" -#include "peninputcandidate.h" -#include "peninputlistmultirowwithicon.h" - -// class forward decalaration -class MFepCtrlDropdownListContext; - -/** - * Multi rows list with icon for drop-down list - * - * Multi rows list with icon for drop-down list - * - * @lib FepCtrlDropdownList.lib - * @since S60 v3.2 - */ -NONSHARABLE_CLASS(CListMultiRowWithIconWithBubble) : public CListMultiRowWithIcon - { - -public: // Methods - - /** - * Create a object of CListMultiRowWithIcon, static method - * - * @since S60 v3.2 - * @param aManager Pointer to the list manager - * @param iOwner The drop down list - * @return The CListMultiRowWithIcon pointer. - */ - static CListMultiRowWithIconWithBubble* NewL(CListManager* aManager, - MFepCtrlDropdownListContext* iOwner); - - /** - * Destructor - * - * @since S60 v3.2 - */ - virtual ~CListMultiRowWithIconWithBubble(); - -// from base class CListMultiRowWithIcon - - /** - * Deal with the pointer down event. - * - * @since S60 v3.2 - * @param aPoint The point of the mouse - * @return None. - */ - virtual void HandlePointerDownL(const TPoint& aPoint); - - /** - * Deal with the pointer up event. - * - * @since S60 v3.2 - * @param aPoint The point of the mouse - * @return None. - */ - virtual void HandlePointerUpL(const TPoint& aPoint); - - /** - * Deal with the pointer drag event. - * - * @since S60 v3.2 - * @param aPoint The point of the mouse - * @return None. - */ - virtual void HandlePointerDragL(const TPoint& aPoint); - -protected: // Methods - - /** - * Constructor. - * - * @param aManager The list manager - * @param aOwner The context of the drop down list - * @since S60 v3.2 - */ - CListMultiRowWithIconWithBubble(CListManager* aManager, MFepCtrlDropdownListContext* aOwner); - -// from base class CList - - /** - * Compare rects equal or not. - * - * @since S60 v3.2 - * @param aSrcRect The source rect - * @param aDesRect The destination rect - * @return ETrue If the two rects are equal. - */ - virtual TBool CompareRect(const TRect& aSrcRect, const TRect& aDesRect); - -protected: - - - }; - -#endif //C_CLISTMULTIROWWITHICONWITHBUBBLE_H - -// End Of File