fep/aknfep/UiPlugins/AknFepUiInterface/AvkonImpl/inc/AknFepUIAvkonCtrlJapanesePredictiveCellListBoxData.h
changeset 36 a7632c26d895
parent 35 0f326f2e628e
child 42 b3eaa440ab06
--- a/fep/aknfep/UiPlugins/AknFepUiInterface/AvkonImpl/inc/AknFepUIAvkonCtrlJapanesePredictiveCellListBoxData.h	Fri Jul 23 16:49:01 2010 +0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,107 +0,0 @@
-/*
-* Copyright (c) 2003 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:            Predictive Candidate list
-*
-*/
-
-
-
-
-
-
-
-
-
-
-
-
-#ifndef CAKNFEPUICTRLJAPANESEPREDICTIVECELLLISTBOXDATA_H
-#define CAKNFEPUICTRLJAPANESEPREDICTIVECELLLISTBOXDATA_H
-
-// INCLUDES
-
-// CONSTANTS
-
-// FORWARD DECLARATIONS
-
-// CLASS DECLARATION
-
-/**
-*  CAknFepUICtrlJapanesePredictiveCellListBoxData class.
-*
-*  @lib AknFep.lib
-*  @since 2.6
-*/
-NONSHARABLE_CLASS(CAknFepUICtrlJapanesePredictiveCellListBoxData)
-        : public CFormattedCellListBoxData
-    {
-    public:  // Constructors and destructor
-        /**
-        * Two-phased constructor.
-        */
-        static CAknFepUICtrlJapanesePredictiveCellListBoxData* NewL();
-
-    public: // New functions
-        /**
-        * Set a starting x-point and ending to highlight
-        * @since 2.6
-        * @param aHighlightStartXPos    a starting x-point
-        * @param aHighlightEndXPos      a ending x-point
-        */
-        void SetHighlightArea(TInt aHighlightStartXPos,
-                              TInt aHighlightEndXPos);
-
-    public: // Functions from CFormattedCellListBoxData
-
-        /**
-        * From CFormattedCellListBoxData Draw() is the most important method in
-        * CAknFepUICtrlJapanesePredictiveCellListBoxData.
-        * This is the only method that needs to be implemented in this class and
-        * it draws the whole listi tem.
-        * @since 0.0
-        * @param aProperties Properties attached to the list item
-        * @param aGc Graphics context used for drawing the list item
-        * @param aText a text string describing the list item cells
-        * @param aRect the area of the screen for the whole list item
-        * @param aHighlight whether the list item is selected
-        * @param aColors the colours used for drawing the item
-        * @return None.
-        */
-        virtual void Draw(TListItemProperties aProperties,
-                          CWindowGc& aGc,
-                          const TDesC* aText,
-                          const TRect& aRect,
-                          TBool aHighlight,
-                          const TColors& aColors) const;
-
-        /**
-        * From CFormattedCellListBoxData
-        * Show hightlight area in listbox
-        * @since 2.6
-        * @param aGc        Gc
-        * @param aItemRect  rect to highlight
-        * @param aHighlight ETrue is highlight. EFalse is non-highlight.
-        */
-        void DrawDefaultHighlight(CWindowGc &aGc,
-                                  const TRect &aItemRect,
-                                  TBool aHighlight) const;
-
-    private:    // Data
-        TInt iHighlightStartXPos;
-        TInt iHighlightEndXPos;
-    };
-
-#endif  // CAKNFEPUICTRLJAPANESEPREDICTIVECELLLISTBOXDATA_H
-
-// End of File