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

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.  *
  37.  * Filename:
  38.  * ---------
  39.  *  Resource_barcodereader_skins.h
  40.  *
  41.  * Project:
  42.  * --------
  43.  *  MAUI
  44.  *
  45.  * Description:
  46.  * ------------
  47.  *  QR Code Reader Applications v0.1
  48.  *
  49.  * Author:
  50.  * -------
  51.  * -------
  52.  *                      
  53.  *============================================================================
  54.  *             HISTORY
  55.  * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  56.  *------------------------------------------------------------------------------
  57.  * removed!
  58.  *
  59.  * removed!
  60.  * removed!
  61.  * removed!
  62.  *
  63.  * removed!
  64.  * removed!
  65.  * removed!
  66.  * removed!
  67.  *
  68.  *------------------------------------------------------------------------------
  69.  * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  70.  *============================================================================
  71.  ****************************************************************************/
  72. /****************************************************************************
  73. * Include Files                                                                
  74. *****************************************************************************/
  75. #ifndef _BARCODEREADER_SKIN_H_
  76. #define _BARCODEREADER_SKIN_H_
  77. #include "mmi_features.h"
  78. #ifdef __MMI_BARCODEREADER__
  79. typedef struct
  80. {
  81.     BOOL is_show;
  82.     S32 offset_x;
  83.     S32 offset_y;
  84. } barcodereader_osd_icon_struct;
  85. typedef enum
  86. {
  87.     BARCODEREADER_TEXT_STYLE_NORMAL,
  88.     BARCODEREADER_TEXT_STYLE_BORDER,
  89.     BARCODEREADER_TEXT_STYLE_SHADOW
  90. } mmi_barcodereader_text_style;
  91. typedef struct
  92. {
  93.     U8 r;
  94.     U8 g;
  95.     U8 b;
  96.     U8 style_r;
  97.     U8 style_g;
  98.     U8 style_b;
  99.     U16 style;
  100. } barcodereader_style_text_struct;
  101. typedef struct
  102. {
  103.     BOOL is_draw_mmi_softkey;
  104.     barcodereader_style_text_struct lsk;
  105.     barcodereader_style_text_struct rsk;
  106. } barcodereader_osd_softkey_struct;
  107. typedef struct
  108. {
  109.     S32 offset_x;
  110.     S32 offset_y;
  111.     S32 width;
  112.     S32 height;
  113. } barcodereader_preview_wnd_struct;
  114. typedef struct
  115. {
  116.     BOOL is_show;
  117.     S32 offset_x;
  118.     S32 offset_y;
  119.     S32 width;
  120.     S32 height;
  121.     barcodereader_style_text_struct style_text;
  122. } barcodereader_osd_hint_box_struct;
  123. typedef struct
  124. {
  125.     BOOL is_show;
  126.     BOOL is_right_align;
  127.     S32 offset_x;
  128.     S32 offset_y;
  129.     barcodereader_style_text_struct style_text;
  130. } barcodereader_osd_storage_struct;
  131. typedef struct
  132. {
  133.     BOOL is_draw_bg_image;
  134.     BOOL is_draw_bg_color;
  135.     U8 r;
  136.     U8 g;
  137.     U8 b;
  138. } barcodereader_osd_bg_struct;
  139. typedef struct
  140. {
  141.     BOOL is_draw_mmi_title_bar;
  142.     BOOL is_draw_mmi_caption;
  143. } barcodereader_osd_title_struct;
  144. typedef struct
  145. {
  146.     /* background */
  147.     barcodereader_osd_bg_struct bg;
  148.     /* title */
  149.     barcodereader_osd_title_struct title;
  150.     /* softkey (buttom bar) */
  151.     barcodereader_osd_softkey_struct softkey;
  152.     /* preview wnd */
  153.     barcodereader_preview_wnd_struct preview_wnd;
  154.     /* barcodereader setting */
  155.     barcodereader_osd_icon_struct flash;
  156.     barcodereader_osd_icon_struct ev;
  157.     barcodereader_osd_icon_struct ev_inc;
  158.     barcodereader_osd_icon_struct ev_dec;
  159.     barcodereader_osd_icon_struct mf;
  160.     barcodereader_osd_icon_struct mf_inc;
  161.     barcodereader_osd_icon_struct mf_dec;
  162.     barcodereader_osd_icon_struct storage;
  163.     barcodereader_osd_icon_struct af_mode;
  164.     barcodereader_osd_icon_struct zoom_mf_toggle;
  165.     barcodereader_osd_icon_struct capture;
  166.     barcodereader_osd_hint_box_struct hint_box;
  167.     barcodereader_osd_storage_struct remain_storage;
  168. } barcodereader_osd_layeout_struct;
  169. extern barcodereader_osd_layeout_struct g_barcodereader_osd_cntx;
  170. #ifdef __HORIZONTAL_BARCODEREADER__
  171. extern barcodereader_osd_layeout_struct g_barcodereader_osd_cntx_270;
  172. #endif 
  173. #endif /* __MMI_BARCODEREADER__ */ 
  174. #endif /* _BARCODEREADER_SKIN_H_ */