sl@0
|
1 |
// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
NAME TCAM
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <techview/eikon.rh>
|
sl@0
|
19 |
#include <avkon.rsg>
|
sl@0
|
20 |
#include <avkon.rh>
|
sl@0
|
21 |
#include <avkon.mbg>
|
sl@0
|
22 |
|
sl@0
|
23 |
#include "TestCameraApp.hrh"
|
sl@0
|
24 |
|
sl@0
|
25 |
RESOURCE RSS_SIGNATURE { }
|
sl@0
|
26 |
|
sl@0
|
27 |
RESOURCE TBUF { buf=""; }
|
sl@0
|
28 |
|
sl@0
|
29 |
RESOURCE EIK_APP_INFO
|
sl@0
|
30 |
{
|
sl@0
|
31 |
menubar=r_tcam_menubar;
|
sl@0
|
32 |
cba=R_AVKON_SOFTKEYS_OPTIONS_BACK;
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
RESOURCE MENU_BAR r_tcam_menubar
|
sl@0
|
36 |
{
|
sl@0
|
37 |
titles=
|
sl@0
|
38 |
{
|
sl@0
|
39 |
MENU_TITLE { menu_pane=r_tcam_main_menu; txt="Options"; }
|
sl@0
|
40 |
};
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
RESOURCE MENU_BAR r_tcam_main_menu
|
sl@0
|
44 |
{
|
sl@0
|
45 |
titles=
|
sl@0
|
46 |
{
|
sl@0
|
47 |
MENU_ITEM { cascade=r_tcam_control_menu; txt="Control"; },
|
sl@0
|
48 |
MENU_ITEM { cascade=r_tcam_settings_menu; txt="Settings"; }
|
sl@0
|
49 |
};
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
RESOURCE MENU_PANE r_tcam_control_menu
|
sl@0
|
53 |
{
|
sl@0
|
54 |
items=
|
sl@0
|
55 |
{
|
sl@0
|
56 |
MENU_ITEM { command=ETCamCmdPowerOn; txt="Power on"; },
|
sl@0
|
57 |
MENU_ITEM { command=ETCamCmdPowerOff; txt="Power off"; },
|
sl@0
|
58 |
MENU_ITEM { command=ETCamCmdViewFinder; txt="View finder"; },
|
sl@0
|
59 |
MENU_ITEM { command=ETCamCmdCaptureImage; txt="Capture image"; },
|
sl@0
|
60 |
MENU_ITEM { command=ETCamCmdCaptureVideo; txt="Toggle video"; }
|
sl@0
|
61 |
};
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
RESOURCE MENU_PANE r_tcam_settings_menu
|
sl@0
|
65 |
{
|
sl@0
|
66 |
items=
|
sl@0
|
67 |
{
|
sl@0
|
68 |
MENU_ITEM { command=ETCamCmdIncContrast; txt="Contrast+"; },
|
sl@0
|
69 |
MENU_ITEM { command=ETCamCmdDecContrast; txt="Contrast-"; },
|
sl@0
|
70 |
MENU_ITEM { command=ETCamCmdResetContrast; txt="Reset contrast"; },
|
sl@0
|
71 |
MENU_ITEM { command=ETCamCmdIncBrightness; txt="Brightness+"; },
|
sl@0
|
72 |
MENU_ITEM { command=ETCamCmdDecBrightness; txt="Brightness-"; },
|
sl@0
|
73 |
MENU_ITEM { command=ETCamCmdResetBrightness; txt="Reset brightness"; }
|
sl@0
|
74 |
};
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|