sysanadatacapture/piprofiler/piprofiler/plugins/BUPplugin/inc/TouchEventClientDll.h
changeset 1 3ff3fecb12fe
equal deleted inserted replaced
0:f0f2b8682603 1:3ff3fecb12fe
       
     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 
       
    19 #ifndef _PROFILER_TOUCH_EVENT_CLIENT_DLL__
       
    20 #define _PROFILER_TOUCH_EVENT_CLIENT_DLL__
       
    21 
       
    22 #include <w32adll.h>
       
    23 
       
    24 class CProfilerTouchEventControl;
       
    25 
       
    26 class RProfilerTouchEventAnim : public RAnim
       
    27 {
       
    28    public: 
       
    29       RProfilerTouchEventAnim( RAnimDll& aAnimDll );
       
    30       void ConstructL( const RWindow& aParent  );
       
    31 
       
    32 	  void Activate();
       
    33 	  void Deactivate();
       
    34 
       
    35 
       
    36       enum KAnimCommands
       
    37       {
       
    38          KActivate       = 70002,
       
    39          KDeactivate	 = 70003
       
    40       };
       
    41       /**
       
    42        * Closes the animation object
       
    43        */
       
    44    	  void Close();
       
    45 
       
    46    private:        
       
    47 	  CProfilerTouchEventControl* iTouchEventControl;   
       
    48 };
       
    49 
       
    50 #endif