organizer_plat/alarm_ui_external_control_api/inc/alarmuidomainpskeys.h
changeset 0 f979ecb2b13e
equal deleted inserted replaced
-1:000000000000 0:f979ecb2b13e
       
     1 /*
       
     2 * Copyright (c) 2007-2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:   Domain Publish&Subscribe definitions of the AlarmUI subsystem.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef ALARMUIDOMAINPSKEYS_H
       
    21 #define ALARMUIDOMAINPSKEYS_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32property.h>
       
    25 #include <e32err.h>
       
    26 
       
    27 const TUid KPSUidAlarmExtCntl = { 0x102072D4 }; // reusing an AlarmUI dll UID
       
    28 
       
    29 // =============================================================================
       
    30 // Alarm UI External Control API
       
    31 // =============================================================================
       
    32 // Use TUid KPSUidAlarmExtCntl = { 0x102072D4 } 
       
    33 
       
    34 /**
       
    35 * Notifies Alarm UI to stop an active alarm.
       
    36 */
       
    37 const TUint32 KAlarmStopKey = 0x00000001;
       
    38 enum TAlarmUIStopAlarm
       
    39     {
       
    40     EAlarmUIStopAlarmUninitialized = 0,
       
    41     EAlarmUIStopAlarm
       
    42     };
       
    43 
       
    44 /**
       
    45 * Notifies Alarm UI to snooze an active alarm.
       
    46 */
       
    47 const TUint32 KAlarmSnoozeKey = 0x00000002;
       
    48 enum TAlarmUISnoozeAlarm
       
    49     {
       
    50     EAlarmUISnoozeAlarmUninitialized = 0,
       
    51     EAlarmUISnoozeAlarm
       
    52     };
       
    53 
       
    54 
       
    55 #endif // ALARMUIDOMAINPSKEYS_H
       
    56 
       
    57 // End of File