uiacceltk/hitchcock/coretoolkit/inc/HuiRosterEntry.h
changeset 0 15bf7259bb7c
equal deleted inserted replaced
-1:000000000000 0:15bf7259bb7c
       
     1 /*
       
     2 * Copyright (c) 2006-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:   ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __HUIROSTERENTRY_H__
       
    21 #define __HUIROSTERENTRY_H__
       
    22 
       
    23 
       
    24 #include <e32base.h>
       
    25 
       
    26 
       
    27 /* Forward declarations. */
       
    28 class CHuiControlGroup;
       
    29 class CHuiVisual;
       
    30 
       
    31 
       
    32 /**
       
    33  * Control group reference in the roster. Each entry has a list of root 
       
    34  * visuals.
       
    35  */
       
    36 NONSHARABLE_CLASS(CHuiRosterEntry) : public CBase
       
    37 	{
       
    38 public:
       
    39     
       
    40     /* Constructors and destructors. */
       
    41     
       
    42     /**
       
    43      * Constructor.
       
    44      */
       
    45     CHuiRosterEntry(CHuiControlGroup& aGroup);
       
    46     
       
    47     /**
       
    48      * Destructor. 
       
    49      */
       
    50     ~CHuiRosterEntry();
       
    51     
       
    52     /* Methods. */
       
    53     
       
    54     /**
       
    55      * Determines the control group of the entry.
       
    56      */
       
    57     CHuiControlGroup& ControlGroup() const;
       
    58     
       
    59 
       
    60 private:
       
    61 
       
    62     /** Control group of the entry. */
       
    63     CHuiControlGroup& iGroup;
       
    64     
       
    65     
       
    66 public:
       
    67 
       
    68     /* Public data. */    
       
    69     
       
    70     /** Array of root visuals. */
       
    71     RPointerArray<CHuiVisual> iRootVisuals;
       
    72 
       
    73 	};
       
    74 	
       
    75 #endif // __HUIROSTERENTRY_H__