equal
deleted
inserted
replaced
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __LAFSPANE_H__ |
|
17 #define __LAFSPANE_H__ |
|
18 |
|
19 #include <e32std.h> |
|
20 |
|
21 // forward declaration |
|
22 class CEikStatusPaneBackground; |
|
23 |
|
24 class LafStatusPaneContainer |
|
25 /** Status pane LAF support. |
|
26 |
|
27 @publishedPartner |
|
28 @released */ |
|
29 { |
|
30 public: |
|
31 /** Tests if fading the status pane is allowed. |
|
32 |
|
33 @return True if fading is allowed. |
|
34 @see CEikStatusPane::SetFaded() */ |
|
35 IMPORT_C static TBool AllowFading(); |
|
36 |
|
37 /** Creates a background object for the status pane. The background |
|
38 object class is derived from the virtual class CEikStatusPaneBackground |
|
39 |
|
40 @return Pointer to a background object derived from CEikStatusPaneBackground */ |
|
41 IMPORT_C static CEikStatusPaneBackground* CreateStatusPaneBackgroundL(); |
|
42 }; |
|
43 |
|
44 #endif // __LAFSPANE_H__ |
|