qthighway/tests/testapps/testservice/testservice.h
changeset 18 1b485afba084
parent 16 19b186e43276
child 28 19321a443c34
equal deleted inserted replaced
16:19b186e43276 18:1b485afba084
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 *
       
     5 * This program is free software: you can redistribute it and/or modify
       
     6 * it under the terms of the GNU Lesser General Public License as published by
       
     7 * the Free Software Foundation, version 2.1 of the License.
       
     8 *
       
     9 * This program is distributed in the hope that it will be useful,
       
    10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    12 * GNU Lesser General Public License for more details.
       
    13 *
       
    14 * You should have received a copy of the GNU Lesser General Public License
       
    15 * along with this program.  If not,
       
    16 * see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/".
       
    17 *
       
    18 * Description:
       
    19 *
       
    20 */
       
    21 
       
    22 #ifndef ACTIVITYSERVERSERVICE_H
       
    23 #define ACTIVITYSERVERSERVICE_H
       
    24 
       
    25 #include <QObject>
       
    26 #include <QVariant>
       
    27 #include <QWidget>
       
    28 #include <QLabel>
       
    29 #include <xqserviceprovider.h>
       
    30 #include "mytimer.h"
       
    31 
       
    32 class TestService : public XQServiceProvider
       
    33 {
       
    34     Q_OBJECT
       
    35 
       
    36 public:
       
    37     TestService(QObject *parent = 0 );
       
    38     ~TestService();
       
    39 
       
    40     void longRunningRequest();
       
    41 
       
    42 public slots:
       
    43 
       
    44     // request handling methods
       
    45     int syncNoParams();
       
    46     int syncWithParams(QString param1, int param2);
       
    47     int asyncNoParams();
       
    48     int asyncWithParams(QString param1, int param2);    
       
    49 
       
    50 private slots:
       
    51 
       
    52     void completeLongRunningRequest();  
       
    53     void DoneAsyncNoParams();
       
    54     void DoneAsyncWithParams(int timerId);
       
    55     
       
    56 private:
       
    57     QTimer* timer1;
       
    58     QTimer* timer2;
       
    59     QHash<int, MyTimer*> timers;
       
    60 
       
    61     int mRequestIndex1;
       
    62 	int mRequestIndex2;
       
    63 	int mRequestIndex3;
       
    64 	int timerKey;
       
    65 };
       
    66 
       
    67 #endif // ACTIVITYSERVERSERVICE_H