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: Interface for getting client rect area and getting reference to |
|
15 * the view in use. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef MPROFILEVIEWHANDLER_H |
|
22 #define MPROFILEVIEWHANDLER_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32std.h> |
|
26 |
|
27 // FORWARD DECLARATIONS |
|
28 class CAknView; |
|
29 |
|
30 // CLASS DECLARATION |
|
31 |
|
32 /** |
|
33 * Interface for updating the active area and getting reference to the view in |
|
34 * use. |
|
35 * |
|
36 * @lib ProfileSettingsView.dll |
|
37 * @since 3.1 |
|
38 */ |
|
39 class MProfileViewHandler |
|
40 { |
|
41 |
|
42 public: // New functions |
|
43 |
|
44 /** |
|
45 * Updates the client drawing area. |
|
46 * @since 3.1 |
|
47 */ |
|
48 virtual void UpdateClientRect() = 0; |
|
49 |
|
50 /** |
|
51 * Returns the view instance in use. |
|
52 * @since 3.1 |
|
53 */ |
|
54 virtual CAknView& View() = 0; |
|
55 |
|
56 }; |
|
57 |
|
58 #endif // MProfileViewHandler_H |
|
59 |
|
60 // End of File |
|