phoneplugins/infowidgetplugin/infowidget/inc/infowidgetlinehandler.h
branchRCL_3
changeset 24 41a7f70b3818
equal deleted inserted replaced
23:40a3f856b14d 24:41a7f70b3818
       
     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 INFOWIDGETLINEHANDLER_H_
       
    19 #define INFOWIDGETLINEHANDLER_H_
       
    20 
       
    21 #include <QObject>
       
    22 
       
    23 // Class declaration
       
    24 class InfoWidgetLineHandler: public QObject 
       
    25     {
       
    26     Q_OBJECT
       
    27     
       
    28 public:    
       
    29     InfoWidgetLineHandler(QObject *parent = NULL);
       
    30     ~InfoWidgetLineHandler();    
       
    31 
       
    32     int activeLine() const; 
       
    33     
       
    34 signals: 
       
    35     void handleMessage(int message);
       
    36     void handleError(int operation, int errorCode);
       
    37     
       
    38 private: 
       
    39     int m_activeLine;
       
    40     
       
    41     }; 
       
    42 
       
    43 #endif /* INFOWIDGETLINEHANDLER_H_ */
       
    44 
       
    45