/* * Copyright (c) 2010 Samsung Electronics, Inc. * All rights reserved. * * This software is a confidential and proprietary information * of Samsung Electronics, Inc. ("Confidential Information"). You * shall not disclose such Confidential Information and shall use * it only in accordance with the terms of the license agreement * you entered into with Samsung Electronics. */ #define RESOURCE_IMAGE( FILE_NAME ) \ group { \ name: FILE_NAME; \ images.image: FILE_NAME COMP; \ parts { \ part { name: "image"; \ description { \ state: "default" 0.0; \ image.normal: FILE_NAME; \ aspect: 1 1; \ aspect_preference: BOTH; \ } \ } \ } \ } #define RESOURCE_IMAGE2( FILE_NAME ) \ group { \ name: FILE_NAME; \ images.image: FILE_NAME COMP; \ parts { \ part { name: "image"; \ description { \ state: "default" 0.0; \ image.normal: FILE_NAME; \ color: 255 144 0 255; \ aspect: 1 1; \ aspect_preference: BOTH; \ } \ } \ } \ }