sdkcreationmw/sdkexamples/cppexamples/S60Ex/HierarchicalColumnList/src/HierarchicalColumnListApplication.cpp
author rajpuroh
Wed, 21 Apr 2010 09:56:53 +0530
changeset 1 ac50fd48361b
parent 0 b26acd06ea60
permissions -rw-r--r--
Second Contribution
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     1
/*
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     2
* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     3
* All rights reserved.
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     4
* This component and the accompanying materials are made available
1
ac50fd48361b Second Contribution
rajpuroh
parents: 0
diff changeset
     5
* under the terms of the License "Eclipse Public License v1.0"
0
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     6
* which accompanies this distribution, and is available
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     8
*
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     9
* Initial Contributors:
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    10
* Nokia Corporation - initial contribution.
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    11
*
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    12
* Contributors:
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    13
*
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    14
* Description:  Implementation for HierarchicalColumnListApplication class.
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    15
*
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    16
*/
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    17
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    18
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    19
#include "HierarchicalColumnListDocument.h"
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    20
#include "HierarchicalColumnListApplication.h"
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    21
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    22
// UID for the application, this should correspond to the uid defined
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    23
// in the mmp file
1
ac50fd48361b Second Contribution
rajpuroh
parents: 0
diff changeset
    24
static const TUid KUidHierarchicalColumnListApp = { 0xE0007E00 };
0
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    25
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    26
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    27
// ======== MEMBER FUNCTIONS ========
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    28
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    29
// ---------------------------------------------------------------------------
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    30
// Create an HierarchicalColumnList document, and return a pointer to it.
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    31
// ---------------------------------------------------------------------------
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    32
//
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    33
CApaDocument* CHierarchicalColumnListApplication::CreateDocumentL()
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    34
    {  
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    35
    CApaDocument* document = CHierarchicalColumnListDocument::NewL( *this );
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    36
    return document;
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    37
    }
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    38
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    39
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    40
// ---------------------------------------------------------------------------
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    41
// Return the UID for the HierarchicalColumnList application.
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    42
// ---------------------------------------------------------------------------
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    43
//
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    44
TUid CHierarchicalColumnListApplication::AppDllUid() const
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    45
    {
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    46
    return KUidHierarchicalColumnListApp;
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    47
    }
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    48