gssettingsuis/Gs/tsrc/public/basic/GSFramework/TestGSBaseView.h
branchRCL_3
changeset 24 8ee96d21d9bf
parent 23 8bda91a87a00
child 25 7e0eff37aedb
equal deleted inserted replaced
23:8bda91a87a00 24:8ee96d21d9bf
     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 #ifndef TESTGSBASEVIEW_H
       
    18 #define TESTGSBASEVIEW_H
       
    19 
       
    20 // INCLUDES
       
    21 #include    <GSBaseView.h>
       
    22 
       
    23 
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 class CTestGSBaseView : public CGSBaseView
       
    28     {
       
    29     public:     // Constructors and destructors
       
    30 
       
    31         /**
       
    32          * Two phase construction
       
    33          */
       
    34         static CTestGSBaseView* NewL();
       
    35         static CTestGSBaseView* NewLC();
       
    36         /**
       
    37          * Destructor
       
    38          */
       
    39         ~CTestGSBaseView();
       
    40 
       
    41         
       
    42     public: // From CGSBaseView
       
    43     
       
    44     	void SetNaviPaneL();
       
    45     	
       
    46     	void CreateNaviPaneContextL( TInt aResourceId );
       
    47     	
       
    48     private:    // Constructors and destructors
       
    49 
       
    50         CTestGSBaseView();
       
    51         void ConstructL();
       
    52         
       
    53 
       
    54 
       
    55     protected: 
       
    56 
       
    57         void NewContainerL();
       
    58 
       
    59 
       
    60     private:
       
    61 
       
    62         void HandleListBoxSelectionL();
       
    63         
       
    64         void GetCaptionL( TDes& aCaption ) const;
       
    65         
       
    66 		TUid Id() const;
       
    67 
       
    68     };
       
    69 
       
    70 #endif // TESTGSBASEVIEW_H
       
    71 // End of File