|
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: Photos ids |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __GLXGALLERY_HRH__ |
|
21 #define __GLXGALLERY_HRH__ |
|
22 |
|
23 /// Gallery application UID |
|
24 #define KGlxGalleryApplicationUid 0x200009EE |
|
25 |
|
26 /** |
|
27 * Activation commands |
|
28 * Supply either via TApaTask::SendMessage if Gallery is running, or |
|
29 * via CApaCommandLine::SetTailEndL, if Gallery not running |
|
30 */ |
|
31 |
|
32 /// Show album list view |
|
33 #define KGlxActivationCmdShowAlbumList 0x200071AB // message id for album |
|
34 |
|
35 /// Show Camera album full screen, focus last modified item |
|
36 #define KGlxActivationCmdShowLastModified 0x200071A9 // message id for last modified |
|
37 |
|
38 /// Run slide show |
|
39 #define KGlxActivationCmdRunSlideshow 0x200071AA // message id for slideshow |
|
40 |
|
41 // show last item (latest captured) in Camera album tile view |
|
42 #define KGlxActivationCameraAlbum 0x2000A7B8 // message id for cameraalbum @CR 403-2372, 403-2371 Active Space |
|
43 |
|
44 // show Gallery and opens Main view |
|
45 #define KGlxActivationPhotosMenu 0x2000A7B9 // message id for photos menu @CR 403-2372, 403-2371 Active Space |
|
46 /// Slideshow-specific additional parameters |
|
47 #define KGlxSlideShowForward 1 |
|
48 #define KGlxSlideShowBackward 2 |
|
49 |
|
50 #endif // __GLXGALLERY_HRH__ |
|
51 |