videditor/SimpleVideoEditor/inc/DummyControl.h
changeset 9 d87d32eab1a9
parent 0 951a5db380a0
equal deleted inserted replaced
0:951a5db380a0 9:d87d32eab1a9
     1 /*
       
     2 * Copyright (c) 2010 Ixonos Plc.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the "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 * Ixonos Plc
       
    14 *
       
    15 * Description:  
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 /*
       
    21 * ============================================================================
       
    22 *  Name     : DummyControl.h
       
    23 *  Part of  : Video Editor
       
    24 *  Description:
       
    25 *     Declares dummy control class
       
    26 * ============================================================================
       
    27 */
       
    28   
       
    29 #ifndef _DUMMYCONTROL_H_
       
    30 #define _DUMMYCONTROL_H_
       
    31 
       
    32 #include <coecntrl.h>
       
    33 #include <akndialog.h>
       
    34 
       
    35 NONSHARABLE_CLASS( CDummyControl ) : public CAknDialog 
       
    36 	{
       
    37 public:
       
    38 	
       
    39 	void ConstructL ();
       
    40 	virtual ~CDummyControl();	
       
    41 	TKeyResponse OfferKeyEventL (const TKeyEvent& /*aKeyEvent*/, TEventCode /*aType*/);
       
    42 	TBool OkToExitL (TInt aButtonId);
       
    43 
       
    44 	};
       
    45 
       
    46 #endif _DUMMYCONTROL_H_