sysstatemgmt/systemstatereferenceplugins/custcmd/inc/ssmuiproviderdll.h
changeset 0 4e1aa6a622a0
child 10 1fc153c72b60
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @publishedPartner
       
    19  @released
       
    20 */
       
    21 #ifndef __SSMUIPROVIDERDLL_H__
       
    22 #define __SSMUIPROVIDERDLL_H__
       
    23 
       
    24 #include <ssm/strtsecuritystatus.h>
       
    25 #include <e32def.h>
       
    26 #include <e32cmn.h>
       
    27 #include <e32base.h>
       
    28 
       
    29 class CSsmUiSpecific : public CBase
       
    30     {
       
    31 public:
       
    32 
       
    33 	IMPORT_C ~CSsmUiSpecific();
       
    34 	IMPORT_C static TUid StartupPSUid();
       
    35 	IMPORT_C static TUid SecurityPinNotifierUid();
       
    36 	IMPORT_C static TUint EmergencyCallPropertyKey();
       
    37 	IMPORT_C static TUid EmergencyCallPropertyCategory();
       
    38 	IMPORT_C static TBool IsSimSupported();
       
    39 	IMPORT_C void SetSecurityStatus(const TStrtSecurityStatus& aSecurityStatus);
       
    40 	IMPORT_C TStrtSecurityStatus SecurityStatus() const;
       
    41 	IMPORT_C static CSsmUiSpecific* InstanceL();
       
    42 	IMPORT_C static void Release();
       
    43 	IMPORT_C static TUid ScreenOutputChannelUid();
       
    44 	IMPORT_C static TUint SimStatusPropertyKey();
       
    45 	IMPORT_C static TBool IsSimStateChangeAllowed();
       
    46 	IMPORT_C static TBool IsAmaStarterSupported();
       
    47 	IMPORT_C static HBufC* GetTsyModuleNameL();
       
    48 	IMPORT_C static TUid StarterPSUid();
       
    49 	IMPORT_C static HBufC* PhoneTsyNameL();
       
    50 	IMPORT_C static TBool IsSimPresent();
       
    51 	IMPORT_C static TBool IsSimlessOfflineSupported();
       
    52 	IMPORT_C static TUint RFStatusPropertyKey();
       
    53 	IMPORT_C static TUid RFStatusPropertyCategory();
       
    54 	IMPORT_C static TBool IsNormalBoot();
       
    55 	IMPORT_C static TBool IsSimChangedReset();
       
    56 	IMPORT_C static TUint ValidateRTCPropertyKey();
       
    57 	IMPORT_C static TUid ValidateRTCPropertyCategory();
       
    58 	IMPORT_C static TInt PhoneMemoryRootDriveId();
       
    59 
       
    60 private:
       
    61 	CSsmUiSpecific();
       
    62 private:
       
    63 	TStrtSecurityStatus iStrtSecurityStatus;
       
    64 	TInt iReferenceCount;
       
    65     };
       
    66 
       
    67 #endif // __SSMUIPROVIDERDLL_H__