author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Wed, 15 Sep 2010 12:29:17 +0300 | |
branch | RCL_3 |
changeset 64 | 85902f042028 |
parent 59 | 978afdc0236f |
child 72 | a5e7a4f63858 |
permissions | -rw-r--r-- |
56 | 1 |
/* |
2 |
* Copyright (c) 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: |
|
15 |
* |
|
16 |
*/ |
|
17 |
||
18 |
||
19 |
// INCLUDE FILES |
|
20 |
#include <ganes/HgGrid.h> |
|
21 |
#include <ganes/HgItem.h> |
|
22 |
||
23 |
#include "HgLayoutData.h" |
|
24 |
#include "HgIndicatorManager.h" |
|
25 |
#include "HgDrawUtils.h" |
|
26 |
||
27 |
||
28 |
#include <aknphysics.h> |
|
29 |
||
30 |
#include "HgConstants.h" |
|
31 |
||
32 |
#include <AknIconUtils.h> |
|
33 |
#include <avkon.mbg> |
|
34 |
#include <AknUtils.h> |
|
35 |
#include <AknsUtils.h> |
|
36 |
#include <AknsDrawUtils.h> |
|
37 |
#include <AknsConstants.h> |
|
38 |
#include <gulicon.h> |
|
39 |
#include <AknUtils.h> |
|
40 |
||
41 |
#include <layoutmetadata.cdl.h> |
|
42 |
#include <aknlayoutscalable_apps.cdl.h> |
|
43 |
#include <aknlayoutscalable_avkon.cdl.h> |
|
44 |
||
45 |
using namespace AknLayoutScalable_Apps; |
|
46 |
||
47 |
// ============================ MEMBER FUNCTIONS =============================== |
|
48 |
||
49 |
// ----------------------------------------------------------------------------- |
|
50 |
// CHgGrid::NewL() |
|
51 |
// Two-phased constructor. |
|
52 |
// ----------------------------------------------------------------------------- |
|
53 |
// |
|
54 |
EXPORT_C CHgGrid* CHgGrid::NewL ( |
|
55 |
const TRect& aRect, |
|
56 |
TInt aItemCount, |
|
57 |
CGulIcon* aDefaultIcon, |
|
58 |
RWsSession* aSession ) |
|
59 |
{ |
|
60 |
CHgGrid* self = new ( ELeave ) CHgGrid( |
|
61 |
aItemCount, |
|
62 |
aDefaultIcon); |
|
63 |
CleanupStack::PushL (self ); |
|
64 |
self->ConstructL( aRect, aSession ); |
|
65 |
CleanupStack::Pop (self ); |
|
66 |
return self; |
|
67 |
} |
|
68 |
||
69 |
// ----------------------------------------------------------------------------- |
|
70 |
// CHgGrid::ConstructL() |
|
71 |
// Symbian 2nd phase constructor can leave. |
|
72 |
// ----------------------------------------------------------------------------- |
|
73 |
// |
|
74 |
void CHgGrid::ConstructL (const TRect& aRect, RWsSession* aSession ) |
|
75 |
{ |
|
76 |
TAknLayoutScalableParameterLimits limits = cell_gallery2_pane_ParamLimits(0); |
|
77 |
TInt cols = limits.LastColumn() + 1; |
|
78 |
iLayoutData = CHgGridLayoutData::NewL( cols ); |
|
79 |
||
80 |
CHgScroller::ConstructL( aRect, aSession ); |
|
81 |
||
82 |
// Activate the window, which makes it ready to be drawn |
|
83 |
ActivateL ( ); |
|
84 |
} |
|
85 |
||
86 |
// ----------------------------------------------------------------------------- |
|
87 |
// CHgGrid::CHgGrid() |
|
88 |
// C++ default constructor can NOT contain any code, that might leave. |
|
89 |
// ----------------------------------------------------------------------------- |
|
90 |
// |
|
91 |
CHgGrid::CHgGrid( |
|
92 |
TInt aItemCount, |
|
93 |
CGulIcon* aDefaultIcon ) |
|
94 |
: CHgScroller( aItemCount, aDefaultIcon ), |
|
95 |
iToolbarVisible( ETrue ) |
|
96 |
{ |
|
97 |
// No implementation required |
|
98 |
} |
|
99 |
||
100 |
// ----------------------------------------------------------------------------- |
|
101 |
// CHgGrid::~CHgGrid() |
|
102 |
// Destructor. |
|
103 |
// ----------------------------------------------------------------------------- |
|
104 |
// |
|
105 |
EXPORT_C CHgGrid::~CHgGrid ( ) |
|
106 |
{ |
|
107 |
delete iLayoutData; |
|
108 |
} |
|
109 |
||
110 |
// ----------------------------------------------------------------------------- |
|
111 |
// CHgGrid::PreferredImageSize() |
|
112 |
// ----------------------------------------------------------------------------- |
|
113 |
// |
|
114 |
EXPORT_C TSize CHgGrid::PreferredImageSize() |
|
115 |
{ |
|
116 |
TAknLayoutRect gridAppPane; |
|
117 |
TAknLayoutRect gridItem; |
|
118 |
TAknLayoutRect gridImage; |
|
119 |
||
120 |
gridAppPane.LayoutRect( TRect(), grid_gallery2_pane(0)); |
|
121 |
gridItem.LayoutRect( gridAppPane.Rect(), cell_gallery2_pane(1, 0, 0)); |
|
122 |
gridImage.LayoutRect(gridItem.Rect(), cell_gallery2_pane_g2(1)); |
|
123 |
||
124 |
return gridImage.Rect().Size(); |
|
125 |
} |
|
126 |
||
127 |
// ----------------------------------------------------------------------------- |
|
128 |
// CHgGrid::InitItemsL() |
|
129 |
// ----------------------------------------------------------------------------- |
|
130 |
// |
|
131 |
void CHgGrid::InitItemsL() |
|
132 |
{ |
|
133 |
for(TInt i = 0; i < iItemCount; ++i) |
|
134 |
{ |
|
135 |
iItems.Append( CHgItem::NewL() ); |
|
136 |
} |
|
137 |
} |
|
138 |
||
139 |
// ----------------------------------------------------------------------------- |
|
140 |
// CHgGrid::DoDraw() |
|
141 |
// ----------------------------------------------------------------------------- |
|
142 |
// |
|
143 |
void CHgGrid::DoDraw (const TRect& /*aRect*/) const |
|
144 |
{ |
|
145 |
// Get the standard graphics context |
|
146 |
TInt xdiff = (iViewPosition.iX-(iWidth/2))% (iLandscapeScrolling ? iRowHeight : iRowWidth); |
|
147 |
TInt ydiff = (iViewPosition.iY-(iHeight/2))%( iLandscapeScrolling ? iRowWidth : iRowHeight); |
|
148 |
||
149 |
if( iItemCount == 0 ) |
|
150 |
{ |
|
151 |
TRgb color( KRgbBlack ); |
|
152 |
if ( AknsUtils::AvkonSkinEnabled() ) |
|
153 |
{ |
|
154 |
AknsUtils::GetCachedColor( AknsUtils::SkinInstance(), |
|
155 |
color, |
|
156 |
KAknsIIDQsnTextColors, |
|
157 |
EAknsCIQsnTextColorsCG6 ); |
|
158 |
} |
|
159 |
if( iEmptyText ) |
|
160 |
iDrawUtils->DrawEmptyText(SystemGc(), Rect(), *iEmptyText, color); |
|
161 |
} |
|
162 |
else |
|
163 |
{ |
|
164 |
TAknLayoutRect gridAppPane; |
|
165 |
gridAppPane.LayoutRect( GridRect(), iLayoutData->ItemLayout() ); |
|
166 |
||
167 |
if( iLandscapeScrolling ) |
|
168 |
{ |
|
169 |
if( AknLayoutUtils::LayoutMirrored() ) |
|
170 |
{ |
|
171 |
for(TInt i = iCurrentRow; i < iCols; ++i) |
|
172 |
{ |
|
173 |
TInt xPos = - (((i-iCurrentRow)*iRowHeight) - xdiff); |
|
174 |
if( i < 0 ) |
|
175 |
continue; |
|
176 |
else if( xPos < -iWidth ) |
|
177 |
break; |
|
178 |
||
179 |
DrawRows( i, gridAppPane.Rect(), xPos ); |
|
180 |
} |
|
181 |
} |
|
182 |
else |
|
183 |
{ |
|
184 |
for(TInt i = iCurrentRow; i < iCols; ++i) |
|
185 |
{ |
|
186 |
TInt xPos = ((i-iCurrentRow)*iRowHeight) - xdiff; |
|
187 |
if( i < 0 ) |
|
188 |
continue; |
|
189 |
else if( xPos > iWidth ) |
|
190 |
break; |
|
191 |
||
192 |
DrawRows( i, gridAppPane.Rect(), xPos ); |
|
193 |
} |
|
194 |
} |
|
195 |
} |
|
196 |
else |
|
197 |
{ |
|
198 |
for(TInt i = iCurrentRow; i < iRows; ++i) |
|
199 |
{ |
|
200 |
TInt yPos = ((i-iCurrentRow)*iRowHeight) - ydiff; |
|
201 |
if( i < 0 ) |
|
202 |
continue; |
|
203 |
else if( yPos > iHeight ) |
|
204 |
break; |
|
205 |
||
206 |
DrawCols( i, gridAppPane.Rect(), yPos ); |
|
207 |
} |
|
208 |
} |
|
209 |
} |
|
210 |
} |
|
211 |
||
212 |
// ----------------------------------------------------------------------------- |
|
213 |
// CHgGrid::DrawRows() |
|
214 |
// ----------------------------------------------------------------------------- |
|
215 |
// |
|
216 |
void CHgGrid::DrawRows( TInt aCol, const TRect& aRect, TInt aXPos ) const |
|
217 |
{ |
|
218 |
for(TInt j = 0; j < iRows; ++j) |
|
219 |
{ |
|
220 |
TInt index = aCol*iRows + j; |
|
221 |
if( index < iItems.Count()) |
|
222 |
{ |
|
223 |
TAknLayoutRect gridItem; |
|
224 |
gridItem.LayoutRect( aRect,iLayoutData->ColumnLayout(j) ); |
|
225 |
||
226 |
TRect rect(gridItem.Rect()); |
|
227 |
rect.Move( aXPos, 0 ); |
|
228 |
||
229 |
DrawItem( index, rect ); |
|
230 |
} |
|
231 |
else |
|
232 |
{ |
|
233 |
break; |
|
234 |
} |
|
235 |
} |
|
236 |
} |
|
237 |
||
238 |
// ----------------------------------------------------------------------------- |
|
239 |
// CHgGrid::DrawCols() |
|
240 |
// ----------------------------------------------------------------------------- |
|
241 |
// |
|
242 |
void CHgGrid::DrawCols(TInt aRow, const TRect& aRect, TInt aYPos) const |
|
243 |
{ |
|
244 |
for(TInt j = 0; j < iCols; ++j) |
|
245 |
{ |
|
246 |
TInt index = aRow*iCols + j; |
|
247 |
if( index < iItems.Count()) |
|
248 |
{ |
|
249 |
TAknLayoutRect gridItem; |
|
250 |
gridItem.LayoutRect( aRect,iLayoutData->ColumnLayout(j) ); |
|
251 |
||
252 |
TRect rect(gridItem.Rect()); |
|
253 |
rect.Move( 0, aYPos ); |
|
254 |
||
255 |
DrawItem( index, rect ); |
|
256 |
} |
|
257 |
else |
|
258 |
{ |
|
259 |
break; |
|
260 |
} |
|
261 |
} |
|
262 |
} |
|
263 |
||
264 |
// ----------------------------------------------------------------------------- |
|
265 |
// CHgGrid::DoDraw() |
|
266 |
// ----------------------------------------------------------------------------- |
|
267 |
// |
|
268 |
void CHgGrid::DrawItem(TInt aIndex, const TRect& aRect ) const |
|
269 |
{ |
|
270 |
CHgItem* item = iItems[aIndex]; |
|
271 |
CGulIcon* icon = item->Icon() ? item->Icon() : iDefaultIcon; |
|
272 |
||
273 |
if( aIndex == iSelectedIndex ) |
|
274 |
{ |
|
275 |
DrawHighlight(aRect); |
|
276 |
} |
|
277 |
||
278 |
CWindowGc& gc = SystemGc(); |
|
279 |
||
280 |
iDrawUtils->DrawImage(gc, aRect, iLayoutData->IconLayout(), *icon); |
|
281 |
||
282 |
// Draw the indicators. |
|
283 |
iIndicatorManager->DrawIndicators( |
|
284 |
gc, |
|
285 |
aRect, |
|
286 |
item->Flags(), |
|
287 |
iLayoutData->FirstIndicatorLayout(), |
|
59
978afdc0236f
Revision: 201033
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
56
diff
changeset
|
288 |
iLayoutData->SecondIndicatorLayout(), |
978afdc0236f
Revision: 201033
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
56
diff
changeset
|
289 |
iFlags & EHgScrollerSelectionMode || iSelectionMode != ENoSelection ); |
56 | 290 |
} |
291 |
||
292 |
// ----------------------------------------------------------------------------- |
|
293 |
// CHgGrid::HandleSizeChanged() |
|
294 |
// ----------------------------------------------------------------------------- |
|
295 |
// |
|
296 |
void CHgGrid::HandleSizeChanged ( ) |
|
297 |
{ |
|
298 |
iLandscapeScrolling = Layout_Meta_Data::IsLandscapeOrientation() && iLandScapeScrollingSupported; |
|
299 |
||
300 |
TInt oldCount = iLandscapeScrolling ? iRows : iCols; |
|
301 |
||
302 |
CalculateSizes(); |
|
303 |
||
304 |
if( iLandscapeScrolling ) |
|
305 |
{ |
|
306 |
iCols = iItemCount / iRows; |
|
307 |
if(iItemCount%iRows) |
|
308 |
{ |
|
309 |
++iCols; // partially filled col |
|
310 |
} |
|
311 |
||
312 |
iItemsOnScreen = iWidth / iRowHeight; |
|
313 |
if((iWidth % iRowHeight)) |
|
314 |
iItemsOnScreen += 2; |
|
315 |
else |
|
316 |
iItemsOnScreen++; |
|
317 |
||
318 |
iItemsOnScreen *= iRows; |
|
319 |
||
320 |
FitTopItemToView( iCurrentRow*oldCount ); |
|
321 |
} |
|
322 |
else |
|
323 |
{ |
|
324 |
iRows = iItemCount / iCols; |
|
325 |
if(iItemCount%iCols) |
|
326 |
{ |
|
327 |
++iRows; // partially filled row |
|
328 |
} |
|
329 |
||
330 |
iItemsOnScreen = iHeight / iRowHeight; |
|
331 |
if((iHeight % iRowHeight)) |
|
332 |
iItemsOnScreen += 2; |
|
333 |
else |
|
334 |
iItemsOnScreen++; |
|
335 |
||
336 |
iItemsOnScreen *= iCols; |
|
337 |
||
338 |
FitTopItemToView( iCurrentRow*oldCount ); |
|
339 |
} |
|
340 |
} |
|
341 |
||
342 |
// ----------------------------------------------------------------------------- |
|
343 |
// CHgGrid::CalculateSizes() |
|
344 |
// ----------------------------------------------------------------------------- |
|
345 |
// |
|
346 |
void CHgGrid::CalculateSizes() |
|
347 |
{ |
|
348 |
// Count number of visible rows |
|
349 |
// First is checked if 3x4 or 4x3 items fits to the grid. |
|
350 |
||
351 |
TInt mainVariety = iToolbarVisible ? 0 : 1; |
|
352 |
TInt gridVariety = iToolbarVisible ? 0 : 2; |
|
353 |
TInt cellVariety = iToolbarVisible ? 0 : 4; |
|
354 |
||
355 |
if( Layout_Meta_Data::IsLandscapeOrientation() ) |
|
356 |
{ |
|
357 |
++gridVariety; |
|
358 |
++cellVariety; |
|
359 |
} |
|
360 |
||
361 |
TAknLayoutScalableParameterLimits limits = cell_gallery2_pane_ParamLimits(cellVariety); |
|
362 |
iCols = limits.LastColumn() + 1; |
|
363 |
iRows = limits.LastRow() + 1; |
|
364 |
||
365 |
iLayoutData->ChangeCols( iCols ); |
|
366 |
||
367 |
iLayoutData->SetBaseLayout(main_gallery2_pane(mainVariety)); |
|
368 |
iLayoutData->SetItemLayout(grid_gallery2_pane(gridVariety)); |
|
369 |
iLayoutData->SetIconLayout(cell_gallery2_pane_g2(cellVariety)); |
|
370 |
||
371 |
if( iLandscapeScrolling ) |
|
372 |
{ |
|
373 |
for(TInt i = 0; i < iRows; ++i) |
|
374 |
{ |
|
375 |
iLayoutData->SetColumnLayout(i, cell_gallery2_pane(cellVariety, 0, i)); |
|
376 |
} |
|
377 |
} |
|
378 |
else |
|
379 |
{ |
|
380 |
for(TInt i = 0; i < iCols; ++i) |
|
381 |
{ |
|
382 |
iLayoutData->SetColumnLayout(i, cell_gallery2_pane(cellVariety, i, 0)); |
|
383 |
} |
|
384 |
} |
|
385 |
iLayoutData->SetFirstIndicatorLayout(cell_gallery2_pane_g5(cellVariety)); |
|
386 |
iLayoutData->SetSecondIndicatorLayout(cell_gallery2_pane_g4(cellVariety)); |
|
387 |
||
388 |
TAknLayoutRect gridAppPane; |
|
389 |
TAknLayoutRect gridItem; |
|
390 |
TAknLayoutRect gridImage; |
|
391 |
||
392 |
gridAppPane.LayoutRect( GridRect(), iLayoutData->ItemLayout()); |
|
393 |
gridItem.LayoutRect( gridAppPane.Rect(), iLayoutData->ColumnLayout(0)); |
|
394 |
gridImage.LayoutRect( gridItem.Rect(), iLayoutData->IconLayout()); |
|
395 |
||
396 |
if( iLandscapeScrolling ) |
|
397 |
{ |
|
398 |
iRowHeight = gridItem.Rect().Width(); |
|
399 |
iRowWidth = gridItem.Rect().Height(); |
|
400 |
} |
|
401 |
else |
|
402 |
{ |
|
403 |
iRowHeight = gridItem.Rect().Height(); |
|
404 |
iRowWidth = gridItem.Rect().Width(); |
|
405 |
} |
|
406 |
||
407 |
iImageSize = gridImage.Rect().Size(); |
|
408 |
||
409 |
TAknLayoutRect indicator; |
|
410 |
indicator.LayoutRect( gridItem.Rect(), iLayoutData->FirstIndicatorLayout() ); |
|
411 |
iIndicatorSize = indicator.Rect().Size(); |
|
412 |
} |
|
413 |
||
414 |
// ----------------------------------------------------------------------------- |
|
415 |
// CHgGrid::GetSelected() |
|
416 |
// ----------------------------------------------------------------------------- |
|
417 |
// |
|
418 |
TInt CHgGrid::GetSelected( TPoint aPosition ) const |
|
419 |
{ |
|
420 |
TAknLayoutRect gridAppPane; |
|
421 |
gridAppPane.LayoutRect( GridRect(), iLayoutData->ItemLayout()); |
|
422 |
aPosition -= gridAppPane.Rect().iTl; |
|
423 |
||
424 |
TInt index = 0; |
|
425 |
if( iLandscapeScrolling ) |
|
426 |
{ |
|
427 |
TInt y = aPosition.iY + ((iViewPosition.iY - (iHeight/2)) % iRowWidth); |
|
428 |
y /= iRowWidth; |
|
429 |
TInt x = 0; |
|
430 |
if( AknLayoutUtils::LayoutMirrored() ) |
|
431 |
{ |
|
432 |
x = aPosition.iX - ((iViewPosition.iX - (iWidth/2)) % iRowHeight); |
|
433 |
||
434 |
if(x < 0) // to correct the division |
|
435 |
x-= iRowHeight; |
|
436 |
x /= iRowHeight; |
|
437 |
x = ((iWidth / iRowHeight) - 1) - x; // mirrored correction to x |
|
438 |
} |
|
439 |
else |
|
440 |
{ |
|
441 |
x = aPosition.iX + ((iViewPosition.iX - (iWidth/2)) % iRowHeight); |
|
442 |
x /= iRowHeight; |
|
443 |
} |
|
444 |
index = (iCurrentRow*iRows) + (x*iRows) + y; |
|
445 |
} |
|
446 |
else |
|
447 |
{ |
|
448 |
TInt x = aPosition.iX + ((iViewPosition.iX - (iWidth/2)) % iRowWidth); |
|
449 |
TInt y = aPosition.iY + ((iViewPosition.iY - (iHeight/2)) % iRowHeight); |
|
450 |
x /= iRowWidth; |
|
451 |
y /= iRowHeight; |
|
452 |
||
453 |
if( AknLayoutUtils::LayoutMirrored() ) |
|
454 |
{ |
|
455 |
x = (iCols - 1) - x; |
|
456 |
} |
|
457 |
||
458 |
index = (iCurrentRow*iCols) + (y*iCols) + x; |
|
459 |
} |
|
460 |
||
461 |
||
462 |
return index >= iItems.Count() || index < 0 ? KErrNotFound : index; |
|
463 |
} |
|
464 |
||
465 |
// ----------------------------------------------------------------------------- |
|
466 |
// CHgGrid::TotalSize() |
|
467 |
// ----------------------------------------------------------------------------- |
|
468 |
// |
|
469 |
TSize CHgGrid::TotalSize() const |
|
470 |
{ |
|
471 |
return iLandscapeScrolling ? TSize( iCols*iRowHeight, iHeight ) : TSize(iWidth, iRows*iRowHeight); |
|
472 |
} |
|
473 |
||
474 |
// ----------------------------------------------------------------------------- |
|
475 |
// CHgGrid::DrawHighlight() |
|
476 |
// ----------------------------------------------------------------------------- |
|
477 |
// |
|
478 |
void CHgGrid::DrawHighlight( const TRect& aOuterRect ) const |
|
479 |
{ |
|
480 |
TRect innerRect( aOuterRect ); |
|
481 |
innerRect.Shrink(2,2); |
|
482 |
||
483 |
CWindowGc& gc = SystemGc(); |
|
484 |
||
485 |
if( HasHighlight() ) |
|
486 |
{ |
|
487 |
if( iPointerDown && !iPanning && iFocusedIndex != KErrNotFound && iSelectionToFocusedItem ) |
|
488 |
{ |
|
489 |
AknsDrawUtils::DrawFrame( AknsUtils::SkinInstance(), |
|
490 |
gc, |
|
491 |
aOuterRect, |
|
492 |
innerRect, |
|
493 |
KAknsIIDQsnFrGridPressed, |
|
494 |
KAknsIIDQsnFrGridCenterPressed ); |
|
495 |
} |
|
496 |
else |
|
497 |
{ |
|
498 |
AknsDrawUtils::DrawFrame( AknsUtils::SkinInstance(), |
|
499 |
gc, |
|
500 |
aOuterRect, |
|
501 |
innerRect, |
|
502 |
KAknsIIDQsnFrGrid, |
|
503 |
KAknsIIDQsnFrGridCenter ); |
|
504 |
} |
|
505 |
} |
|
506 |
else if( iPointerDown && !iPanning ) |
|
507 |
{ |
|
508 |
AknsDrawUtils::DrawFrame( AknsUtils::SkinInstance(), |
|
509 |
gc, |
|
510 |
aOuterRect, |
|
511 |
innerRect, |
|
512 |
KAknsIIDQsnFrGrid, |
|
513 |
KAknsIIDQsnFrGridCenter ); |
|
514 |
} |
|
515 |
} |
|
516 |
||
517 |
// ----------------------------------------------------------------------------- |
|
518 |
// CHgGrid::DoHandleKeyEvent() |
|
519 |
// ----------------------------------------------------------------------------- |
|
520 |
// |
|
521 |
TBool CHgGrid::DoHandleKeyEvent( const TKeyEvent& aEvent ) |
|
522 |
{ |
|
523 |
TBool ret = ETrue; |
|
524 |
switch( aEvent.iCode ) |
|
525 |
{ |
|
526 |
case EKeyUpArrow: |
|
527 |
HandleUpArrow(); |
|
528 |
break; |
|
529 |
case EKeyDownArrow: |
|
530 |
HandleDownArrow(); |
|
531 |
break; |
|
532 |
case EKeyLeftArrow: |
|
533 |
HandleLeftArrow(); |
|
534 |
break; |
|
535 |
case EKeyRightArrow: |
|
536 |
HandleRightArrow(); |
|
537 |
break; |
|
538 |
default: |
|
539 |
ret = EFalse; |
|
540 |
break; |
|
541 |
} |
|
542 |
||
543 |
return ret; |
|
544 |
} |
|
545 |
||
546 |
// ----------------------------------------------------------------------------- |
|
547 |
// CHgGrid::HandleDownArrow() |
|
548 |
// ----------------------------------------------------------------------------- |
|
549 |
// |
|
550 |
void CHgGrid::HandleDownArrow() |
|
551 |
{ |
|
552 |
if( iSelectedIndex == KErrNotFound ) |
|
553 |
{ |
|
554 |
SelectDefaultItem(); |
|
555 |
} |
|
556 |
else |
|
557 |
{ |
|
558 |
if( iLandscapeScrolling ) |
|
559 |
{ |
|
560 |
ChangeSelectedIndex( 1 ); |
|
561 |
} |
|
562 |
else |
|
563 |
{ |
|
564 |
ChangeSelectedIndex( iCols ); |
|
565 |
} |
|
566 |
FitSelectionToView(); |
|
567 |
SelectionChanged(); |
|
568 |
DrawDeferred(); |
|
569 |
} |
|
570 |
} |
|
571 |
||
572 |
// ----------------------------------------------------------------------------- |
|
573 |
// CHgGrid::GridRect() |
|
574 |
// ----------------------------------------------------------------------------- |
|
575 |
// |
|
576 |
TRect CHgGrid::GridRect() const |
|
577 |
{ |
|
578 |
TAknLayoutRect listscrollAppPane; |
|
579 |
listscrollAppPane.LayoutRect( Rect(), iLayoutData->BaseLayout()); |
|
580 |
return listscrollAppPane.Rect(); |
|
581 |
} |
|
582 |
||
583 |
// ----------------------------------------------------------------------------- |
|
584 |
// CHgGrid::HandleUpArrow() |
|
585 |
// ----------------------------------------------------------------------------- |
|
586 |
// |
|
587 |
void CHgGrid::HandleUpArrow() |
|
588 |
{ |
|
589 |
if( iSelectedIndex == KErrNotFound ) |
|
590 |
{ |
|
591 |
SelectDefaultItem(); |
|
592 |
} |
|
593 |
else |
|
594 |
{ |
|
595 |
if( iLandscapeScrolling ) |
|
596 |
{ |
|
597 |
ChangeSelectedIndex( -1 ); |
|
598 |
} |
|
599 |
else |
|
600 |
{ |
|
601 |
ChangeSelectedIndex( -iCols ); |
|
602 |
} |
|
603 |
FitSelectionToView(); |
|
604 |
SelectionChanged(); |
|
605 |
DrawDeferred(); |
|
606 |
} |
|
607 |
} |
|
608 |
||
609 |
// ----------------------------------------------------------------------------- |
|
610 |
// CHgGrid::HandleRightArrow() |
|
611 |
// ----------------------------------------------------------------------------- |
|
612 |
// |
|
613 |
void CHgGrid::HandleRightArrow() |
|
614 |
{ |
|
615 |
if( iSelectedIndex == KErrNotFound ) |
|
616 |
{ |
|
617 |
SelectDefaultItem(); |
|
618 |
} |
|
619 |
else |
|
620 |
{ |
|
621 |
TInt mul = AknLayoutUtils::LayoutMirrored() ? -1 : 1; |
|
622 |
if( iLandscapeScrolling ) |
|
623 |
{ |
|
624 |
ChangeSelectedIndex( mul * iRows ); |
|
625 |
} |
|
626 |
else |
|
627 |
{ |
|
628 |
ChangeSelectedIndex( mul ); |
|
629 |
} |
|
630 |
FitSelectionToView(); |
|
631 |
SelectionChanged(); |
|
632 |
DrawDeferred(); |
|
633 |
} |
|
634 |
} |
|
635 |
||
636 |
// ----------------------------------------------------------------------------- |
|
637 |
// CHgGrid::HandleLeftArrow() |
|
638 |
// ----------------------------------------------------------------------------- |
|
639 |
// |
|
640 |
void CHgGrid::HandleLeftArrow() |
|
641 |
{ |
|
642 |
if( iSelectedIndex == KErrNotFound ) |
|
643 |
{ |
|
644 |
SelectDefaultItem(); |
|
645 |
} |
|
646 |
else |
|
647 |
{ |
|
648 |
TInt mul = AknLayoutUtils::LayoutMirrored() ? 1 : -1; |
|
649 |
if( iLandscapeScrolling ) |
|
650 |
{ |
|
651 |
ChangeSelectedIndex( mul * iRows ); |
|
652 |
} |
|
653 |
else |
|
654 |
{ |
|
655 |
ChangeSelectedIndex( mul ); |
|
656 |
} |
|
657 |
FitSelectionToView(); |
|
658 |
SelectionChanged(); |
|
659 |
DrawDeferred(); |
|
660 |
} |
|
661 |
} |
|
662 |
||
663 |
// ----------------------------------------------------------------------------- |
|
664 |
// CHgGrid::FitSelectionToView() |
|
665 |
// ----------------------------------------------------------------------------- |
|
666 |
// |
|
667 |
void CHgGrid::FitSelectionToView() |
|
668 |
{ |
|
669 |
const TInt index = iLandscapeScrolling ? |
|
670 |
iSelectedIndex/iRows : iSelectedIndex/iCols; |
|
671 |
FitRowToView( index ); |
|
672 |
} |
|
673 |
||
674 |
// ----------------------------------------------------------------------------- |
|
675 |
// CHgGrid::SelectDefaultItem() |
|
676 |
// ----------------------------------------------------------------------------- |
|
677 |
// |
|
678 |
void CHgGrid::SelectDefaultItem() |
|
679 |
{ |
|
680 |
iSelectedIndex = CurrentIndex(); |
|
681 |
if( iSelectedIndex >= 0 && iSelectedIndex < iItems.Count() ) |
|
682 |
{ |
|
683 |
FitSelectionToView(); |
|
684 |
DrawDeferred(); |
|
685 |
} |
|
686 |
} |
|
687 |
||
688 |
// ----------------------------------------------------------------------------- |
|
689 |
// CHgGrid::CurrentIndex() |
|
690 |
// ----------------------------------------------------------------------------- |
|
691 |
// |
|
692 |
TInt CHgGrid::CurrentIndex() |
|
693 |
{ |
|
694 |
return iLandscapeScrolling ? iCurrentRow * iRows : iCurrentRow * iCols; |
|
695 |
} |
|
696 |
||
697 |
// ----------------------------------------------------------------------------- |
|
698 |
// CHgGrid::IsDisplayed() |
|
699 |
// ----------------------------------------------------------------------------- |
|
700 |
// |
|
701 |
TBool CHgGrid::IsDisplayed( TInt aIndex ) |
|
702 |
{ |
|
703 |
TInt start = CurrentIndex(); |
|
704 |
TInt end = start + iItemsOnScreen; |
|
705 |
return aIndex >= start && aIndex < end; |
|
706 |
} |
|
707 |
||
708 |
// ----------------------------------------------------------------------------- |
|
709 |
// CHgGrid::FitTopItemToView() |
|
710 |
// ----------------------------------------------------------------------------- |
|
711 |
// |
|
712 |
void CHgGrid::FitTopItemToView( TInt aIndex ) |
|
713 |
{ |
|
714 |
if( iLandscapeScrolling ) |
|
715 |
{ |
|
716 |
// Higlighted item is set to top of the list |
|
717 |
const TInt newCol = aIndex/iRows; |
|
718 |
TInt newPos = newCol*iRowWidth + iWidth/2; |
|
719 |
||
720 |
if( ItemsOnScreen() >= iItems.Count() ) |
|
721 |
{ |
|
722 |
newPos = iWidth/2; |
|
723 |
} |
|
724 |
else |
|
725 |
{ |
|
726 |
const TInt endMid = TotalSize().iWidth - iWidth/2; |
|
727 |
if( newPos > endMid ) |
|
728 |
{ |
|
729 |
// We are presenting last items in the list |
|
730 |
newPos = endMid; |
|
731 |
} |
|
732 |
} |
|
733 |
||
734 |
iViewPosition.iX = newPos; |
|
735 |
} |
|
736 |
else |
|
737 |
{ |
|
738 |
// Higlighted item is set to top of the list |
|
739 |
const TInt newRow = aIndex/iCols; |
|
740 |
TInt newPos = newRow*iRowHeight + iHeight/2; |
|
741 |
||
742 |
if( ItemsOnScreen() >= iItems.Count() ) |
|
743 |
{ |
|
744 |
newPos = iHeight/2; |
|
745 |
} |
|
746 |
else |
|
747 |
{ |
|
748 |
const TInt endMid = TotalSize().iHeight - iHeight/2; |
|
749 |
if( newPos > endMid ) |
|
750 |
{ |
|
751 |
// We are presenting last items in the list |
|
752 |
newPos = endMid; |
|
753 |
} |
|
754 |
} |
|
755 |
||
756 |
iViewPosition.iY = newPos; |
|
757 |
} |
|
758 |
||
759 |
HandleViewPositionChanged(); |
|
760 |
} |
|
761 |
||
762 |
// ----------------------------------------------------------------------------- |
|
763 |
// CHgGrid::SetLandscapeScrollingSupport() |
|
764 |
// ----------------------------------------------------------------------------- |
|
765 |
// |
|
766 |
EXPORT_C void CHgGrid::SetLandscapeScrollingSupport( TBool aSupportLandscapeScrolling ) |
|
767 |
{ |
|
768 |
iLandScapeScrollingSupported = aSupportLandscapeScrolling; |
|
769 |
} |
|
770 |
||
771 |
// ----------------------------------------------------------------------------- |
|
772 |
// CHgGrid::ChangeSelectedIndex() |
|
773 |
// ----------------------------------------------------------------------------- |
|
774 |
// |
|
775 |
void CHgGrid::ChangeSelectedIndex( TInt aMove ) |
|
776 |
{ |
|
777 |
TInt nextIndex = 0; |
|
778 |
if( iSelectedIndex + aMove > iItems.Count() - 1 ) |
|
779 |
{ |
|
780 |
// go to beginning |
|
781 |
nextIndex = 0; |
|
782 |
} |
|
783 |
else if( iSelectedIndex + aMove < 0 ) |
|
784 |
{ |
|
785 |
// go to end |
|
786 |
nextIndex = iItems.Count() - 1; |
|
787 |
} |
|
788 |
else |
|
789 |
{ |
|
790 |
nextIndex = iSelectedIndex + aMove; |
|
791 |
} |
|
792 |
||
793 |
if( iSelectionMode == ESelectionMark ) |
|
794 |
{ |
|
795 |
Mark( iSelectedIndex ); |
|
796 |
Mark( nextIndex ); |
|
797 |
} |
|
798 |
else if( iSelectionMode == ESelectionUnMark ) |
|
799 |
{ |
|
800 |
UnMark( iSelectedIndex ); |
|
801 |
UnMark( nextIndex ); |
|
802 |
} |
|
803 |
||
804 |
iSelectedIndex = nextIndex; |
|
805 |
} |
|
806 |
||
807 |
// ----------------------------------------------------------------------------- |
|
808 |
// CHgGrid::HandleScrollbarVisibilityChange() |
|
809 |
// ----------------------------------------------------------------------------- |
|
810 |
// |
|
811 |
void CHgGrid::HandleScrollbarVisibilityChange( TBool /*aVisible*/ ) |
|
812 |
{ |
|
813 |
||
814 |
} |
|
815 |
||
816 |
// ----------------------------------------------------------------------------- |
|
817 |
// CHgGrid::SetToolbarVisibility() |
|
818 |
// ----------------------------------------------------------------------------- |
|
819 |
// |
|
820 |
EXPORT_C void CHgGrid::SetToolbarVisibility( TBool aToolbarVisible ) |
|
821 |
{ |
|
822 |
iToolbarVisible = aToolbarVisible; |
|
823 |
HandleSizeChanged(); |
|
824 |
} |
|
825 |
||
826 |
// End of File |