diff -r 093cf0757204 -r 938269283a16 securitysettings/eapqtdialogs/inc/eapdialogplugin.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/securitysettings/eapqtdialogs/inc/eapdialogplugin.h Fri Jun 11 13:40:22 2010 +0300 @@ -0,0 +1,66 @@ +/* +* 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: +* +*/ + + +#ifndef ____EAPDIALOG_H__PLUGIN_H__ +#define ____EAPDIALOG_H__PLUGIN_H__ + +#include +#include + +class EapUsernamePwdDialog; + +class EapDialogPlugin : public HbDeviceDialogPlugin +{ + Q_OBJECT + +public: + + /* Constructor */ + EapDialogPlugin(); + /* Destructor */ + ~EapDialogPlugin(); + + /* Check whether access is allowed, true is always returned */ + bool accessAllowed(const QString &deviceDialogType, + const QVariantMap ¶meters, const QVariantMap &securityInfo) const; + + /* Creates the dialog widget */ + HbDeviceDialogInterface *createDeviceDialog(const QString &deviceDialogType, + const QVariantMap ¶meters); + + /* Returns the device dialog type */ + bool deviceDialogInfo(const QString &deviceDialogType, + const QVariantMap ¶meters, DeviceDialogInfo *info) const; + + /* Returns a list of dialog types that this plugin implements. + * Only one dialog type is supported. + */ + QStringList deviceDialogTypes() const; + + /* Returns the possible plugin flags, there are none */ + PluginFlags pluginFlags() const; + + /* Not supported */ + int error() const; + +private: + Q_DISABLE_COPY(EapDialogPlugin) + +}; + +#endif // ___EAPDIALOG_H__