equal
  deleted
  inserted
  replaced
  
    
    
|         |      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:  Provides editor clearing method for CodeQueryDialog | 
|         |     15 *               and CodeRequestQueryDialog. | 
|         |     16 * | 
|         |     17 * | 
|         |     18 */ | 
|         |     19  | 
|         |     20  | 
|         |     21  | 
|         |     22  | 
|         |     23 #ifndef __SECUICODEQUERYCONTROL__ | 
|         |     24 #define __SECUICODEQUERYCONTROL__ | 
|         |     25  | 
|         |     26 #include <aknQueryControl.h> | 
|         |     27  | 
|         |     28 class CCodeQueryControl : public CAknQueryControl | 
|         |     29 	{ | 
|         |     30 	public://new functions | 
|         |     31 		/** | 
|         |     32 		* Clears the secret editor | 
|         |     33 		*  | 
|         |     34 		*/ | 
|         |     35 		void ResetEditorL(); | 
|         |     36 		/** | 
|         |     37 		* Plays sounds | 
|         |     38 		*  | 
|         |     39 		* @param aSid TInt  | 
|         |     40 		*/ | 
|         |     41 		void PlaySound(TInt aSid); | 
|         |     42 		/** | 
|         |     43 		* Checks if there is an emergency number in the input field. | 
|         |     44 		*   | 
|         |     45 		*/ | 
|         |     46 		TBool IsEmergencyNumber(); | 
|         |     47 		/** | 
|         |     48 		* Checks if there is an emergency call support flag is on. | 
|         |     49 		*   | 
|         |     50 		*/ | 
|         |     51 		TBool IsEmergencyCallSupportOn(); | 
|         |     52 	}; | 
|         |     53  | 
|         |     54 #endif | 
|         |     55  | 
|         |     56 // End of file |