securitydialogs/secuinotifications/secuinotificationdialogplugin/inc/secuinotificationdialogpluginkeys.h
changeset 15 318c4eab2439
child 17 8957df7b0072
equal deleted inserted replaced
14:b75757c81051 15:318c4eab2439
       
     1 /*
       
     2 * Copyright (c) 2010 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 *
       
    15 * Description: SecUi notification keys.
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef SECUINOTIFICATIONPLUGINKEYS_H
       
    20 #define SECUINOTIFICATIONPLUGINKEYS_H
       
    21 
       
    22 #include <QString>
       
    23 
       
    24 // Device dialog type
       
    25 #define SECUINOTIFICATIONDIALOG "com.nokia.secuinotificationdialog/1.0"
       
    26 
       
    27 // Keys for the parameters passed to notification framework plugin
       
    28 const QString KDialogTitle = "title";
       
    29 const QString KApplicationName = "application";
       
    30 const QString KQueryType = "type";
       
    31 const QString KApplicationIcon = "icon";
       
    32 const QString KSupplier = "supplier";
       
    33 const QString KMemorySelection = "memory";
       
    34 const QString KCertificates = "certificates";
       
    35 const QString KDrmDetails = "drmDetails";
       
    36 const QString KCodeTop = "codeTop";
       
    37 
       
    38 // Keys for the return values passed back to calling application
       
    39 const QString KResultAccepted = "accepted";         // bool
       
    40 const QString KSelectedMemoryIndex = "memory";      // int
       
    41 const QString KCodeTopIndex = "codeTop";      // int
       
    42 
       
    43 // Error values
       
    44 const int KNoError = 0;
       
    45 
       
    46 #endif // SECUINOTIFICATIONPLUGINKEYS_H