0
|
1 #ifndef _MMICAMERATEST_H_
|
|
2 #define _MMICAMERATEST_H_
|
|
3
|
|
4 /*******************************************************************************
|
|
5
|
|
6 CONDAT (UK)
|
|
7
|
|
8 ********************************************************************************
|
|
9
|
|
10 This software product is the property of Condat (UK) Ltd and may not be
|
|
11 disclosed to any third party without the express permission of the owner.
|
|
12
|
|
13 ********************************************************************************
|
|
14
|
|
15 $Project name: Basic MMI
|
|
16 $Project code: BMI (6349)
|
|
17 $Module: CameraTest
|
|
18 $File: MmiCameraTest.h
|
|
19 $Revision: 1.0
|
|
20
|
|
21 $Author: Texas Instruments France
|
|
22 $Date: 16/06/04
|
|
23
|
|
24 ********************************************************************************
|
|
25
|
|
26 Description:
|
|
27
|
|
28 This module provides the Camera functionality.
|
|
29
|
|
30 ********************************************************************************
|
|
31 $History: MmiCameraTest.h
|
|
32
|
|
33 Aug 22 2005, xpradipg - LOCOSTO-ENH-31154
|
|
34 Description: Application to test camera
|
|
35 Solution: Implemented the camera application with following functionalities
|
|
36 preview, snapshot and image saving.
|
|
37 16/06/04
|
|
38
|
|
39 $End
|
|
40
|
|
41 *******************************************************************************/
|
|
42
|
|
43
|
|
44
|
|
45 /*******************************************************************************
|
|
46
|
|
47 Include files
|
|
48
|
|
49 *******************************************************************************/
|
|
50
|
|
51
|
|
52
|
|
53
|
|
54 /*******************************************************************************
|
|
55
|
|
56 Interface constants
|
|
57
|
|
58 *******************************************************************************/
|
|
59
|
|
60
|
|
61
|
|
62
|
|
63 /*******************************************************************************
|
|
64
|
|
65 Public methods
|
|
66
|
|
67 *******************************************************************************/
|
|
68
|
|
69 /* pretty standard initialise, execute and exit methods
|
|
70 */
|
|
71 GLOBAL int mmi_camera_test_launch_view_finder (MfwMnu* m, MfwMnuItem* i);
|
|
72 T_MFW_HND mmi_camera_test_opt_create(T_MFW_HND parent);
|
|
73 GLOBAL int mmi_camera_test_set_quality (MfwMnu* m, MfwMnuItem* i);
|
|
74 GLOBAL int mmi_camera_test_set_color (MfwMnu* m, MfwMnuItem* i);
|
|
75 T_MFW_HND mmi_camera_test_opt_start(T_MFW_HND parent_window, MfwMnuAttr *menuAttr);
|
|
76 int M_exeQuality(MfwMnu* m, MfwMnuItem* i);
|
|
77 int M_exeColor(MfwMnu* m, MfwMnuItem* i);
|
|
78 static int M_exeZoom(MfwMnu* m, MfwMnuItem* i);
|
|
79 GLOBAL int mmi_camera_edit_filename(MfwMnu* m, MfwMnuItem* i);
|
|
80
|
|
81
|
|
82 /*******************************************************************************
|
|
83
|
|
84 End of File
|
|
85
|
|
86 *******************************************************************************/
|
|
87
|
|
88 #endif //_MMICAMERATEST_H_
|
|
89
|