epoc32/include/eiksrvs.h
branchSymbian2
changeset 2 2fe1408b6811
equal deleted inserted replaced
1:666f914201fb 2:2fe1408b6811
       
     1 // Copyright (c) 1997-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef __EIKSRVS_H__
       
    17 #define __EIKSRVS_H__
       
    18 
       
    19 #include <eikappui.h>
       
    20 #include <eikenv.h>
       
    21 #include <eiksrv.pan>
       
    22 #include <apgtask.h>
       
    23 #include <eiksrv.h>
       
    24 
       
    25 class CDictionaryFileStore;
       
    26 
       
    27 /**
       
    28 @publishedPartner
       
    29 @released
       
    30 */
       
    31 _LIT(EIKAPPUI_SERVER_NAME,"!EikAppUiServer");
       
    32 
       
    33 /**
       
    34 @publishedPartner
       
    35 @released
       
    36 */
       
    37 _LIT(EIKAPPUI_SERVER_THREAD_NAME,"EikAppUiServerThread");
       
    38 
       
    39 /**
       
    40 @publishedPartner
       
    41 @released
       
    42 */
       
    43 _LIT(EIKAPPUI_SERVER_SEMAPHORE,"EikAppUiServerStartSemaphore");
       
    44 
       
    45 /**
       
    46 @internalComponent
       
    47 */
       
    48 const TInt KEikSrvDefaultHeapSize=0x10000;
       
    49 
       
    50 /**
       
    51 @internalComponent
       
    52 */
       
    53 const TInt KEikSrvDefaultMaxHeapSize=0x100000;
       
    54 
       
    55 enum TEikAppUiRanges
       
    56 	{
       
    57 	EFirstUnrestrictedOpcodeInEikAppUi
       
    58 	};
       
    59 
       
    60 /**
       
    61 @internalComponent
       
    62 */
       
    63 enum TEikUiOpCode
       
    64 	{
       
    65 	// No Capability requirement
       
    66 	EEikAppUiFirst=EFirstUnrestrictedOpcodeInEikAppUi,
       
    67 	EEikAppUiLaunchTaskList,
       
    68 	EEikAppUiCycleTasks,
       
    69 	EEikAppUiSetStatusPaneFlags,
       
    70 	EEikAppUiSetStatusPaneLayout,
       
    71 	EEikAppUiBlankScreen,
       
    72 	EEikAppUiUnblankScreen,
       
    73 	EEikAppUiResolveError,
       
    74 	EEikAppUiExtension,
       
    75 	EEikAppUiEnableTaskList,
       
    76 	EEikAppUiGetDebugPreferences,	
       
    77 	EEikAppUiResolveErrorWithTitleText,
       
    78 	// End Marker no Capability
       
    79 	EEikAppUiFirstUnusedOpcode,
       
    80 	};
       
    81 
       
    82 /**
       
    83 function to panic the server
       
    84 
       
    85 @internalComponent
       
    86 */
       
    87 GLREF_C void PanicServer(TEikAppUiServPanic aPanic);
       
    88 
       
    89 #endif	// __EIKSRVS_H__