sl@0: /* sl@0: * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * Classes used for communication between the reference dialog creator sl@0: * and the reference notifier implementations. sl@0: * sl@0: */ sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @internalTechnology sl@0: @test sl@0: */ sl@0: sl@0: #ifndef UPSNOTIFIERUTIL_H sl@0: #define UPSNOTIFIERUTIL_H sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: namespace UserPromptService sl@0: { sl@0: /** sl@0: Enum for bitmask that influences visual style or behavior of dialog. sl@0: */ sl@0: typedef enum sl@0: { sl@0: ETrustedClient = 0x0001, ///< Client SID is protected so client name is trusted sl@0: EBuiltInApp = 0x0002 ///< Built-in application ... exe loaded for Z drive. sl@0: } TUpsDialogFlags; sl@0: sl@0: /** sl@0: Contains the data needed to display a prompt. sl@0: */ sl@0: NONSHARABLE_CLASS(CPromptData) : public CBase sl@0: { sl@0: public: sl@0: IMPORT_C static CPromptData* NewL(); sl@0: IMPORT_C void InternalizeL(RReadStream& aStream); sl@0: IMPORT_C void ExternalizeL(RWriteStream& aStream) const; sl@0: ~CPromptData(); sl@0: private: sl@0: CPromptData(); sl@0: void Reset(); sl@0: public: sl@0: RBuf iClientName; ///< From AppArc, SIS registry or process filename sl@0: RBuf iVendorName; ///< Vendor name sl@0: TSecureId iClientSid; ///< SID of client application requesting the service sl@0: TSecureId iServerSid; ///< Needed to lookup localized text for service sl@0: TServiceId iServiceId; ///< ID of the requested service sl@0: RBuf iDestination; ///< The destination of the request sl@0: RBuf8 iOpaqueData; ///< The Opaque data sl@0: RPointerArray iDescriptions; ///< Array of fingerprint descriptions sl@0: TUint32 iOptions; ///< A bit field containing the set of allowed responses (CPolicy::TOptions) sl@0: TUint32 iFlags; ///< Dialog style e.g. whether client identity is trusted sl@0: }; sl@0: sl@0: class TPromptResult sl@0: { sl@0: public: sl@0: TPromptResult(); sl@0: CPolicy::TOptions iSelected; ///< The button that was pressed sl@0: TInt iDestination; ///< The destination selected if applicable. sl@0: }; sl@0: sl@0: inline TPromptResult::TPromptResult() : sl@0: iSelected(CPolicy::ENo), iDestination(0) sl@0: { sl@0: } sl@0: } sl@0: #endif // UPSNOTIFIERUTIL_H