coreapplicationuis/hbdeviceinputdialogplugin/inc/hbdeviceinputdialogplugin_p.h
branchRCL_3
changeset 20 c2c61fdca848
parent 19 924385140d98
child 21 9af619316cbf
equal deleted inserted replaced
19:924385140d98 20:c2c61fdca848
     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  * Description:  
       
    15  *   
       
    16  ****************************************************************************/
       
    17 
       
    18 #ifndef HBDEVICEINPUTDIALOGPLUGIN_P_H
       
    19 #define HBDEVICEINPUTDIALOGPLUGIN_P_H
       
    20 
       
    21 #include <QObject>
       
    22 #include <QVariantMap>
       
    23 
       
    24 #include <hbdevicedialogplugin.h>
       
    25 
       
    26 class HbDeviceInputDialogPluginPrivate;
       
    27 
       
    28 class HbDeviceInputDialogPlugin : public HbDeviceDialogPlugin
       
    29 {
       
    30     Q_OBJECT
       
    31 
       
    32 public:
       
    33     friend class HbDeviceInputDialogPluginPrivate;
       
    34 
       
    35     HbDeviceInputDialogPlugin();
       
    36     ~HbDeviceInputDialogPlugin();
       
    37 
       
    38     bool accessAllowed(const QString &deviceDialogType,const QVariantMap &parameters, const QVariantMap &securityInfo) const;
       
    39     HbDeviceDialogInterface *createDeviceDialog(const QString &deviceDialogType,const QVariantMap &parameters);
       
    40     bool deviceDialogInfo(const QString &deviceDialogType,const QVariantMap &parameters, DeviceDialogInfo *info) const;
       
    41     QStringList deviceDialogTypes() const;
       
    42     PluginFlags pluginFlags() const;
       
    43     int error() const;
       
    44 
       
    45 private:
       
    46     Q_DISABLE_COPY(HbDeviceInputDialogPlugin)
       
    47     HbDeviceInputDialogPluginPrivate *d;
       
    48 };
       
    49 
       
    50 #endif // HBDEVICEINPUTDIALOGPLUGIN_P_H