messagingfw/senduiservices/serviceresolver/inc/senduisrdoc.h
branchRCL_3
changeset 23 d51193d814ea
parent 0 8e480a14352b
equal deleted inserted replaced
22:d2c4c66342f3 23:d51193d814ea
       
     1 /*
       
     2 * Copyright (c) 2006 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:   Document class for SendUi service resolver
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 #ifndef C_CSENDUISRDOC_H
       
    23 #define C_CSENDUISRDOC_H
       
    24 
       
    25 
       
    26 #include <AknDoc.h>
       
    27 #include <ConeResLoader.h>
       
    28 
       
    29 // forward declarations
       
    30 class CSendUiSrAppUi;
       
    31 class CEikApplication;
       
    32 
       
    33 /**
       
    34  *  Document class for SendUiServiceResolver application
       
    35  *
       
    36  *  An instance of class CSendUiSrDocument is the Document part of the AVKON
       
    37  *  application framework for the SendUiServiceResolver application
       
    38  *  @since S60 v3.2
       
    39  */
       
    40 class  CSendUiSrDocument : public CAknDocument
       
    41     {
       
    42 
       
    43 public:
       
    44 
       
    45     static CSendUiSrDocument* NewL(CEikApplication& aApp);
       
    46     
       
    47     static CSendUiSrDocument* NewLC(CEikApplication& aApp);
       
    48 
       
    49     virtual ~CSendUiSrDocument();
       
    50 
       
    51 // from base class CAknDocument
       
    52 
       
    53     /**
       
    54      * From CAknDocument.
       
    55      * Create new AppUi
       
    56      *
       
    57      * @since S60 v3.2
       
    58      * @return Reference to new AppUi.
       
    59      */
       
    60     CEikAppUi* CreateAppUiL();
       
    61 
       
    62 private:
       
    63 
       
    64     CSendUiSrDocument(CEikApplication& aApp);
       
    65 
       
    66     void ConstructL();
       
    67  
       
    68     /**
       
    69      * Create new AppUi
       
    70      *
       
    71      * @since S60 v3.2
       
    72      * @return Reference to new AppUi.
       
    73      */
       
    74     void HandleUpdateSendList();
       
    75     
       
    76     /**
       
    77      * Hides task name from fast swap window
       
    78      *
       
    79      * @since S60 v3.2
       
    80      * @param aWgName Reference to a new window group name
       
    81      */
       
    82     void UpdateTaskNameL(CApaWindowGroupName* aWgName);
       
    83 
       
    84     };
       
    85 
       
    86 
       
    87 #endif // C_CSENDUIDOC_H