logsui/AppSrc/CLogsPrependQuery.h
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 2004 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 *     Prepend query definition
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef     __LOGS_APP_CLOGSPREPENDQUERY_H__
       
    21 #define     __LOGS_APP_CLOGSPREPENDQUERY_H__
       
    22 
       
    23 //  INCLUDES
       
    24 #include <AknQueryDialog.h>
       
    25 
       
    26 //  CLASS DECLARATIONS
       
    27 
       
    28 /*
       
    29  * Prepend query
       
    30  * @since 2.7
       
    31  */
       
    32 class CLogsPrependQuery : public CAknTextQueryDialog
       
    33     {
       
    34     public:
       
    35         /**
       
    36          * Instantiate prepend query
       
    37          * @param aResource : query resource
       
    38          */
       
    39         static CLogsPrependQuery* NewL( TDes& aResource );
       
    40 
       
    41         /**
       
    42          * Destructor
       
    43          */
       
    44         virtual ~CLogsPrependQuery();
       
    45 
       
    46     private:
       
    47         /**
       
    48          * C++ constructor
       
    49          * @param aResource : query resource
       
    50          */
       
    51         CLogsPrependQuery( TDes& aResource );
       
    52 
       
    53         /**
       
    54          * From CCoeControl
       
    55          */
       
    56         TKeyResponse OfferKeyEventL( const TKeyEvent& aKeyEvent, 
       
    57                                      TEventCode aType );
       
    58     };
       
    59 
       
    60 #endif  // __LOGS_APP_CLOGSPREPENDQUERY_H__
       
    61 
       
    62 // end of file