satui/satapp/inc/satappgetinkeynote.h
changeset 31 a2467631ae02
parent 27 7eb70891911c
child 32 1f002146abb4
equal deleted inserted replaced
27:7eb70891911c 31:a2467631ae02
     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 
       
    19 #ifndef SATAPPGETINKEYNOTE_H
       
    20 #define SATAPPGETINKEYNOTE_H
       
    21 
       
    22 #include <QObject>
       
    23 #include <hbmessagebox.h>
       
    24 
       
    25 
       
    26 class SatAppGetInkeyNote : public HbMessageBox
       
    27 {
       
    28     Q_OBJECT
       
    29 
       
    30 public:
       
    31 
       
    32     SatAppGetInkeyNote(const QString &text,
       
    33                        MessageBoxType type=MessageTypeInformation, 
       
    34                        QGraphicsItem *parent=0);
       
    35 
       
    36     virtual ~SatAppGetInkeyNote();
       
    37 
       
    38 signals:
       
    39 
       
    40     void digitalKeyPressed(const int key);
       
    41 
       
    42 public:
       
    43     void  keyPressEvent(QKeyEvent *event);
       
    44 
       
    45     };
       
    46 #endif //SATAPPGETINKEYNOTE_H
       
    47