os/textandloc/textandlocutils/sortutil/inc/SortUtil.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2002-2004 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 the License "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:  
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef SORTUTIL_H
    21 #define SORTUTIL_H
    22 
    23 //  INCLUDES
    24 #include <e32base.h>
    25 
    26 // DATA TYPES
    27 /**
    28  * Type of a sort key.
    29  */
    30 enum TSortKeyType
    31     {
    32     /// Basic sort key
    33     ESortKeyBasic,
    34     /// Pronounciation sort key
    35     ESortKeyPronounciation
    36     };
    37 
    38 // CLASS DECLARATION
    39 
    40 /**
    41  * Sort key. A pair of text and TSortKeyType.
    42  */
    43 class TSortKey
    44     {
    45 public:
    46     inline TSortKey(const TDesC& aText, TSortKeyType aType) :
    47         iText(aText), iType(aType) { }
    48 
    49     inline const TDesC& Text() const { return iText; }
    50     inline TSortKeyType Type() const { return iType; }
    51 
    52 private:
    53     TPtrC iText;
    54     TSortKeyType iType;
    55     };
    56 
    57 /**
    58  * An abstract array of TSortKey objects.
    59  */
    60 class MSortKeyArray
    61     {
    62 public:
    63     virtual ~MSortKeyArray() { }
    64     virtual TInt SortKeyCount() const =0;
    65     virtual TSortKey SortKeyAt(TInt aIndex) const =0;
    66     };
    67 
    68 
    69 /**
    70  * SortUtil API.
    71  */
    72 class MSortUtil
    73     {
    74 public:
    75     /**
    76      * Compares two MSortKeyArrays.
    77      * @see MSortKeyArray
    78      *
    79      * @param aLhs  the left-hand-side sort key array.
    80      * @param aRhs  the right-hand-side sort key array.
    81      * @return  0  if aLhs and aRhs have equal sorting order.
    82      *         >0  if aLhs is sorted after aRhs
    83      *         <0  if aLhs is sorted before aRhs.
    84      */
    85     virtual TInt CompareItems(const MSortKeyArray& aLhs, const MSortKeyArray& aRhs) const =0;
    86     };
    87 
    88 /**
    89 * CSortUtil instance gives access to MSortUtil interface.
    90 */
    91 NONSHARABLE_CLASS(CSortUtil) : public CBase
    92     {
    93     public: // Constructors and destructor
    94         IMPORT_C static CSortUtil* NewL();
    95         ~CSortUtil();
    96 
    97     public: // New functions
    98         MSortUtil* Interface() {return iInterface;}
    99 
   100     private: // Private constructors
   101         CSortUtil();
   102         void ConstructL();
   103 
   104     private: // Data
   105         MSortUtil* iInterface;
   106         RLibrary iLib;
   107     };
   108 
   109 #endif // SORTUTIL_H
   110 
   111 // End of File