diff -r 30e048a7b597 -r bad0cc58d154 securitysettings/eapqtdialogs/inc/eapdialogplugin.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/securitysettings/eapqtdialogs/inc/eapdialogplugin.h Tue Aug 31 15:16:37 2010 +0300 @@ -0,0 +1,87 @@ +/* +* 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: Eap Dialog Plugin +* +*/ + +/* +* %version: 4 % +*/ + +#ifndef ____EAPDIALOG_H__PLUGIN_H__ +#define ____EAPDIALOG_H__PLUGIN_H__ + +// System includes +#include +#include + +// User includes + +// Forward declarations + +// External data types + +// Constants + +/*! + @addtogroup group_eap_dialog_plugin + @{ + */ + +// Class declaration + +class EapDialogPlugin : public HbDeviceDialogPlugin +{ + Q_OBJECT + +public: + + /* Constructor */ + EapDialogPlugin(); + /* Destructor */ + ~EapDialogPlugin(); + + /* Check whether access is allowed, true is always returned. + (from HbDeviceDialogPlugin) */ + bool accessAllowed(const QString &deviceDialogType, + const QVariantMap ¶meters, const QVariantMap &securityInfo) const; + + /* Creates the dialog widget. (from HbDeviceDialogPluginInterface) */ + HbDeviceDialogInterface *createDeviceDialog(const QString &deviceDialogType, + const QVariantMap ¶meters); + + /* Returns the device dialog type. (from HbDeviceDialogPlugin)*/ + 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. (from HbDeviceDialogPlugin) + */ + QStringList deviceDialogTypes() const; + + /* Returns the possible plugin flags, there are none. + (from HbDeviceDialogPlugin) */ + PluginFlags pluginFlags() const; + + /* Not supported. (from HbDeviceDialogPlugin)*/ + int error() const; + +private: + Q_DISABLE_COPY(EapDialogPlugin) + +}; + +/*! @} */ + +#endif // ___EAPDIALOG_H__