classicui_pub/grids_api/tsrc/inc/scrolbarsbserver.h
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 2002 - 2007 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:  Test grids_api
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_SCROLLBAROBSERVER_H
       
    20 #define C_SCROLLBAROBSERVER_H
       
    21 
       
    22 /*
       
    23  * Include files
       
    24  */
       
    25 #include<eiksbobs.h> 
       
    26 #include<e32base.h>
       
    27 
       
    28 /*
       
    29  * This class inherit from MEidSsrollBarObserver class for construction special paramer
       
    30  */
       
    31 class CStifScrollBarObserver:public CBase,public MEikScrollBarObserver
       
    32     {
       
    33 public:
       
    34     /*
       
    35      * Constructor
       
    36      */
       
    37     CStifScrollBarObserver();
       
    38     /*
       
    39      * Destructor
       
    40      */
       
    41     ~CStifScrollBarObserver();
       
    42     /*
       
    43      * This function inherit from MEikScrollBarObserver class
       
    44      */
       
    45     void HandleScrollEventL(CEikScrollBar* aScrollBar, TEikScrollEvent aEventType);
       
    46     };
       
    47 
       
    48 #endif
       
    49 
       
    50 /*
       
    51  * End file
       
    52  */