locationsystemui/locationsysui/locsuplsettingsui/inc/locsuplsettingseventhandler.h
equal
deleted
inserted
replaced
|
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: Handles Events from the container |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_LOCSUPLSETTINGSEVENTHANDLER_H_ |
|
20 #define M_LOCSUPLSETTINGSEVENTHANDLER_H_ |
|
21 |
|
22 // System Include |
|
23 #include <e32base.h> |
|
24 |
|
25 /** |
|
26 * Handles events from the Location System UI Container |
|
27 * |
|
28 * @lib locsuplsettings.lib |
|
29 * @since S60 v3.1 |
|
30 */ |
|
31 class MLocSUPLSettingsEventHandler |
|
32 { |
|
33 public: |
|
34 enum TSuplDialogEvent |
|
35 { |
|
36 ELaunchViewComplete |
|
37 }; |
|
38 public: |
|
39 /** |
|
40 * Handles the Screen Size update |
|
41 * @since S60 v3.1 |
|
42 */ |
|
43 virtual void HandleScreenSizeChange() = 0; |
|
44 |
|
45 /** |
|
46 * Command handlikng function |
|
47 * |
|
48 * @param aCommand Command that needs to be handled |
|
49 */ |
|
50 virtual void HandleCommandL( TInt aCommand ) = 0; |
|
51 }; |
|
52 |
|
53 #endif // M_LOCSUPLSETTINGSEVENTHANDLER_H_ |
|
54 |