epoc32/include/app/cpbkpocaddressselect.h
branchSymbian2
changeset 2 2fe1408b6811
parent 1 666f914201fb
child 4 837f303aceeb
equal deleted inserted replaced
1:666f914201fb 2:2fe1408b6811
     1 cpbkpocaddressselect.h
     1 /*
       
     2 * Copyright (c) 2002 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 "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *       Phonebook POC number selection dialog. This dialog implements the
       
    16 *       POC number selection logic of Phonebook.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef __CPbkPocAddressSelect_H__
       
    22 #define __CPbkPocAddressSelect_H__
       
    23 
       
    24 //  INCLUDES
       
    25 #include "CPbkAddressSelect.h"
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30  * Phonebook POC number selection dialog. This dialog implements the
       
    31  * POC number selection logic of Phonebook.
       
    32  */
       
    33 class CPbkPocAddressSelect : public CPbkAddressSelect
       
    34     {
       
    35     public:  // Interface
       
    36         /**
       
    37          * Constructor.
       
    38          */
       
    39         IMPORT_C CPbkPocAddressSelect();
       
    40 
       
    41         /**
       
    42          * Parameters for ExecuteLD(TParams&).
       
    43          *
       
    44          * @see CPbkAddressSelect::TBaseParams
       
    45          * @see ExecuteLD(TParams&)
       
    46          */
       
    47         class TParams : public CPbkAddressSelect::TBaseParams
       
    48             {
       
    49             public:
       
    50                 /**
       
    51                  * Constructor.
       
    52                  * @param aContactItem  Contact from which to select a POC address.
       
    53                  */
       
    54                 IMPORT_C TParams(const CPbkContactItem& aContact);
       
    55 
       
    56             private:  // Spare data
       
    57                 TInt32 iSpare1;
       
    58             };
       
    59 
       
    60         /**
       
    61          * Runs the POC address selection query (if necessary).
       
    62          *
       
    63          * @param aParams   Parameters and return values of the query.
       
    64          * @return  ETrue if query was accepted, EFalse if canceled.
       
    65          * @see TParams
       
    66          */
       
    67         IMPORT_C TBool ExecuteLD(TParams& aParams);
       
    68         
       
    69         /**
       
    70          * Destructor.
       
    71          */
       
    72         IMPORT_C ~CPbkPocAddressSelect();
       
    73 
       
    74     private:  // from CPbkAddressSelect
       
    75         IMPORT_C TBool AddressField(const TPbkContactItemField& aField) const;
       
    76         IMPORT_C void NoAddressesL();
       
    77         IMPORT_C const TDesC& QueryTitleL();
       
    78         IMPORT_C TInt QuerySoftkeysResource() const;
       
    79 
       
    80     private: // data members
       
    81         /// Own: Title for POC number selection list
       
    82         HBufC* iQueryTitle;
       
    83         // Spare data
       
    84         TInt32 iSpare1;
       
    85     };
       
    86 
       
    87 
       
    88 #endif // __CPbkPocAddressSelect_H__
       
    89 
       
    90 // End of File