Rework addition of Symbian splash screen to reduce the source impact (uses SVG from Bug 2414)
Notes: by using the OPTION SOURCEDIR parameter in the mifconv extension instructions, I can
arrange to use the same source file name in sfimage, without having to export over the original
Nokia file. This means that the name inside splashscreen.mbg is the same, which removes the need
for the conditional compilation in SplashScreen.cpp, and gets rid of sf_splashscreen.mmp.
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//
#if !defined __APPINFO_RH__
#define __APPINFO_RH__
//
// contains definitions for the Application Information resource files
/**
@publishedAll
@released
*/
#define KMaxFileNameLength 256
//
// DEFINITIONS FOR THE NON-LOCALISABLE REGISTRATION RESOURCE FILE
//
/**
@publishedAll
@released
*/
#define KUidAppRegistrationResourceFile 0x101f8021
/**
@publishedAll
@released
*/
// constants for capability.hidden
#define KAppNotHidden 0
#define KAppIsHidden 1
/**
@publishedAll
@released
*/
// constants for capability.newfile
#define KAppDoesNotSupportNewFile 0
#define KAppSupportsNewFile 1
/**
@publishedAll
@released
*/
// constants for capability.embeddability
#define KAppNotEmbeddable 0
#define KAppEmbeddable 1
#define KAppEmbeddableOnly 2
#define KAppEmbeddableUiOrStandAlone 5
#define KAppEmbeddableUiNotStandAlone 6
/**
@publishedAll
@released
*/
// constants for capability.launch
#define KAppLaunchInForeground 0
#define KAppLaunchInBackground 1
/**
@publishedAll
@released
*/
// bit flags for capability.attributes
#define KAppBuiltAsDll 0x00000001
#define KAppIsControlPanelItem 0x00000002
#define KAppNonNative 0x00000004
/**
@publishedAll
@released
*/
// application group name
#define KAppMaxGroupName 16
/**
@publishedAll
@released
*/
STRUCT APP_REGISTRATION_INFO
{
LONG reserved_long = 0; // reserved for future use, do not use
LLINK reserved_llink = 0; // reserved for future use, do not use
//
LTEXT app_file(KMaxFileNameLength) = ""; // name of application binary file (not including extension) - mandatory
LONG attributes = 0;
//
LTEXT localisable_resource_file(KMaxFileNameLength) = ""; // path (not including drive) and name of localisable resource file
LONG localisable_resource_id = 1;
//
BYTE hidden = KAppNotHidden;
BYTE embeddability = KAppNotEmbeddable;
BYTE newfile = KAppDoesNotSupportNewFile;
BYTE launch = KAppLaunchInForeground;
LTEXT group_name(KAppMaxGroupName) = "";
//
BYTE default_screen_number = 0;
//
LEN WORD STRUCT datatype_list[]; // DATATYPE
//
LEN WORD STRUCT file_ownership_list[]; // FILE_OWNERSHIP_INFO
//
LEN WORD STRUCT service_list[]; // SERVICE_INFO
//
LLINK opaque_data = 0; // use for opaque data to send to non-native application launchers i.e. MIDlet id
}
/**
@publishedAll
@released
*/
#define KMaxDataTypeLength 256
/**
@publishedAll
@released
*/
/* This enum is used to specify the priority at which an application can handle a particular MIME type.
The application with the highest priority will be considered as the default application
for that particular MIME type.
Default association of MIME types with applications can be overridden by user settings,
except for applications handling data types with EDataTypePrioritySystem.
*/
enum
{
EDataTypePrioritySystem = 0xFFF9, // This is a special priority that overrides any user settings.
// Applications must have EWriteDeviceData capability to use this priority.
// If not they will be downgraded to EDataTypePriorityNormal
EDataTypePriorityTrustedHigh = 0xC000, // Trusted applications may use this priority value to ensure that their MIME type
// associations cannot be overridden by self signed (untrusted) applications
EDataTypePriorityHigh = 10000, // An application at EDataTypePriorityHigh will be given higher preference for a
// particular data type, than applications with EDataTypePriorityNormal
EDataTypePriorityNormal = 0, // An application at EDataTypePriorityNormal will be given higher preference for a
// particular data type, than applications with EDataTypePriorityLow.
EDataTypePriorityLow = -10000, // This priority means that the data type is a secondary type for that application.
// For example, "text/plain" files for a web browser
EDataTypePriorityLastResort = -20000 // This priority means that the data type is a last resort for that application
};
/**
@publishedAll
@released
*/
STRUCT DATATYPE
{
LONG priority;
LTEXT8 type(KMaxDataTypeLength);
}
/**
@publishedAll
@released
*/
STRUCT FILE_OWNERSHIP_INFO
{
LTEXT file_name(KMaxFileNameLength);
}
/**
@publishedAll
@released
*/
STRUCT SERVICE_INFO
{
LONG uid = 0;
LEN WORD STRUCT datatype_list[];
LLINK opaque_data = 0;
}
//
// DEFINITIONS FOR THE LOCALISABLE RESOURCE FILE
//
/**
@publishedAll
@released
*/
#define KMaxCaption 256
/**
@publishedAll
@released
*/
STRUCT LOCALISABLE_APP_INFO
{
LONG reserved_long = 0; // reserved for future use, do not use
LLINK reserved_llink = 0; // reserved for future use, do not use
//
LTEXT short_caption(KMaxCaption) = "";
STRUCT caption_and_icon; // CAPTION_AND_ICON_INFO
//
LEN WORD STRUCT view_list[]; // VIEW_DATA
//
LTEXT group_name(KAppMaxGroupName) = "";
}
/**
@publishedAll
@released
*/
STRUCT CAPTION_AND_ICON_INFO
{
LONG reserved_long = 0; // reserved for future use, do not use
LLINK reserved_llink = 0; // reserved for future use, do not use
//
LTEXT caption(KMaxCaption) = "";
//
WORD number_of_icons = 0; // each icon must be a bitmap/mask pair
LTEXT icon_file(KMaxFileNameLength) = "";
}
/**
@publishedAll
@released
*/
STRUCT VIEW_DATA
{
LONG reserved_long = 0; // reserved for future use, do not use
LLINK reserved_llink = 0; // reserved for future use, do not use
//
LONG uid = 0;
//
LONG screen_mode = 0;
//
STRUCT caption_and_icon; // CAPTION_AND_ICON_INFO
}
#endif