Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Classes used for communication between the reference dialog creator
16 * and the reference notifier implementations.
27 #ifndef UPSNOTIFIERUTIL_H
28 #define UPSNOTIFIERUTIL_H
33 #include <ups/policy.h>
34 #include <ups/upsconst.h>
35 #include <ups/upstypes.h>
37 namespace UserPromptService
40 Enum for bitmask that influences visual style or behavior of dialog.
44 ETrustedClient = 0x0001, ///< Client SID is protected so client name is trusted
45 EBuiltInApp = 0x0002 ///< Built-in application ... exe loaded for Z drive.
49 Contains the data needed to display a prompt.
51 NONSHARABLE_CLASS(CPromptData) : public CBase
54 IMPORT_C static CPromptData* NewL();
55 IMPORT_C void InternalizeL(RReadStream& aStream);
56 IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
62 RBuf iClientName; ///< From AppArc, SIS registry or process filename
63 RBuf iVendorName; ///< Vendor name
64 TSecureId iClientSid; ///< SID of client application requesting the service
65 TSecureId iServerSid; ///< Needed to lookup localized text for service
66 TServiceId iServiceId; ///< ID of the requested service
67 RBuf iDestination; ///< The destination of the request
68 RBuf8 iOpaqueData; ///< The Opaque data
69 RPointerArray<HBufC> iDescriptions; ///< Array of fingerprint descriptions
70 TUint32 iOptions; ///< A bit field containing the set of allowed responses (CPolicy::TOptions)
71 TUint32 iFlags; ///< Dialog style e.g. whether client identity is trusted
78 CPolicy::TOptions iSelected; ///< The button that was pressed
79 TInt iDestination; ///< The destination selected if applicable.
82 inline TPromptResult::TPromptResult() :
83 iSelected(CPolicy::ENo), iDestination(0)
87 #endif // UPSNOTIFIERUTIL_H