securitydialogs/secuinotifications/secuinotificationdialogplugin/inc/secuinotificationcontentwidget.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 * Description: SecUi notification content widget.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef SECUINOTIFICATIONCONTENTWIDGET_H
       
    19 #define SECUINOTIFICATIONCONTENTWIDGET_H
       
    20 
       
    21 #include <hbwidget.h>       // HbWidget
       
    22 #include <hblineedit.h>       // HbWidget
       
    23 
       
    24 class HbLabel;
       
    25 
       
    26 
       
    27 class SecUiNotificationContentWidget : public HbWidget
       
    28 {
       
    29     Q_OBJECT
       
    30 
       
    31 public:
       
    32     SecUiNotificationContentWidget(QGraphicsItem *parent=0, Qt::WindowFlags flags=0);
       
    33     virtual ~SecUiNotificationContentWidget();
       
    34 
       
    35     void constructFromParameters(const QVariantMap &parameters);
       
    36 
       
    37 signals:
       
    38     void memorySelectionChanged(const QString &text);
       
    39     void codeTopChanged(const QString &text);
       
    40     void but1Changed();
       
    41     void but2Changed();
       
    42     void but3Changed();
       
    43 
       
    44 private:
       
    45     Q_DISABLE_COPY(SecUiNotificationContentWidget)
       
    46 
       
    47 private:    // data
       
    48 public:
       
    49 		HbLineEdit *codeTop;
       
    50     int queryType;
       
    51 };
       
    52 
       
    53 #endif // SECUINOTIFICATIONCONTENTWIDGET_H