qtmobileextensions/src/keycapture/responsehandler.h
changeset 14 6fbed849b4f4
child 19 46686fb6258c
equal deleted inserted replaced
11:06b8e2af4411 14:6fbed849b4f4
       
     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 RESPONSEHANDLER_H_
       
    23 #define RESPONSEHANDLER_H_
       
    24 
       
    25 #include <remconcoreapitarget.h>
       
    26 
       
    27 #include <remconcoreapi.h>
       
    28 #include <remconinterfaceselector.h>
       
    29 #include <remconcoreapitarget.h>
       
    30 #include <remconcoreapitargetobserver.h>    
       
    31 
       
    32 NONSHARABLE_CLASS(ResponseHandler) : public CActive
       
    33 {
       
    34 public:
       
    35 
       
    36     /**
       
    37      * Two-phased constructor.
       
    38      *
       
    39      * @since 3.0
       
    40      * @param aRemConCoreApiTarget RemCon core target object.
       
    41      * @return Pointer to newly created object.
       
    42      */
       
    43     static ResponseHandler* NewL( CRemConCoreApiTarget& aRemConCoreApiTarget );
       
    44 
       
    45     /**
       
    46      * Destructor.
       
    47      */
       
    48     virtual ~ResponseHandler();
       
    49 
       
    50     /**
       
    51      * Send the any key response back to Remcon server
       
    52      *
       
    53      * @since 3.0
       
    54      * @param aOperationId RemCon operation Id.
       
    55      */
       
    56     void CompleteAnyKey( TRemConCoreApiOperationId aOperationId );
       
    57 
       
    58 private:
       
    59 
       
    60     /**
       
    61      * C++ default constructor.
       
    62      */
       
    63     ResponseHandler( CRemConCoreApiTarget& aRemConCoreApiTarget );
       
    64 
       
    65 // from base class CActive
       
    66 
       
    67     /**
       
    68      * From CActive
       
    69      * Handles an active object's request completion event.
       
    70      */
       
    71     void RunL();
       
    72 
       
    73     /**
       
    74      * From CActive
       
    75      * Implements cancellation of an outstanding request.
       
    76      */
       
    77     void DoCancel();
       
    78 
       
    79 private:    // Data
       
    80 
       
    81     // Response array.
       
    82     RArray<TRemConCoreApiOperationId> iResponseArray;   // Own
       
    83     CRemConCoreApiTarget& iRemConCoreApiTarget;         // Not own
       
    84 };
       
    85 
       
    86 #endif /* RESPONSEHANDLER_H_ */