phoneplugins/infowidgetplugin/infowidgetprovider/infowidget/inc/infowidgetsathandler.h
changeset 22 6bb1b21d2484
child 27 2f8f8080a020
equal deleted inserted replaced
21:92ab7f8d0eab 22:6bb1b21d2484
       
     1 /*
       
     2  * Copyright (c) 2009 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 INFOWIDGETSATHANDLER_H_
       
    19 #define INFOWIDGETSATHANDLER_H_
       
    20 
       
    21 #include <QObject>
       
    22 
       
    23 class InfoWidgetSatHandler: public QObject 
       
    24     {
       
    25     Q_OBJECT
       
    26     
       
    27 public:    
       
    28     InfoWidgetSatHandler(QObject *parent = NULL);
       
    29     ~InfoWidgetSatHandler();    
       
    30 
       
    31     const QString& satDisplayText() const; 
       
    32     void setSatDisplayText(const QString& displayText);
       
    33 
       
    34     void logCurrentInfo(); 
       
    35 
       
    36 signals: 
       
    37     void handleMessage( int message );
       
    38     void handleError( int operation, int errorCode );
       
    39 
       
    40     
       
    41 private: 
       
    42     QString m_displayText; 
       
    43     }; 
       
    44 
       
    45 #endif /* INFOWIDGETSATHANDLER_H_ */
       
    46 
       
    47