apengine/apsettingshandlerui/src/ApMultiLineDataQueryDialog.cpp
changeset 61 8b0c979bbe8c
parent 59 2709c04a4af5
child 70 ac5daea24fb0
equal deleted inserted replaced
59:2709c04a4af5 61:8b0c979bbe8c
     1 /*
       
     2 * Copyright (c) 2002 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:  Implementation of CApMultiLineDataQueryDialog.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 
       
    21 
       
    22 #include    "ApMultiLineDataQueryDialog.h"
       
    23 #include    "ApSettingsHandlerLogger.h"
       
    24 
       
    25 
       
    26 // ================= MEMBER FUNCTIONS =======================
       
    27 
       
    28 
       
    29 // ---------------------------------------------------------
       
    30 // CApMultiLineDataQueryDialog::NewL
       
    31 // ---------------------------------------------------------
       
    32 //
       
    33 CApMultiLineDataQueryDialog* CApMultiLineDataQueryDialog::NewL(
       
    34                            TDes&  aText1, TDes&  aText2,
       
    35                            TTone aTone )
       
    36     {
       
    37     APSETUILOGGER_ENTERFN( EOther,"MultiQuery::NewL")
       
    38     
       
    39     CApMultiLineDataQueryDialog* self = 
       
    40         new (ELeave) CApMultiLineDataQueryDialog(aTone);
       
    41     CleanupStack::PushL(self);
       
    42 
       
    43     self->SetDataL( aText1, aText2 );
       
    44 
       
    45     CleanupStack::Pop(self);
       
    46     
       
    47     APSETUILOGGER_LEAVEFN( EOther,"MultiQuery::NewL")
       
    48     return self;
       
    49     }
       
    50 
       
    51 
       
    52 // ---------------------------------------------------------
       
    53 // CApMultiLineDataQueryDialog::CApMultiLineDataQueryDialog
       
    54 // ---------------------------------------------------------
       
    55 //
       
    56 CApMultiLineDataQueryDialog::CApMultiLineDataQueryDialog( const TTone& aTone )
       
    57 : CAknMultiLineDataQueryDialog( aTone )
       
    58     {
       
    59     APSETUILOGGER_ENTERFN( EOther,"MultiQuery::CApMultiLineDataQueryDialog<->")
       
    60     }
       
    61 
       
    62 
       
    63 // ---------------------------------------------------------
       
    64 // CApMultiLineDataQueryDialog::UpdateLeftSoftKeyL
       
    65 // ---------------------------------------------------------
       
    66 //
       
    67 void CApMultiLineDataQueryDialog::UpdateLeftSoftKeyL()
       
    68     {
       
    69     APSETUILOGGER_ENTERFN( EOther,"MultiQuery::UpdateLeftSoftKeyL")
       
    70     
       
    71     CAknMultiLineDataQueryDialog::UpdateLeftSoftKeyL();
       
    72     MakeLeftSoftkeyVisible( ETrue );
       
    73     
       
    74     APSETUILOGGER_LEAVEFN( EOther,"MultiQuery::UpdateLeftSoftKeyL")
       
    75     }
       
    76 
       
    77 // End of File