ScheduledPowerOnOff.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.  * Filename:
  37.  * ---------
  38.  * SchedulePowerOnOff.h
  39.  *
  40.  * Project:
  41.  * --------
  42.  * MAUI
  43.  *
  44.  * Description:
  45.  * ------------
  46.  * This file is defines constant, structrue, and function prototypes for SPOF application.
  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.  *------------------------------------------------------------------------------
  71.  * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!! 
  72.  *==============================================================================
  73.  *******************************************************************************/
  74. /*
  75.  * Copyright Notice
  76.  * ?2002 - 2003, Pixtel Communications, Inc., 1489 43rd Ave. W.,
  77.  * Vancouver, B.C. V6M 4K8 Canada. All Rights Reserved.
  78.  *  (It is illegal to remove this copyright notice from this software or any
  79.  *  portion of it)
  80.  */
  81. /**************************************************************
  82.    FILENAME :ScheduledPowerOnOff.h
  83.    PURPOSE     : nil
  84.    REMARKS     : nil
  85.    AUTHOR      : Gautam Saluja
  86.    DATE     : 
  87. **************************************************************/
  88. /* ScheduledPowerOnOff.h */
  89. #ifndef _MMI_SCHEDULEPOWEROFOFF_H
  90. #define _MMI_SCHEDULEPOWEROFOFF_H
  91. #include "AlarmFrameWorkProt.h"
  92. #include "AlarmDef.h"
  93. /* 
  94.  * Define
  95.  */
  96. #define SPOF_NUM_STATES_ONOFF 2
  97. #define SPOF_NUM_STATES_ACTINACT 2
  98. #define NUM_ITEM_EDIT_SCREEN 4
  99. #define SPOF_DISABLE 0
  100. #define SPOF_ENABLE 1
  101. #define SPOF_POWERON 0
  102. #define SPOF_POWEROFF 1
  103. /* 
  104.  * Typedef 
  105.  */
  106. typedef struct
  107. {
  108.     S32 CurrHiliteOnOff;
  109.     S32 CurrHiliteActivation;
  110.     S8 *ActStateList[SPOF_NUM_STATES_ACTINACT];
  111.     S8 *OnOffStateList[SPOF_NUM_STATES_ONOFF];
  112.     spof_nvram_struct SPOFList[NUM_OF_SPOF];
  113.     S8 HourBuf[(HOUR_LENGTH + 1) *ENCODING_LENGTH];
  114.     S8 MinBuf[(MINUTE_LENGTH + 1) *ENCODING_LENGTH];
  115.     U8 IsRestoreDefault;
  116.     U8 CurrItem;
  117. } spof_context_struct;
  118. typedef enum
  119. {
  120.     SCR_ID_SPOF_APP = SPOF_BASE + 1,
  121.     SCR_ID_SPOF_EDITOR,
  122.     SCR_ID_SPOF_CONFIRM
  123. } SCR_ID_SPOF_ENUM;
  124. typedef enum
  125. {
  126.     SPOF_MAIN_TITLE_STRINGID = SPOF_BASE + 1,
  127.     SPOF_EDIT_TITLE_STRINGID,
  128.     SPOF_STATUS_STRINGID,
  129.     SPOF_DISABLE_STRINGID,
  130.     SPOF_ENABLE_STRINGID,
  131. //KP Jerry add on 2007-3-30 start
  132.     SPOF_PON_STRINGID,
  133.     SPOF_POFF_STRINGID,
  134. //KP Jerry add on 2007-3-30 end
  135.     SPOF_TIME_CONFLICT,
  136.     SPOF_POWER_OFF_CONFIRM
  137. } STR_ID_SPOF_ENUM;
  138. typedef enum
  139. {
  140.     SPOF_EDIT_BUTTON_IMAGEID = SPOF_BASE + 1,
  141.     SPOF_TYPEPOWERON_IMAGEID,
  142.     SPOF_TYPEPOWEROFF_IMAGEID,
  143.     SPOF_SETTING_STATUS_IMAGEID,
  144.     SPOF_BLANK_IMAGEID
  145. } IMG_ID_SPOF_ENUM;
  146. /*
  147.  * Local function
  148.  */
  149. extern void ExitPowerOffConfirmation(void);
  150. extern U8 mmi_spof_del_scr_callback(void *p);
  151. extern void SpofStopPowerOffConfirmation(void);
  152. extern void SPOFExpiryTimeCBH(U8 index, MYTIME *alarmTime, U8 *Freq, U8 *WeekDays, MYTIME* preReminder);
  153. extern void SPOFReInitQueueCBH(void);
  154. extern U8 SponPwrOnHandler(U8 sponIndex);
  155. extern U8 SpofPwrOffHandler(U8 index);
  156. extern U8 SpofPwrOnHandler(U8 index);
  157. extern void ExitSpofEdit(void);
  158. extern void EntrySpofEdit(void);
  159. extern void HighlightSpofList(S32 nIndex);
  160. extern void SpofFillInlineEditStruct(void);
  161. extern void SpofSaveData(void);
  162. extern void SpofHandler(U8);
  163. extern void SpofWritetoNvram(void);
  164. extern BOOL SpofIsTimeClash(U8 hour, U8 min);
  165. extern void EntryPowerOffConfirmation(void);
  166. /* 
  167.  * Extern Global Variable
  168.  */
  169. extern spof_context_struct g_spof_cntx;
  170. /* 
  171.  * Extern Global Function
  172.  */
  173. #endif /* _MMI_SCHEDULEPOWEROFOFF_H */