equal
deleted
inserted
replaced
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). |
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). |
2 // All rights reserved. |
2 // All rights reserved. |
3 // This component and the accompanying materials are made available |
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 |
4 // under the terms of "Eclipse Public License v1.0" |
5 // which accompanies this distribution, and is available |
5 // which accompanies this distribution, and is available |
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
7 // |
7 // |
8 // Initial Contributors: |
8 // Initial Contributors: |
9 // Nokia Corporation - initial contribution. |
9 // Nokia Corporation - initial contribution. |
10 // |
10 // |
11 // Contributors: |
11 // Contributors: |
15 |
15 |
16 #ifndef __EIKAMNT_H__ |
16 #ifndef __EIKAMNT_H__ |
17 #define __EIKAMNT_H__ |
17 #define __EIKAMNT_H__ |
18 |
18 |
19 #include <e32base.h> |
19 #include <e32base.h> |
|
20 |
|
21 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS |
|
22 #include <uikon/eikautomenutitlearray.h> |
|
23 #endif |
20 |
24 |
21 class CGulIcon; |
25 class CGulIcon; |
22 class MEikAutoMenuObserver; |
26 class MEikAutoMenuObserver; |
23 |
27 |
24 /** A menu title that will be added to a standard resource-constructed menu bar. |
28 /** A menu title that will be added to a standard resource-constructed menu bar. |
61 MEikAutoMenuObserver& iMenuObserver; |
65 MEikAutoMenuObserver& iMenuObserver; |
62 TInt iMenuPaneResourceId; |
66 TInt iMenuPaneResourceId; |
63 CGulIcon* iIcon; |
67 CGulIcon* iIcon; |
64 }; |
68 }; |
65 |
69 |
66 |
|
67 /** Creates a standard array of CEikAutoMenuTitle objects. |
|
68 |
|
69 @publishedPartner |
|
70 @released */ |
|
71 NONSHARABLE_CLASS(CEikAutoMenuTitleArray) : public CArrayPtrFlat<CEikAutoMenuTitle> |
|
72 // If more than one title is specified for the start or end, they will be placed in the same order they appear |
|
73 // in the array (so the first EStart in the array will be the first on a menu bar also but the last EEnd will |
|
74 // be the last). |
|
75 { |
|
76 public: |
|
77 CEikAutoMenuTitleArray(); |
|
78 ~CEikAutoMenuTitleArray(); |
|
79 }; |
|
80 |
|
81 #endif // __EIKAMNT_H__ |
70 #endif // __EIKAMNT_H__ |