Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
2 * Copyright (c) 2003-2005 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Contains common resource declarations for the AIWFW.
23 #include <aiwcommon.hrh>
27 // STRUCTURE DEFINITIONS
29 // -----------------------------------------------------------------------------
30 // Option item for a criteria.
31 // -----------------------------------------------------------------------------
32 STRUCT AIW_CRITERIA_OPTION
36 // -----------------------------------------------------------------------------
38 // Resource structure to define criteria item consumer.
39 // -----------------------------------------------------------------------------
43 STRUCT AIW_CRITERIA_ITEM
45 // Criteria ID to be used in UI elements referring to this criteria
46 // By default the ID should be same as the serviceCmd, but it can be
47 // different as well e.g. for mapping old menu items to use AIW
48 // This can be consumer defined or predefined, if common interest
52 // --------------------------------------------------------------
53 // Actual criteria data used when resolving providers from which
54 // a consumer is interested in.
55 // --------------------------------------------------------------
57 // Command ID for service command, mandatory.
58 LONG serviceCmd = KAiwCmdNone;
60 // Content MIME type, event type or any agreed one.
61 LTEXT8 contentType = "";
63 // Services class tells what kind of service is expected from
64 // provider. See TAiwServiceClass enum for allowed values.
65 // Optional, if not defined the default (KAiwClassMenu) is used.
66 LONG serviceClass = KAiwClassMenu;
68 // --------------------------------------------------------------
69 // Additional options, if any.
70 // --------------------------------------------------------------
72 // Defines UID for default provider. If provider for this
73 // UID exists, all the setup calls will be forwarded to it
74 // first (eg. if default provider implements 'menu' service class, it will
75 // be the first provider to insert its menu items to the consumer menu).
76 LONG defaultProvider = 0;
78 // The maximum number of providers allowed for the criteria item.
79 // There might be cases to limit the number of providers, e.g. for
80 // limiting the number of menu items. Maximum is 255 providers per interest.
81 BYTE maxProviders = 0xff;
83 // Other options bits (8 bits reserved).
86 // Reserved for extensions.
91 // Interest is an array of criteria items.
95 STRUCT items[]; // AIW_CRITERIA_ITEM's