60
|
1 |
/*
|
|
2 |
* Copyright (c) 2008-2009 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: Implementation of Cloud view
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
#include "glxcontainerinfobubble.h" // class header
|
|
21 |
|
|
22 |
|
|
23 |
#include <glxtexturemanager.h> // For CGlxTextureManager
|
|
24 |
#include <glxuiutility.h> // For CGlxUiUtility
|
|
25 |
#include <glxtracer.h>
|
|
26 |
#include <glxlog.h> // For Logs
|
|
27 |
#include <mpxmediageneraldefs.h> // For Attribute constants
|
|
28 |
#include <glxcollectiongeneraldefs.h> //for KGlxMediaCollectionPluginSpecificSubTitle
|
|
29 |
#include <glxthumbnailattributeinfo.h> // for 'KGlxMediaIdThumbnail'
|
|
30 |
#include <glxthumbnailcontext.h> //for thumbnail context
|
|
31 |
#include <glxattributecontext.h> //for attribute context
|
|
32 |
#include <glxuistd.h>
|
|
33 |
#include <glxicons.mbg>
|
|
34 |
#include <mglxmedialist.h> //for medialist
|
|
35 |
#include <data_caging_path_literals.hrh>
|
|
36 |
|
|
37 |
// INCLUDE FILES
|
|
38 |
#include "glxerrormanager.h"
|
|
39 |
|
|
40 |
const TInt KThumbnailWidth = 50;
|
|
41 |
const TInt KThumbnailHeight = 50;
|
|
42 |
|
|
43 |
// ======== MEMBER FUNCTIONS ========
|
|
44 |
// ---------------------------------------------------------------------------
|
|
45 |
// Destructor
|
|
46 |
// ---------------------------------------------------------------------------
|
|
47 |
//
|
|
48 |
CGlxContainerInfoBubble::~CGlxContainerInfoBubble()
|
|
49 |
{
|
|
50 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::~CGlxContainerInfoBubble");
|
|
51 |
|
|
52 |
if ( iTexture )
|
|
53 |
{
|
|
54 |
if( iUiUtility )
|
|
55 |
{
|
|
56 |
iUiUtility->GlxTextureManager().RemoveTexture( *iTexture );
|
|
57 |
}
|
|
58 |
}
|
|
59 |
|
|
60 |
if ( iTimer)
|
|
61 |
{
|
|
62 |
iTimer->Cancel ();//cancels any outstanding requests
|
|
63 |
delete iTimer;
|
|
64 |
}
|
|
65 |
if ( iMediaTitle)
|
|
66 |
{
|
|
67 |
delete iMediaTitle;
|
|
68 |
}
|
|
69 |
if ( iMediaSubTitle)
|
|
70 |
{
|
|
71 |
delete iMediaSubTitle;
|
|
72 |
}
|
|
73 |
if ( iMediaList)
|
|
74 |
{
|
|
75 |
iMediaList->RemoveContext (iAttributeContext);
|
|
76 |
iMediaList->RemoveContext (iThumbnailContext);
|
|
77 |
iMediaList->RemoveMediaListObserver (this);
|
|
78 |
}
|
|
79 |
if ( iAttributeContext)
|
|
80 |
{
|
|
81 |
delete iAttributeContext;
|
|
82 |
}
|
|
83 |
if ( iThumbnailContext)
|
|
84 |
{
|
|
85 |
delete iThumbnailContext;
|
|
86 |
}
|
|
87 |
}
|
|
88 |
|
|
89 |
// ---------------------------------------------------------------------------
|
|
90 |
// Two-phased constructor.
|
|
91 |
// ---------------------------------------------------------------------------
|
|
92 |
//
|
|
93 |
EXPORT_C CGlxContainerInfoBubble *CGlxContainerInfoBubble::NewL(MGlxMediaList
|
|
94 |
*aMediaList, CAlfEnv &aEnv, CAlfControl &aOwnerControl)
|
|
95 |
{
|
|
96 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::NewL");
|
|
97 |
CGlxContainerInfoBubble *self = CGlxContainerInfoBubble::NewLC(aMediaList,aEnv, aOwnerControl);
|
|
98 |
CleanupStack::Pop(self);
|
|
99 |
return self;
|
|
100 |
}
|
|
101 |
|
|
102 |
// ---------------------------------------------------------------------------
|
|
103 |
// Two-phased constructor.
|
|
104 |
// ---------------------------------------------------------------------------
|
|
105 |
//
|
|
106 |
EXPORT_C CGlxContainerInfoBubble *CGlxContainerInfoBubble::NewLC(MGlxMediaList
|
|
107 |
*aMediaList, CAlfEnv &aEnv, CAlfControl &aOwnerControl)
|
|
108 |
{
|
|
109 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::NewLC");
|
|
110 |
CGlxContainerInfoBubble *self = new(ELeave)CGlxContainerInfoBubble(aMediaList);
|
|
111 |
CleanupStack::PushL(self);
|
|
112 |
self->ConstructL(aEnv, aOwnerControl);
|
|
113 |
return self;
|
|
114 |
}
|
|
115 |
|
|
116 |
// ---------------------------------------------------------------------------
|
|
117 |
// ShowNow()
|
|
118 |
// ---------------------------------------------------------------------------
|
|
119 |
//
|
|
120 |
void CGlxContainerInfoBubble::ShowNowL()
|
|
121 |
{
|
|
122 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::ShowNow");
|
|
123 |
// if we got texture, titles and timer is complete, show the bubble
|
|
124 |
if ( iTexture && iMediaTitle && iMediaSubTitle && iTimerComplete )
|
|
125 |
{
|
|
126 |
//last three items will come from medialist
|
|
127 |
DisplayBubbleL (iPos,*iTexture, *iMediaTitle, *iMediaSubTitle); //last three items will come from medialist
|
|
128 |
}
|
|
129 |
}
|
|
130 |
|
|
131 |
// ---------------------------------------------------------------------------
|
|
132 |
// ConstructL()
|
|
133 |
// ---------------------------------------------------------------------------
|
|
134 |
//
|
|
135 |
void CGlxContainerInfoBubble::ConstructL(CAlfEnv &aEnv, CAlfControl
|
|
136 |
&aOwnerControl)
|
|
137 |
{
|
|
138 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::ConstructL");
|
|
139 |
CGlxInfoBubble::BaseConstructL (aOwnerControl, aEnv);
|
|
140 |
iTimer = CGlxBubbleTimer::NewL (this);
|
|
141 |
//medialist code
|
|
142 |
iAttributeContext = CGlxDefaultAttributeContext::NewL ();
|
|
143 |
iAttributeContext->AddAttributeL (KMPXMediaGeneralTitle);
|
|
144 |
iAttributeContext->AddAttributeL (KGlxMediaCollectionPluginSpecificSubTitle);
|
|
145 |
|
|
146 |
iThumbnailContext = CGlxDefaultThumbnailContext::NewL ();
|
|
147 |
iThumbnailContext->SetDefaultSpec (50, 50);
|
|
148 |
iThumbnailContext->SetRangeOffsets (5, 5);
|
|
149 |
iAttributeContext->SetRangeOffsets (10, 10);
|
|
150 |
|
|
151 |
iMediaList->AddContextL (iAttributeContext,
|
|
152 |
KGlxFetchContextPriorityCloudViewInfoBubble );
|
|
153 |
|
|
154 |
iMediaList->AddMediaListObserverL ( this);
|
|
155 |
iMediaList->AddContextL (iThumbnailContext,
|
|
156 |
KGlxFetchContextPriorityCloudViewInfoBubble );
|
|
157 |
|
|
158 |
TInt listCount = iMediaList->Count ();
|
|
159 |
GLX_LOG_INFO1("GLX_CLOUD ::CGlxContainerInfoBubble::ConstructL iMediaList->FocusIndex %d ", iMediaList->FocusIndex ());
|
|
160 |
GLX_LOG_INFO1("GLX_CLOUD ::CGlxContainerInfoBubble::ConstructL MedialistCount %d ",listCount);
|
|
161 |
|
|
162 |
if ( listCount)
|
|
163 |
{
|
|
164 |
SetAttributesL ();
|
|
165 |
}
|
|
166 |
}
|
|
167 |
|
|
168 |
// ---------------------------------------------------------------------------
|
|
169 |
// SetAttributes()
|
|
170 |
// ---------------------------------------------------------------------------
|
|
171 |
//
|
|
172 |
void CGlxContainerInfoBubble::SetAttributesL()
|
|
173 |
{
|
|
174 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::SetAttributes()");
|
|
175 |
|
|
176 |
// Set the attribute context here for fetching the list data
|
|
177 |
TSize size(KThumbnailWidth, KThumbnailHeight);
|
|
178 |
|
|
179 |
TMPXAttribute attrThumbnail(KGlxMediaIdThumbnail
|
|
180 |
,GlxFullThumbnailAttributeId (ETrue, size.iWidth, size.iHeight));
|
|
181 |
|
|
182 |
TGlxMedia media = iMediaList->Item (iMediaList->FocusIndex());
|
|
183 |
|
|
184 |
TGlxIdSpaceId IdSpaceId = iMediaList->IdSpaceId(iMediaList->FocusIndex());
|
|
185 |
|
|
186 |
// Get the Title, ignore return value
|
|
187 |
GetMediaTitleL( media);
|
|
188 |
|
|
189 |
// Get the subtitle, ignore return value
|
|
190 |
GetMediaSubTitleL( media);
|
|
191 |
|
|
192 |
//Get the thumbnail, ignore return value
|
|
193 |
GetMediaThumbNailL( media, IdSpaceId, size, attrThumbnail );
|
|
194 |
|
|
195 |
ShowNowL();
|
|
196 |
}
|
|
197 |
// ---------------------------------------------------------------------------
|
|
198 |
// SetAttributes()
|
|
199 |
// ---------------------------------------------------------------------------
|
|
200 |
//
|
|
201 |
void CGlxContainerInfoBubble::SetAttributesL(
|
|
202 |
const RArray<TMPXAttribute>& aAttributes,
|
|
203 |
const TInt& aAttributescount )
|
|
204 |
{
|
|
205 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::SetAttributesL");
|
|
206 |
// Set the attribute context here for fetching the list data
|
|
207 |
TSize size(KThumbnailWidth, KThumbnailHeight);
|
|
208 |
TMPXAttribute attrThumbnail(KGlxMediaIdThumbnail,
|
|
209 |
GlxFullThumbnailAttributeId (ETrue, size.iWidth, size.iHeight));
|
|
210 |
|
|
211 |
const TGlxMedia media = iMediaList->Item (iMediaList->FocusIndex());
|
|
212 |
|
|
213 |
TGlxIdSpaceId IdSpaceId = iMediaList->IdSpaceId(iMediaList->FocusIndex());
|
|
214 |
|
|
215 |
TBool updateBubble = EFalse;
|
|
216 |
// Loop untill it checks for all the avialable attributes
|
|
217 |
for (TInt i = aAttributescount - 1; i >= 0 ; i--)
|
|
218 |
{
|
|
219 |
//Get the Title if the fetched attribute is MediaTitle
|
|
220 |
if ( aAttributes[i] == KMPXMediaGeneralTitle )
|
|
221 |
{
|
|
222 |
// update bubble if we changed the title
|
|
223 |
updateBubble = GetMediaTitleL(media);
|
|
224 |
}
|
|
225 |
|
|
226 |
//Get the SubTitle if the fetched attribute is MediaSubTitle
|
|
227 |
else if ( aAttributes[i] == KGlxMediaCollectionPluginSpecificSubTitle)
|
|
228 |
{
|
|
229 |
// update bubble if we changed the subtitle
|
|
230 |
updateBubble = GetMediaSubTitleL(media);
|
|
231 |
}
|
|
232 |
//Get the ThumbNail if the fetched attribute is MediaThumbNail
|
|
233 |
else if ( (attrThumbnail.ContentId() == aAttributes[i].ContentId())
|
|
234 |
&& (attrThumbnail.AttributeId() == aAttributes[i].AttributeId() ) )
|
|
235 |
{
|
|
236 |
// update bubble if thumbnail changed
|
|
237 |
updateBubble =
|
|
238 |
GetMediaThumbNailL( media, IdSpaceId, size, attrThumbnail );
|
|
239 |
}
|
|
240 |
}
|
|
241 |
if ( updateBubble )
|
|
242 |
{
|
|
243 |
ShowNowL();
|
|
244 |
}
|
|
245 |
}
|
|
246 |
|
|
247 |
|
|
248 |
// ---------------------------------------------------------------------------
|
|
249 |
// GetMediaTitle()
|
|
250 |
// ---------------------------------------------------------------------------
|
|
251 |
TBool CGlxContainerInfoBubble::GetMediaTitleL(const TGlxMedia& aMedia)
|
|
252 |
{
|
|
253 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::GetMediaTitleL");
|
|
254 |
// get current title
|
|
255 |
const TDesC& title = aMedia.Title();
|
|
256 |
// if we dont have a title
|
|
257 |
if( !iMediaTitle )
|
|
258 |
{
|
|
259 |
// we dont have a title so get the title
|
|
260 |
iMediaTitle = title.AllocL();
|
|
261 |
return ETrue;
|
|
262 |
}
|
|
263 |
// if we have a title, but its different than new one (tag renamed)
|
|
264 |
else if( iMediaTitle->Compare( title ) )
|
|
265 |
{
|
|
266 |
// allocate the new title
|
|
267 |
HBufC* tempTitle = title.AllocL();
|
|
268 |
// got new title so release old
|
|
269 |
delete iMediaTitle;
|
|
270 |
// assign new in place of old
|
|
271 |
iMediaTitle = tempTitle;
|
|
272 |
// did change title
|
|
273 |
return ETrue;
|
|
274 |
}
|
|
275 |
return EFalse;
|
|
276 |
}
|
|
277 |
|
|
278 |
// ---------------------------------------------------------------------------
|
|
279 |
// GetMediaSubTitle()
|
|
280 |
// ---------------------------------------------------------------------------
|
|
281 |
TBool CGlxContainerInfoBubble::GetMediaSubTitleL(const TGlxMedia& aMedia)
|
|
282 |
{
|
|
283 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::GetMediaSubTitleL");
|
|
284 |
// get current subtitle
|
|
285 |
const TDesC& title = aMedia.SubTitle();
|
|
286 |
// if we dont have a subtitle
|
|
287 |
if( !iMediaSubTitle )
|
|
288 |
{
|
|
289 |
// we dont have a subtitle so get the title
|
|
290 |
iMediaSubTitle = title.AllocL();
|
|
291 |
return ETrue;
|
|
292 |
}
|
|
293 |
// if we have a subtitle, but its different than new one (count changed)
|
|
294 |
else if( iMediaSubTitle->Compare( title ) )
|
|
295 |
{
|
|
296 |
// allocate the new subtitle
|
|
297 |
HBufC* tempTitle = title.AllocL();
|
|
298 |
// got new so release old
|
|
299 |
delete iMediaSubTitle;
|
|
300 |
// assign new in place of old
|
|
301 |
iMediaSubTitle = tempTitle;
|
|
302 |
// did change subtitle
|
|
303 |
return ETrue;
|
|
304 |
}
|
|
305 |
return EFalse;
|
|
306 |
}
|
|
307 |
|
|
308 |
// ---------------------------------------------------------------------------
|
|
309 |
// GetMediaThumbNailL()
|
|
310 |
// ---------------------------------------------------------------------------
|
|
311 |
//
|
|
312 |
TBool CGlxContainerInfoBubble::GetMediaThumbNailL(const TGlxMedia& aMedia,
|
|
313 |
TGlxIdSpaceId& aIdSpaceId,TSize& aSize,
|
|
314 |
TMPXAttribute& aAttrThumbnail)
|
|
315 |
{
|
|
316 |
TRACER("GLX_CLOUD ::CGlxContainerInfoBubble::SetAttributesL Thumbnail available");
|
|
317 |
|
|
318 |
//Get the thumbnail
|
|
319 |
if ( aMedia.ThumbnailAttribute( aAttrThumbnail ) )
|
|
320 |
{
|
|
321 |
// take the address of the created texture
|
|
322 |
iTexture = &( CreateThumbnailTextureL( aMedia, aIdSpaceId, aSize ) );
|
|
323 |
return ETrue;
|
|
324 |
}
|
|
325 |
//If there is an error in thumbnail attribute i.e the thumbnail is broken then create broken thumbnail
|
|
326 |
else if (GlxErrorManager::HasAttributeErrorL(aMedia.Properties(), KGlxMediaIdThumbnail) != KErrNone )
|
|
327 |
{
|
|
328 |
// create 'default' icon
|
|
329 |
TFileName resFile(KDC_APP_BITMAP_DIR);
|
|
330 |
resFile.Append(KGlxIconsFilename);
|
|
331 |
|
|
332 |
TSize iconSize( KThumbnailWidth, KThumbnailHeight );
|
|
333 |
|
|
334 |
//Create the texture for broken thumbnail
|
|
335 |
iTexture = &(iUiUtility->GlxTextureManager().CreateIconTextureL(
|
|
336 |
EMbmGlxiconsQgn_prop_image_corrupted, resFile, iconSize ) );
|
|
337 |
return ETrue;
|
|
338 |
}
|
|
339 |
return EFalse;
|
|
340 |
}
|
|
341 |
|
|
342 |
|
|
343 |
// ---------------------------------------------------------------------------
|
|
344 |
// TimerCompleteL()
|
|
345 |
// ---------------------------------------------------------------------------
|
|
346 |
//
|
|
347 |
void CGlxContainerInfoBubble::TimerCompleteL()
|
|
348 |
{
|
|
349 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::TimerCompleteL");
|
|
350 |
iTimerComplete =ETrue;
|
|
351 |
TRAP_IGNORE (ShowNowL ());
|
|
352 |
}
|
|
353 |
|
|
354 |
// ---------------------------------------------------------------------------
|
|
355 |
// SetFocus()
|
|
356 |
// ---------------------------------------------------------------------------
|
|
357 |
//
|
|
358 |
void CGlxContainerInfoBubble::SetFocus(TPoint aPos)
|
|
359 |
{
|
|
360 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::SetFocus");
|
|
361 |
DisappearBubble ();
|
|
362 |
|
|
363 |
if ( iTexture )
|
|
364 |
{
|
|
365 |
iUiUtility->GlxTextureManager().RemoveTexture( *iTexture );
|
|
366 |
ResetImage();
|
|
367 |
iTexture = NULL;
|
|
368 |
}
|
|
369 |
iPos = aPos;
|
|
370 |
//fetch the attributes from medialsit
|
|
371 |
iTimerComplete =EFalse;
|
|
372 |
iTimer->Cancel ();//cancels any outstanding requests
|
|
373 |
if ( iMediaTitle)
|
|
374 |
{
|
|
375 |
delete iMediaTitle;
|
|
376 |
iMediaTitle =NULL;
|
|
377 |
}
|
|
378 |
if ( iMediaSubTitle)
|
|
379 |
{
|
|
380 |
delete iMediaSubTitle;
|
|
381 |
iMediaSubTitle =NULL;
|
|
382 |
}
|
|
383 |
TRAP_IGNORE(SetAttributesL());
|
|
384 |
iTimer->SetDelay (1500000);//1.5 seconds delay
|
|
385 |
}
|
|
386 |
|
|
387 |
// ---------------------------------------------------------------------------
|
|
388 |
// Default C++ Constructor
|
|
389 |
// ---------------------------------------------------------------------------
|
|
390 |
//
|
|
391 |
CGlxContainerInfoBubble::CGlxContainerInfoBubble(MGlxMediaList *aMediaList) :
|
|
392 |
CGlxInfoBubble(), iMediaList(aMediaList)
|
|
393 |
{
|
|
394 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::CGlxContainerInfoBubble");
|
|
395 |
}
|
|
396 |
|
|
397 |
//medialist Observers
|
|
398 |
|
|
399 |
// ---------------------------------------------------------------------------
|
|
400 |
// HandleItemAddedL().
|
|
401 |
// ---------------------------------------------------------------------------
|
|
402 |
//
|
|
403 |
void CGlxContainerInfoBubble::HandleItemAddedL(TInt /*aStartIndex*/,
|
|
404 |
TInt /*aEndIndex*/, MGlxMediaList* /*aList*/)
|
|
405 |
{
|
|
406 |
}
|
|
407 |
|
|
408 |
// ---------------------------------------------------------------------------
|
|
409 |
// HandleMediaL().
|
|
410 |
// ---------------------------------------------------------------------------
|
|
411 |
//
|
|
412 |
void CGlxContainerInfoBubble::HandleMediaL(
|
|
413 |
TInt /*aListIndex*/, MGlxMediaList* /*aList*/ )
|
|
414 |
{
|
|
415 |
}
|
|
416 |
|
|
417 |
// ---------------------------------------------------------------------------
|
|
418 |
// HandleItemRemoved().
|
|
419 |
// ---------------------------------------------------------------------------
|
|
420 |
//
|
|
421 |
void CGlxContainerInfoBubble::HandleItemRemovedL(TInt /*aStartIndex*/,
|
|
422 |
TInt /*aEndIndex*/, MGlxMediaList* /*aList*/)
|
|
423 |
{
|
|
424 |
}
|
|
425 |
|
|
426 |
// ---------------------------------------------------------------------------
|
|
427 |
// HandleItemModifiedL().
|
|
428 |
// ---------------------------------------------------------------------------
|
|
429 |
//
|
|
430 |
void CGlxContainerInfoBubble::HandleItemModifiedL(
|
|
431 |
const RArray<TInt>& /*aItemIndexes*/, MGlxMediaList* /*aList*/)
|
|
432 |
{
|
|
433 |
}
|
|
434 |
|
|
435 |
// ---------------------------------------------------------------------------
|
|
436 |
// HandleAttributesAvailableL().
|
|
437 |
// ---------------------------------------------------------------------------
|
|
438 |
//
|
|
439 |
void CGlxContainerInfoBubble::HandleAttributesAvailableL(TInt aItemIndex,
|
|
440 |
const RArray<TMPXAttribute>& aAttributes, MGlxMediaList*/* aList*/)
|
|
441 |
{
|
|
442 |
TRACER("GLX_CLOUD::CGlxContainerInfoBubble::HandleAttributesAvailableL");
|
|
443 |
|
|
444 |
TInt attCount = aAttributes.Count ();
|
|
445 |
GLX_LOG_INFO1("GLX_CLOUD ::CGlxContainerInfoBubble::HandleAttributesAvailableL count: %d ",attCount);
|
|
446 |
GLX_LOG_INFO1("GLX_CLOUD ::CGlxContainerInfoBubble::HandleAttributesAvailableL Item Index: %d ", aItemIndex);
|
|
447 |
|
|
448 |
if ( ( attCount ) && (iMediaList->FocusIndex() == aItemIndex ) )
|
|
449 |
{
|
|
450 |
SetAttributesL( aAttributes, attCount );
|
|
451 |
}
|
|
452 |
}
|
|
453 |
|
|
454 |
// ---------------------------------------------------------------------------
|
|
455 |
// HandleFocusChangedL().
|
|
456 |
// ---------------------------------------------------------------------------
|
|
457 |
//
|
|
458 |
void CGlxContainerInfoBubble::HandleFocusChangedL(
|
|
459 |
NGlxListDefs::TFocusChangeType /*aType*/, TInt /*aNewIndex*/,
|
|
460 |
TInt /*aOldIndex*/, MGlxMediaList* /*aList*/)
|
|
461 |
{
|
|
462 |
}
|
|
463 |
|
|
464 |
// ---------------------------------------------------------------------------
|
|
465 |
// HandleItemSelected().
|
|
466 |
// ---------------------------------------------------------------------------
|
|
467 |
//
|
|
468 |
void CGlxContainerInfoBubble::HandleItemSelectedL(TInt /*aIndex*/,
|
|
469 |
TBool /*aSelected*/, MGlxMediaList* /*aList*/)
|
|
470 |
{
|
|
471 |
}
|
|
472 |
|
|
473 |
// ---------------------------------------------------------------------------
|
|
474 |
// HandleMessageL().
|
|
475 |
// ---------------------------------------------------------------------------
|
|
476 |
//
|
|
477 |
void CGlxContainerInfoBubble::HandleMessageL(const CMPXMessage& /*aMessage*/,
|
|
478 |
MGlxMediaList* /*aList*/)
|
|
479 |
{
|
|
480 |
}
|
|
481 |
|
|
482 |
// End of File
|