appinstall_plat/sifui_api/inc/sifuidefs.h
changeset 60 245df5276b97
parent 42 d17dc5398051
child 67 3a625661d1ce
equal deleted inserted replaced
53:ae54820ef82c 60:245df5276b97
    22 // Note that _LIT macros defined in this file must match to the definitions
    22 // Note that _LIT macros defined in this file must match to the definitions
    23 // in sifuidevicedialogdefinitions.h and sifuiinstallindicatorparams.h files.
    23 // in sifuidevicedialogdefinitions.h and sifuiinstallindicatorparams.h files.
    24 // Symbian code needs descriptor constants, as Qt code uses QString constants.
    24 // Symbian code needs descriptor constants, as Qt code uses QString constants.
    25 
    25 
    26 _LIT( KSifUiDeviceDialog, "com.nokia.sifui/1.0" );
    26 _LIT( KSifUiDeviceDialog, "com.nokia.sifui/1.0" );
    27 _LIT( KSifUiInstallIndicatorType, "com.nokia.sifui.indi/1.0" );
       
    28 
    27 
    29 enum TSifUiDeviceDialogType
    28 enum TSifUiDeviceDialogType
    30     {
    29     {
    31     ESifUiConfirmationQuery = 1,
    30     ESifUiConfirmationQuery = 1,
    32     ESifUiProgressNote = 2,
    31     ESifUiProgressNote = 2,
    54 _LIT( KSifUiApplicationIconMaskHandle, "mask" );    // integer, bitmap handle
    53 _LIT( KSifUiApplicationIconMaskHandle, "mask" );    // integer, bitmap handle
    55 _LIT( KSifUiApplicationVersion, "ver" );            // descriptor
    54 _LIT( KSifUiApplicationVersion, "ver" );            // descriptor
    56 _LIT( KSifUiApplicationSize, "size" );              // integer
    55 _LIT( KSifUiApplicationSize, "size" );              // integer
    57 _LIT( KSifUiApplicationDetails, "details" );        // descriptor array
    56 _LIT( KSifUiApplicationDetails, "details" );        // descriptor array
    58 _LIT( KSifUiMemorySelection, "mem" );               // descriptor (comma separated drive letters)
    57 _LIT( KSifUiMemorySelection, "mem" );               // descriptor (comma separated drive letters)
    59 _LIT( KSifUiCertificates, "cert" );                 // binary
    58 _LIT( KSifUiCertificates, "cert" );                 // binary (CSifUiCertificateInfo)
    60 
    59 
    61 // Variant map keys for "progress note" dialog parameters
    60 // Variant map keys for "progress note" dialog parameters
    62 _LIT( KSifUiProgressNoteText, "txt" );              // string
    61 _LIT( KSifUiProgressNoteText, "txt" );              // string
    63 _LIT( KSifUiProgressNoteFinalValue, "fin" );        // integer
    62 _LIT( KSifUiProgressNoteFinalValue, "fin" );        // integer
    64 _LIT( KSifUiProgressNoteValue, "val" );             // integer
    63 _LIT( KSifUiProgressNoteValue, "val" );             // integer
       
    64 _LIT( KSifUiProgressNotePhase, "phase" );           // enum CSifUi::TInstallingPhase
    65 
    65 
    66 // Variant map keys for "progress note" and "installation complete note" buttons
    66 // Variant map keys for "progress note" and "installation complete note" buttons
    67 _LIT( KSifUiProgressNoteIsHideButtonHidden, "hidebtn" );        // boolean
    67 _LIT( KSifUiProgressNoteIsHideButtonHidden, "hidebtn" );        // boolean
    68 _LIT( KSifUiProgressNoteIsCancelButtonHidden, "cancelbtn" );    // boolean
    68 _LIT( KSifUiProgressNoteIsCancelButtonHidden, "cancelbtn" );    // boolean
    69 _LIT( KSifUiCompleteNoteIsShowButtonHidden, "showbtn" );        // boolean
    69 _LIT( KSifUiCompleteNoteIsShowButtonHidden, "showbtn" );        // boolean
    70 _LIT( KSifUiErrorNoteIsDetailsButtonHidden, "errdtlbtn" );      // boolean
    70 _LIT( KSifUiErrorNoteIsDetailsButtonHidden, "errdtlbtn" );      // boolean
    71 
    71 
    72 // Variant map keys for "error" dialog parameters
    72 // Variant map keys for "error" dialog parameters
    73 _LIT( KSifUiErrorCode, "err" );                     // integer
    73 _LIT( KSifUiErrorCategory, "errcat" );              // enum Usif::TErrorCategory
    74 _LIT( KSifUiErrorMessage, "msg" );                  // string
    74 _LIT( KSifUiErrorCode, "errcode" );                 // integer
    75 _LIT( KSifUiErrorDetails, "det" );                  // string
    75 _LIT( KSifUiErrorCodeExtended, "errext" );          // integer
       
    76 _LIT( KSifUiErrorMessage, "errmsg" );               // string
       
    77 _LIT( KSifUiErrorDetails, "errdet" );               // string
       
    78 
       
    79 // Variant map keys for "grant capabilities" dialog parameters
       
    80 _LIT( KSifUiGrantCapabilities, "grcap" );           // binary (TCapabilitySet)
    76 
    81 
    77 #endif  // SIFUIDEFS_H
    82 #endif  // SIFUIDEFS_H
    78 
    83