gsprofilesrv_plat/settings_framework_api/inc/GSTabbedView.h
branchGCC_SURGE
changeset 45 f48d04161a92
parent 27 572294aa6075
parent 43 3341fe7c643a
equal deleted inserted replaced
27:572294aa6075 45:f48d04161a92
     1 /*
       
     2 * Copyright (c) 2005 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 *        Header file for MGSTabbedView class.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef GSTABBEDVIEW_H
       
    21 #define GSTABBEDVIEW_H
       
    22 
       
    23 #include <e32cmn.h>
       
    24 
       
    25 class CGulIcon;
       
    26 
       
    27 /**
       
    28 * Interface to be used when creating tab groups. Used by CGSTabHelper.
       
    29 *
       
    30 */
       
    31 class MGSTabbedView
       
    32     {
       
    33     public: // New
       
    34         
       
    35         /**
       
    36         * Creates new icon for tab. Ownership is transferred to client.
       
    37         */
       
    38         virtual CGulIcon* CreateTabIconL() = 0;
       
    39         
       
    40         /**
       
    41         * UID of the tab.
       
    42         */
       
    43         virtual TUid Id() const = 0;
       
    44     
       
    45     };
       
    46     
       
    47 #endif // GSTABBEDVIEW_H
       
    48 //End of File