securitydialogs/secuinotifications/secuinotificationdialogplugin/inc/secuinotificationdialogpluginkeys.h
/*
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
*
* Description: SecUi notification keys.
*
*/
#ifndef SECUINOTIFICATIONPLUGINKEYS_H
#define SECUINOTIFICATIONPLUGINKEYS_H
#include <QString>
// Device dialog type
#define SECUINOTIFICATIONDIALOG "com.nokia.secuinotificationdialog/1.0"
// Keys for the parameters passed to notification framework plugin
const QString KDialogTitle = "title";
const QString KApplicationName = "application";
const QString KQueryType = "type";
const QString KQueryMinLength = "MinLength";
const QString KQueryMaxLength = "MaxLength";
const QString KApplicationIcon = "icon";
const QString KSupplier = "supplier";
const QString KMemorySelection = "memory";
const QString KCertificates = "certificates";
const QString KDrmDetails = "drmDetails";
const QString KCodeTop = "codeTop";
const QString KCodeBottom = "codeBottom"; // not really needed because is never sent back
const QString KEmergency = "emergency";
const QString KInvalidNewLockCode = "invalidNewLockCode";
const QString KDefaultCode = "DefaultCode";
// Keys for the return values passed back to calling application
const QString KResultAccepted = "accepted"; // int
const QString KSelectedMemoryIndex = "memory"; // int
const QString KCodeTopIndex = "codeTop"; // int
const QString KCodeBottomIndex = "codeBottom"; // int // not really needed because is never sent back
// Error values
const int KNoError = 0;
#endif // SECUINOTIFICATIONPLUGINKEYS_H