equal
deleted
inserted
replaced
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
1 // Copyright (c) 2004-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 __ANIMATIONMIXINS_H__ |
16 #ifndef __ANIMATIONMIXINS_H__ |
17 #define __ANIMATIONMIXINS_H__ |
17 #define __ANIMATIONMIXINS_H__ |
18 |
18 |
19 #include <e32base.h> |
19 #include <e32base.h> |
|
20 #include <animationdataloaderobserver.h> |
20 |
21 |
21 /** Interface from a data provider to an animation |
22 /** Interface from a data provider to an animation |
22 |
23 |
23 An animation which has a data provider receives information from it via this |
24 An animation which has a data provider receives information from it via this |
24 interface. |
25 interface. |
145 protected: |
146 protected: |
146 IMPORT_C virtual void MAnimationTickee_Reserved1(); |
147 IMPORT_C virtual void MAnimationTickee_Reserved1(); |
147 IMPORT_C virtual void MAnimationTickee_Reserved2(); |
148 IMPORT_C virtual void MAnimationTickee_Reserved2(); |
148 }; |
149 }; |
149 |
150 |
150 /** Internal interface used by the ICL data loader to communicate with the |
|
151 ICL data provider. Not intended for user derivation. |
|
152 @internalComponent*/ |
|
153 class MICLAnimationDataLoaderObserver |
|
154 { |
|
155 public: |
|
156 enum TDataLoaderEvent |
|
157 { |
|
158 EImagePartialConvert, |
|
159 EImageConvertComplete, |
|
160 }; |
|
161 public: |
|
162 IMPORT_C virtual void DataLoaderEventL(TDataLoaderEvent aMessage, TInt aError) = 0; |
|
163 }; |
|
164 |
|
165 #endif //__ANIMATIONMIXINS_H__ |
151 #endif //__ANIMATIONMIXINS_H__ |