add SYSTEM_SETTINGS_KEY_ADS_ID key
[platform/core/api/system-settings.git] / include / system_settings.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __TIZEN_SYSTEM_SYSTEM_SETTINGS_H__
18 #define __TIZEN_SYSTEM_SYSTEM_SETTINGS_H__
19
20 #include <tizen.h>
21
22 #ifdef __cplusplus
23 extern "C"
24 {
25 #endif
26
27 /**
28  * @file system_settings.h
29  */
30
31 /**
32  * @addtogroup CAPI_SYSTEM_SYSTEM_SETTINGS_MODULE
33  * @{
34  */
35
36
37 /**
38  * @brief Enumeration for system settings error.
39  * @since_tizen 2.3
40  */
41 typedef enum {
42         SYSTEM_SETTINGS_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
43         SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid parameter */
44         SYSTEM_SETTINGS_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of memory */
45         SYSTEM_SETTINGS_ERROR_IO_ERROR =  TIZEN_ERROR_IO_ERROR, /**< Internal I/O error */
46         SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED =  TIZEN_ERROR_PERMISSION_DENIED, /**< Permition denied */
47         SYSTEM_SETTINGS_ERROR_NOT_SUPPORTED =  TIZEN_ERROR_NOT_SUPPORTED, /**< Not supported @if MOBILE (Since 2.3.1) @endif */
48         SYSTEM_SETTINGS_ERROR_CALL_UNSUPPORTED_API = TIZEN_ERROR_NOT_SUPPORTED, /**< Not supported @if MOBILE (Since 2.3.1) @endif */
49
50         /* lock screen app error code */
51         SYSTEM_SETTINGS_ERROR_LOCKSCREEN_APP_PASSWORD_MODE = TIZEN_ERROR_SYSTEM_SETTING | 0x01, /**< Current lock screen app set 'password' type */
52 }
53 system_settings_error_e;
54
55
56 /**
57  * @brief Enumeration for System Settings Key.
58  * @since_tizen 2.3
59  */
60 typedef enum {
61         SYSTEM_SETTINGS_KEY_INCOMING_CALL_RINGTONE, /**< (string) The file path of the current ringtone */
62         SYSTEM_SETTINGS_KEY_WALLPAPER_HOME_SCREEN, /**< (string) The file path of the current home screen wallpaper */
63         SYSTEM_SETTINGS_KEY_WALLPAPER_LOCK_SCREEN, /**< (string) The file path of the current lock screen wallpaper */
64         SYSTEM_SETTINGS_KEY_FONT_SIZE, /**< (int) The current system font size */
65         SYSTEM_SETTINGS_KEY_FONT_TYPE, /**< (string) The current system font type */
66         SYSTEM_SETTINGS_KEY_MOTION_ACTIVATION, /**< (bool) Indicates whether the motion service is activated */
67         SYSTEM_SETTINGS_KEY_EMAIL_ALERT_RINGTONE,  /**< (string) The file path of the current email alert ringtone */
68         SYSTEM_SETTINGS_KEY_USB_DEBUGGING_ENABLED,      /**< (bool) Indicates whether the USB debugging is enabled (Since @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) */
69         SYSTEM_SETTINGS_KEY_3G_DATA_NETWORK_ENABLED,  /**< bool) Indicates whether the 3G data network is enabled (Since @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif) */
70         SYSTEM_SETTINGS_KEY_LOCKSCREEN_APP = SYSTEM_SETTINGS_KEY_3G_DATA_NETWORK_ENABLED+2,      /**< (string) Indicates lockscreen app pkg name  */
71         SYSTEM_SETTINGS_KEY_DEFAULT_FONT_TYPE,/**< (string) The current system default font type (only support Get) */
72         SYSTEM_SETTINGS_KEY_LOCALE_COUNTRY,             /**< (string) Indicates the current country setting in the <LANGUAGE>_<REGION> syntax. The country setting is in the ISO 639-2 format, and the region setting is in the ISO 3166-1 alpha-2 format */
73         SYSTEM_SETTINGS_KEY_LOCALE_LANGUAGE,    /**< (string) Indicates the current language setting in the <LANGUAGE>_<REGION> syntax. The language setting is in the ISO 639-2 format and the region setting is in the ISO 3166-1 alpha-2 format. */
74         SYSTEM_SETTINGS_KEY_LOCALE_TIMEFORMAT_24HOUR,   /**< (bool) Indicates whether the 24-hour clock is used. If the value is @c false, the 12-hour clock is used. */
75         SYSTEM_SETTINGS_KEY_LOCALE_TIMEZONE,    /**< (string) Indicates the current time zone. */
76         SYSTEM_SETTINGS_KEY_TIME_CHANGED,               /**< (int) Once System changes time, this event occurs to notify time change. */
77         SYSTEM_SETTINGS_KEY_SOUND_LOCK,                                 /**< GET (bool) Indicates whether the screen lock sound is enabled on the device. ex) LCD on/off sound */
78         SYSTEM_SETTINGS_KEY_SOUND_SILENT_MODE,                  /**< GET (bool) Indicates whether the device is in the silent mode. */
79         SYSTEM_SETTINGS_KEY_SOUND_TOUCH,                                /**< GET (bool) Indicates whether the screen touch sound is enabled on the device. */
80         SYSTEM_SETTINGS_KEY_DISPLAY_SCREEN_ROTATION_AUTO,       /**< GET (bool) Indicates whether rotation control is automatic.*/
81         SYSTEM_SETTINGS_KEY_DEVICE_NAME,                                        /**< GET (string) Indicates device name. */
82         SYSTEM_SETTINGS_KEY_MOTION_ENABLED,                                     /**< GET (bool) Indicates whether the device user has enabled the motion feature. */
83         SYSTEM_SETTINGS_KEY_NETWORK_WIFI_NOTIFICATION,          /**< GET (bool) Indicates whether Wi-Fi-related notifications are enabled on the device. */
84         SYSTEM_SETTINGS_KEY_NETWORK_FLIGHT_MODE,                        /**< GET (bool) Indicates whether the device is in the flight mode. */
85         SYSTEM_SETTINGS_KEY_SCREEN_BACKLIGHT_TIME,                      /**< (int) Indicates the backlight time (in seconds). @internal The following values can be used: 15, 30, 60, 120, 300, and 600. */
86         SYSTEM_SETTINGS_KEY_SOUND_NOTIFICATION,                         /**< (string) Indicates the file path of the current notification tone set by the user. */
87         SYSTEM_SETTINGS_KEY_SOUND_NOTIFICATION_REPETITION_PERIOD,       /**< (int) Indicates the time period for notification repetitions. */
88         SYSTEM_SETTINGS_KEY_LOCK_STATE,         /**< (int) Indicates the current lock state */
89         SYSTEM_SETTINGS_KEY_ADS_ID, /**< (string) Indicates Ads ID for each device (Since 3.0) */
90         SYSTEM_SETTINGS_KEY_MAX,
91 } system_settings_key_e;
92
93 /**
94  * @brief Enumeration for Idle Lock State
95  * @since_tizen 2.3.1
96  */
97 typedef enum {
98         SYSTEM_SETTINGS_LOCK_STATE_UNLOCK = 0, /**< Device is unlocked */
99         SYSTEM_SETTINGS_LOCK_STATE_LOCK, /**< Device is locked */
100         SYSTEM_SETTINGS_LOCK_STATE_LAUNCHING_LOCK /**< Device is being locked */
101 } system_settings_idle_lock_state_e;
102
103
104 /**
105  * @brief Enumeration for font size.
106  * @since_tizen 2.3
107  */
108 typedef enum {
109         SYSTEM_SETTINGS_FONT_SIZE_SMALL = 0, /**< A small size */
110         SYSTEM_SETTINGS_FONT_SIZE_NORMAL, /**< A normal size */
111         SYSTEM_SETTINGS_FONT_SIZE_LARGE, /**< A large size */
112         SYSTEM_SETTINGS_FONT_SIZE_HUGE, /**< A huge size */
113         SYSTEM_SETTINGS_FONT_SIZE_GIANT, /**< A giant size */
114 } system_settings_font_size_e;
115
116
117 /**
118  * @brief Called when the system settings changes.
119  * @since_tizen 2.3
120  * @param[in] key The key name of the system settings changed system settings
121  * @param[in] user_data The user data passed from the callback registration function
122  * @pre system_settings_set_changed_cb() will invoke this callback function.
123  * @see system_settings_set_changed_cb()
124  * @see system_settings_unset_changed_cb()
125  */
126 typedef void (*system_settings_changed_cb)(system_settings_key_e key, void *user_data);
127
128 /**
129  * @platform
130  * @brief Sets the system settings value associated with the given key as an integer.
131  * @since_tizen 2.3
132  * @privlevel platform
133  * @privilege %http://tizen.org/privilege/systemsettings.admin
134  * @param[in] key The key name of the system settings changed
135  * @param[in] key The key name of the system settings
136  * @param[out] value The new system settings value of the given key
137  * @return @c 0 on success, otherwise a negative error value
138  * @retval      #SYSTEM_SETTINGS_ERROR_NONE Successful
139  * @retval      #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
140  * @retval      #SYSTEM_SETTINGS_ERROR_IO_ERROR Internal I/O error
141  * @retval      #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
142  */
143 int system_settings_set_value_int(system_settings_key_e key, int value);
144
145 /**
146  * @brief Gets the system settings value associated with the given key as an integer.
147  * @since_tizen 2.3
148  * @param[in] key The key name of the system settings
149  * @param[out] value The current system settings value of the given key
150  * @return @c 0 on success, otherwise a negative error value
151  * @retval      #SYSTEM_SETTINGS_ERROR_NONE Successful
152  * @retval      #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
153  * @retval      #SYSTEM_SETTINGS_ERROR_IO_ERROR Internal I/O error
154  * @retval      #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
155  * @warning %http://tizen.org/privilege/systemsettings (public level privilege) <b>MUST NOT</b> be declared to use this API since 2.3.1.
156  */
157 int system_settings_get_value_int(system_settings_key_e key, int *value);
158
159
160 /**
161  * @platform
162  * @brief Sets the system settings value associated with the given key as a boolean.
163  * @since_tizen 2.3
164  * @privlevel platform
165  * @privilege %http://tizen.org/privilege/systemsettings.admin
166  * @param[in] key The key name of the system settings
167  * @param[out] value The new system settings value of the given key
168  * @return @c 0 on success, otherwise a negative error value
169  * @retval      #SYSTEM_SETTINGS_ERROR_NONE Successful
170  * @retval      #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
171  * @retval      #SYSTEM_SETTINGS_ERROR_IO_ERROR Internal I/O error
172  * @retval      #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
173  */
174 int system_settings_set_value_bool(system_settings_key_e key, bool value);
175
176 /**
177  * @brief Gets the system settings value associated with the given key as a boolean.
178  * @since_tizen 2.3
179  * @param[in] key The key name of the system settings
180  * @param[out] value The current system settings value of the given key
181  * @return @c 0 on success, otherwise a negative error value
182  * @retval      #SYSTEM_SETTINGS_ERROR_NONE Successful
183  * @retval      #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
184  * @retval      #SYSTEM_SETTINGS_ERROR_IO_ERROR Internal I/O error
185  * @retval      #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
186  * @warning %http://tizen.org/privilege/systemsettings (public level privilege) <b>MUST NOT</b> be declared to use this API since 2.3.1.
187  */
188 int system_settings_get_value_bool(system_settings_key_e key, bool *value);
189
190 /**
191  * @platform
192  * @brief Sets the system settings value associated with the given key as a string.
193  * @since_tizen 2.3
194  * @privlevel platform
195  * @privilege %http://tizen.org/privilege/systemsettings.admin
196  * @remarks #SYSTEM_SETTINGS_KEY_DEFAULT_FONT_TYPE is not available for setting.
197  * @param[in] key The key name of the system settings
198  * @param[out] value The new system settings value of the given key
199  * @return @c 0 on success, otherwise a negative error value
200  * @retval      #SYSTEM_SETTINGS_ERROR_NONE Successful
201  * @retval      #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
202  * @retval      #SYSTEM_SETTINGS_ERROR_IO_ERROR Internal I/O error
203  * @retval      #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
204  */
205 int system_settings_set_value_string(system_settings_key_e key, const char *value);
206
207 /**
208  * @brief Gets the system settings value associated with the given key as a string.
209  * @since_tizen 2.3
210  * @remarks You must release @a value using free().
211  * @param[in] key The key name of the system settings
212  * @param[out] value The current system settings value of the given key
213  * @return      0 on success, otherwise a negative error value
214  * @retval      #SYSTEM_SETTINGS_ERROR_NONE Successful
215  * @retval      #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
216  * @retval      #SYSTEM_SETTINGS_ERROR_IO_ERROR Internal I/O error
217  * @retval      #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
218  * @warning %http://tizen.org/privilege/systemsettings (public level privilege) <b>MUST NOT</b> be declared to use this API since 2.3.1.
219  */
220 int system_settings_get_value_string(system_settings_key_e key, char **value);
221
222 /**
223  * @brief Registers a change event callback for the given system settings key.
224  * @since_tizen 2.3
225  * @remarks #SYSTEM_SETTINGS_KEY_DEFAULT_FONT_TYPE is not available for set_changed_cb.
226  * @param[in] key The key name of the system settings
227  * @param[in] callback The callback function to invoke
228  * @param[in] user_data The user data to be passed to the callback function
229  * @return      0 on success, otherwise a negative error value
230  * @retval      #SYSTEM_SETTINGS_ERROR_NONE Successful
231  * @retval      #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
232  * @retval      #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
233  * @post system_settings_changed_cb() will be invoked.
234  *
235  * @see system_settings_unset_changed_cb()
236  * @see system_settings_changed_cb()
237  * @warning %http://tizen.org/privilege/systemsettings (public level privilege) <b>MUST NOT</b> be declared to use this API since 2.3.1.
238  *
239 */
240 int system_settings_set_changed_cb(system_settings_key_e key, system_settings_changed_cb callback, void *user_data);
241
242 /**
243  * @brief Unregisters the callback function.
244  * @since_tizen 2.3
245  * @remarks #SYSTEM_SETTINGS_KEY_DEFAULT_FONT_TYPE is not available for set_changed_cb.
246  * @param[in] key The key name of the system settings
247  * @return      0 on success, otherwise a negative error value
248  * @retval      #SYSTEM_SETTINGS_ERROR_NONE Successful
249  * @retval      #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
250  * @retval      #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
251  *
252  * @see system_settings_set_changed_cb()
253  * @warning %http://tizen.org/privilege/systemsettings (public level privilege) <b>MUST NOT</b> be declared to use this API since 2.3.1.
254  */
255 int system_settings_unset_changed_cb(system_settings_key_e key);
256
257
258 /**
259  * @}
260  */
261
262
263 #ifdef __cplusplus
264 }
265 #endif
266
267 #endif /* __TIZEN_SYSTEM_SYSTEM_SETTINGS_H__ */