DirectPrint/DirectPrintApp/engine/inc/directprintlistcapability.h
changeset 19 2275db202402
parent 11 613a5ff70823
equal deleted inserted replaced
2:acc370d7f2f6 19:2275db202402
       
     1 /*
       
     2 * Copyright (c) 2010 Kanrikogaku Kenkyusho, Ltd.
       
     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 * Kanrikogaku Kenkyusho, Ltd. - Initial contribution
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * {Description of the file}
       
    16 *
       
    17 */
       
    18 
       
    19 // Protection against nested includes
       
    20 #ifndef DIRECTPRINTLISTCAPABILITY_H
       
    21 #define DIRECTPRINTLISTCAPABILITY_H
       
    22 
       
    23 // User includes
       
    24 #include "directprintbasecapability.h"
       
    25 
       
    26 /**
       
    27  *
       
    28  *  Capability type for list type of settings
       
    29  *
       
    30  */
       
    31 class CDirectPrintListCapability : public CDirectPrintBaseCapability
       
    32 	{
       
    33 	public:     //  Constructors and destructors
       
    34 
       
    35 		CDirectPrintListCapability ();
       
    36 
       
    37 		/**
       
    38 		 *  Destructor
       
    39 		 */
       
    40 		virtual ~CDirectPrintListCapability();
       
    41 
       
    42 	public:     //  Methods derived from CBaseCapability
       
    43 
       
    44 		virtual HBufC* ListBoxTextL();
       
    45 		virtual CDirectPrintBaseCapability* CloneL();
       
    46 		virtual CAknSettingItem* SettingItemLC(TInt aIndex);
       
    47 
       
    48 	public:     // Data
       
    49 
       
    50 		// Enumeration IDs and the texts associated to the ids
       
    51 		RArray<TInt> iEnumIDs;
       
    52 		RPointerArray<HBufC> iTexts;
       
    53 
       
    54 		TInt iEnumIndex;
       
    55 	};
       
    56 
       
    57 #endif  //  DIRECTPRINTLISTCAPABILITY_H
       
    58 
       
    59 //  End of File