CustThemesRes.h
上传用户:lqx1163
上传日期:2014-08-13
资源大小:9183k
文件大小:13k
源码类别:

MTK

开发平台:

C/C++

  1. /*****************************************************************************
  2. *  Copyright Statement:
  3. *  --------------------
  4. *  This software is protected by Copyright and the information contained
  5. *  herein is confidential. The software may not be copied and the information
  6. *  contained herein may not be used or disclosed except with the written
  7. *  permission of MediaTek Inc. (C) 2005
  8. *
  9. *  BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
  10. *  THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
  11. *  RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
  12. *  AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
  13. *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
  14. *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
  15. *  NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
  16. *  SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
  17. *  SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
  18. *  THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
  19. *  NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
  20. *  SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
  21. *
  22. *  BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
  23. *  LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
  24. *  AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
  25. *  OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
  26. *  MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE. 
  27. *
  28. *  THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
  29. *  WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
  30. *  LAWS PRINCIPLES.  ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
  31. *  RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
  32. *  THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
  33. *
  34. *****************************************************************************/
  35. /*******************************************************************************
  36.  * Filename:
  37.  * ---------
  38.  *  CustThemesRes.h
  39.  *
  40.  * Project:
  41.  * --------
  42.  *  MAUI
  43.  *
  44.  * Description:
  45.  * ------------
  46.  *  
  47.  *
  48.  * Author:
  49.  * -------
  50.  *  
  51.  *
  52.  *==============================================================================
  53.  *             HISTORY
  54.  * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!! 
  55.  *------------------------------------------------------------------------------
  56.  * removed!
  57.  *
  58.  * removed!
  59.  * removed!
  60.  * removed!
  61.  *
  62.  * removed!
  63.  * removed!
  64.  * removed!
  65.  *
  66.  * removed!
  67.  * removed!
  68.  * removed!
  69.  *
  70.  * removed!
  71.  * removed!
  72.  * removed!
  73.  *
  74.  * removed!
  75.  * removed!
  76.  * removed!
  77.  *
  78.  *------------------------------------------------------------------------------
  79.  * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!! 
  80.  *==============================================================================
  81.  *******************************************************************************/
  82. /**
  83.  * Copyright Notice
  84.  * ?2002 - 2003, Pixtel Communications, Inc., 1489 43rd Ave. W.,
  85.  * Vancouver, B.C. V6M 4K8 Canada. All Rights Reserved.
  86.  *  (It is illegal to remove this copyright notice from this software or any
  87.  *  portion of it)
  88.  */
  89. /**************************************************************
  90.    FILENAME : CustThemesRes.h
  91.       PURPOSE     : To define Common Structures used by the UI Elements and Cutomization Tool 
  92.               for Customizing Themes
  93.    REMARKS     : nil
  94.    AUTHOR      : Yogesh
  95.    DATE     : 01thSept 2003.
  96.    Copyright (c) 2002 All rights reserved by Pixtel Communications
  97. *************************************************************/
  98. #ifndef _PIXCOM_CUSTTHEMESRES_H
  99. #define _PIXCOM_CUSTTHEMESRES_H
  100. /* JL #include "MMIDataType.h" */
  101. #include "gui_data_types.h"
  102. #define MAX_COMPONENTS    1000
  103. #define MAX_THEME_COMP_NAME_SIZE 55
  104. typedef enum
  105. {
  106.     THEME_COMP_FA,
  107.     THEME_COMP_COLOR,
  108.     THEME_COMP_GRADIENT_COLOR
  109. } THEME_COMP_TYPE;
  110. typedef struct _gradient_color
  111. {
  112.     color *c;   /* List of colors in the gradient   */
  113.     U8 *p;      /* Percentage of each color      */
  114.     U8 n;       /* Number of colors in the list  */
  115. } gradient_color;
  116. typedef struct _UI_filled_area
  117. {
  118.     U32 flags;
  119.     PU8 b;
  120.     gradient_color *gc;
  121.     color c;
  122.     color ac;   /* alternate color used for hatch fills   */
  123.     color border_color;
  124.     color shadow_color;
  125.     UI_transparent_color_type transparent_color;
  126. } UI_filled_area;
  127. typedef struct _MMI_theme
  128. {
  129.     UI_filled_area *LSK_up_filler;
  130.     UI_filled_area *LSK_down_filler;
  131.     UI_filled_area *LSK_disabled_filler;
  132.     UI_filled_area *RSK_up_filler;
  133.     UI_filled_area *RSK_down_filler;
  134.     UI_filled_area *RSK_disabled_filler;
  135.     UI_filled_area *multitap_filler;
  136.     UI_filled_area *inputbox_filler;
  137.     UI_filled_area *scrollbar_background_filler;
  138.     UI_filled_area *scrollbar_indicator_filler;
  139.     UI_filled_area *title_filler;
  140.     UI_filled_area *list_background_filler;
  141.     UI_filled_area *list_normal_item_filler;
  142.     UI_filled_area *list_selected_item_filler;
  143.     UI_filled_area *list_disabled_item_filler;
  144.     UI_filled_area *matrix_background_filler;
  145.     UI_filled_area *matrix_normal_item_filler;
  146.     UI_filled_area *matrix_selected_item_filler;
  147.     UI_filled_area *matrix_disabled_item_filler;
  148.     UI_filled_area *shortcut_indicator_background_filler;
  149.     UI_filled_area *formatted_inputbox_normal_filler;
  150.     UI_filled_area *formatted_inputbox_selected_filler;
  151.     UI_filled_area *main_menu_background_filler;
  152.     UI_filled_area *list_main_menu_normal_item_filler;
  153.     UI_filled_area *list_main_menu_selected_item_filler;
  154.     UI_filled_area *list_main_menu_disabled_item_filler;
  155.     UI_filled_area *matrix_main_menu_normal_item_filler;
  156.     UI_filled_area *matrix_main_menu_selected_item_filler;
  157.     UI_filled_area *matrix_main_menu_disabled_item_filler;
  158.     UI_filled_area *general_background_filler;
  159.     UI_filled_area *popup_description_background_filler;
  160.     UI_filled_area *inline_list_background_filler;
  161.     UI_filled_area *inline_list_normal_item_filler;
  162.     UI_filled_area *inline_list_selected_item_filler;
  163.     UI_filled_area *inline_list_disabled_item_filler;
  164.     UI_filled_area *inline_edit_focussed_filler;
  165.     UI_filled_area *inline_edit_unfocussed_filler;
  166.     UI_filled_area *inline_edit_noboundary_filler;
  167.     UI_filled_area *PIN_inputbox_background_filler;
  168.     UI_filled_area *PIN_screen_background_filler;
  169.     UI_filled_area *network_screen_background_filler;
  170.     UI_filled_area *aphorism_screen_background_filler;
  171.     UI_filled_area *CM_screen_background_filler;
  172.     UI_filled_area *progress_screen_background_filler;
  173.     UI_filled_area *dialer_inputbox_background_filler;
  174.     UI_filled_area *virtual_keyboard_key_down_filler;
  175.     UI_filled_area *alarm_background_filler;
  176. #ifdef UI_SMALL_LIST_SCREEN
  177.     UI_filled_area *small_list_menu_normal_filler;
  178.     UI_filled_area *small_list_screen_border_filler;
  179. #endif /* UI_SMALL_LIST_SCREEN */ 
  180.     color *UI_black_color;
  181.     color *UI_white_color;
  182.     color *lite_disp_scr_bg_color;
  183.     color *LSK_up_text_color;
  184.     color *LSK_down_text_color;
  185.     color *LSK_disabled_text_color;
  186.     color *RSK_up_text_color;
  187.     color *RSK_down_text_color;
  188.     color *RSK_disabled_text_color;
  189.     color *multitap_selector_color;
  190.     color *multitap_normal_text_color;
  191.     color *multitap_selected_text_color;
  192.     color *inputbox_normal_text_color;
  193.     color *inputbox_selected_text_color;
  194.     color *inputbox_selector_color;
  195.     color *inputbox_cursor_color;
  196.     color *title_text_color;
  197.     color *title_text_border_color;
  198.     color *title_shortcut_text_color;
  199.     color *list_normal_text_color;
  200.     color *list_selected_text_color;
  201.     color *list_disabled_text_color;
  202.     color *matrix_normal_text_color;
  203.     color *matrix_selected_text_color;
  204.     color *matrix_disabled_text_color;
  205.     color *menubar_index_background_color;
  206.     color *menubar_item_background_color;
  207.     color *menubar_index_text_color;
  208.     color *menubar_item_text_color;
  209.     color *shortcut_indicator_text_color;
  210.     color *shortcut_indicator_cursor_color;
  211.     color *drop_down_normal_text_color;
  212.     color *drop_down_disabled_text_color;
  213.     color *drop_down_focussed_text_color;
  214.     color *formatted_inputbox_selector_color;
  215.     color *formatted_inputbox_normal_text_color;
  216.     color *formatted_inputbox_disabled_text_color;
  217.     color *formatted_inputbox_selected_text_color;
  218.     color *formatted_inputbox_cursor_color;
  219.     color *list_main_menu_normal_text_color;
  220.     color *list_main_menu_selected_text_color;
  221.     color *list_main_menu_disabled_text_color;
  222.     color *matrix_main_menu_normal_text_color;
  223.     color *matrix_main_menu_selected_text_color;
  224.     color *matrix_main_menu_disabled_text_color;
  225.     color *circular_main_menu_normal_text_color;
  226.     color *circular_main_menu_selected_text_color;
  227.     color *circular_main_menu_disabled_text_color;
  228.     color *popup_screen_background_color;
  229.     color *popup_screen_border_color;
  230.     color *popup_description_text_color;
  231.     color *CM_screen_text_color;
  232.     color *datetime_bar_background_color;
  233.     color *datetime_bar_duration_background_color;
  234.     color *datetime_bar_date_text_color;
  235.     color *datetime_bar_time_text_color;
  236.     color *datetime_bar_duration_text_color;
  237.     color *datetime_bar_AOC_text_color;
  238.     color *button_bar_color;
  239.     color *information_bar_color;
  240.     color *input_method_text_color;
  241.     color *remaining_length_text_color;
  242.     color *statusbar0_background_color;
  243.     color *inline_edit_focussed_text_color;
  244.     color *inline_edit_unfocussed_text_color;
  245.     color *inline_edit_selected_text_color;
  246.     color *inline_edit_selector_color;
  247.     color *inline_edit_cursor_color;
  248.     color *inline_list_normal_text_color;
  249.     color *inline_list_selected_text_color;
  250.     color *inline_list_disabled_text_color;
  251.     color *PIN_inputbox_normal_text_color;
  252.     color *PIN_inputbox_selected_text_color;
  253.     color *PIN_inputbox_selector_color;
  254.     color *PIN_inputbox_cursor_color;
  255.     color *dialer_inputbox_normal_text_color;
  256.     color *dialer_inputbox_selected_text_color;
  257.     color *dialer_inputbox_selector_color;
  258.     color *dialer_inputbox_cursor_color;
  259.     color *virtual_keyboard_key_down_text_color;
  260.     color *virtual_keyboard_key_up_text_color;
  261.     color *virtual_keyboard_dead_key_down_text_color;
  262.     color *virtual_keyboard_dead_key_up_text_color;
  263.     color *virtual_keyboard_disp_area_text_color;
  264.     color *calculator_color;
  265.     color *alarm_text_color;
  266.     color *idle_scr_date_color; 
  267.     color *idle_scr_time_color;
  268.     color *idle_scr_date_border_color; 
  269.     color *idle_scr_time_border_color;
  270.     color *idle_scr_network_name_color; 
  271.     color *idle_scr_network_name_border_color; 
  272.     color *idle_scr_network_status_color; 
  273.     color *idle_scr_network_status_border_color; 
  274.     color *idle_scr_network_extra_color; 
  275.     color *idle_scr_network_extra_border_color; 
  276.     UI_font_type button_font;
  277.     UI_font_type multitap_font;
  278.     UI_font_type inputbox_font;
  279.     UI_font_type window_title_font;
  280.     UI_font_type list_menu_font;
  281.     UI_font_type matrix_menu_font;
  282.     UI_font_type menu_bar_index_font;
  283.     UI_font_type menu_bar_item_font;
  284.     UI_font_type shortcut_indicator_font;
  285.     UI_font_type title_text_font;
  286.     UI_font_type drop_down_control_font;
  287.     UI_font_type list_main_menu_font;
  288.     UI_font_type matrix_main_menu_font;
  289.     UI_font_type virtual_keyboard_font;
  290.     S32 scrollbar_size;
  291.     S32 bg_opacity_full;
  292.     S32 bg_opacity_high;
  293.     S32 bg_opacity_medium;
  294.     S32 bg_opacity_low;
  295.     //KP Jerry extended contents of theme start
  296.     UI_filled_area* softkey_filler;
  297.     UI_filled_area* scrollbar_button_up_filler;
  298.     UI_filled_area* scrollbar_button_down_filler;
  299.     //KP Jerry extended contents of theme end
  300. } MMI_theme;
  301. typedef struct __ThemesCompInfo
  302. {
  303.     void *themeComponent;
  304.     U8 type;
  305.     U8 themeCompName[MAX_THEME_COMP_NAME_SIZE];
  306. } THEMES_COMPONENT_INFO;
  307. typedef struct
  308. {
  309. #ifdef __MMI_DLT_CACHE_SUPPORT__
  310.     U8 image_type;
  311. #endif 
  312.     U16 image_id;
  313.     U32 image_offset;
  314. #ifdef __MMI_DLT_CACHE_SUPPORT__
  315.     PU8 image_cache_ptr;
  316. #endif 
  317. } theme_image_detail_struct;
  318. typedef struct
  319. {
  320.     MMI_theme *theme;
  321.     theme_image_detail_struct *theme_image_details_list;
  322.     U8 **system_image_list;
  323. } theme_details_struct;
  324. #endif /* _PIXCOM_CUSTTHEMESRES_H */