phoneuis/ussdeditor/inc/ussdeditorquery.h
changeset 76 cfea66083b62
parent 27 2f8f8080a020
equal deleted inserted replaced
74:d1c62c765e48 76:cfea66083b62
    20 #define USSDEDITORQUERY_H
    20 #define USSDEDITORQUERY_H
    21 
    21 
    22 // INCLUDES
    22 // INCLUDES
    23 #include <hbinputdialog.h>
    23 #include <hbinputdialog.h>
    24 
    24 
    25 class CUssdComms;
    25 class UssdComms;
    26 
    26 
    27 class UssdEditorQuery: public HbInputDialog
    27 class UssdEditorQuery: public HbInputDialog
    28 {
    28 {
    29     Q_OBJECT
    29     Q_OBJECT
    30 
    30 
    31 public:
    31 public:
    32     UssdEditorQuery( CUssdComms &ussd, QGraphicsItem *parent = 0);
    32     UssdEditorQuery( UssdComms &ussd, QGraphicsItem *parent = 0);
    33     ~UssdEditorQuery();
    33     ~UssdEditorQuery();
    34 
    34 
    35 private slots:
    35 private slots:
    36     void sendUssdString();
    36     void sendUssdString();
    37     void cancelUssdString();
    37     void cancelUssdString();
    38     void updateButtonVisible( const QString &text );
    38     void updateButtonVisible( const QString &text );
    39 private:
    39 private:
    40     // From main.cpp
    40     // From main.cpp
    41     CUssdComms &mComms;
    41     UssdComms &mComms;
    42 };
    42 };
    43 
    43 
    44 #endif // USSDEDITORQUERY_H
    44 #endif // USSDEDITORQUERY_H
    45 
    45 
    46 // End of file
    46 // End of file