Gocator Development Kit
 All Classes Files Functions Variables Typedefs Friends Modules Pages
GdkSensorInfo.h
Go to the documentation of this file.
1 /**
2 * @file GdkSensorInfo.h
3 * @brief Declares the GdkSensorInfo class.
4 *
5 * Copyright (C) 2015 by LMI Technologies Inc. All rights reserved.
6 */
7 #ifndef GDK_SENSOR_INFO_H
8 #define GDK_SENSOR_INFO_H
9 
10 #include <Gdk/GdkDef.h>
11 #include <Gdk/Utils/GdkDataInfo.h>
12 
13 kBeginHeader()
14 
15 /**
16 * Describes the sensor system environment.
17 *
18 * @class GdkSensorInfo
19 * @extends kObject
20 * @ingroup Gdk-Utils
21 */
22 typedef kObject GdkSensorInfo;
23 kDeclareClass(Gdk, GdkSensorInfo, kObject)
24 
25 /**
26 * Returns the sensor system orientation.
27 *
28 * @public @memberof GdkSensorInfo
29 * @param info Info object.
30 * @return Orientation.
31 */
32 GdkFx(GdkOrientation) GdkSensorInfo_Orientation(GdkSensorInfo info);
33 
34 /**
35 * Returns the descriptor for a specified data source.
36 *
37 * @public @memberof GdkSensorInfo
38 * @param info Info object.
39 * @param source Data source.
40 * @return Descriptor for data source. kNULL if not found.
41 */
42 GdkFx(GdkDataInfo) GdkSensorInfo_DataSource(GdkSensorInfo info, GdkDataSource source);
43 
44 kEndHeader()
45 
46 #endif
Essential Gdk declarations.
kObject GdkOrientation GdkSensorInfo_Orientation(GdkSensorInfo info)
Returns the sensor system orientation.
Describes a data source.
Represents a data source selections.
Describes the sensor system environment.
GdkDataInfo GdkSensorInfo_DataSource(GdkSensorInfo info, GdkDataSource source)
Returns the descriptor for a specified data source.
Declares the GdkDataInfo class.
Represents the sensor system orientation.