fix betweeny code and code clean
[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 {
43         SYSTEM_SETTINGS_ERROR_NONE = TIZEN_ERROR_NONE, /**< Successful */
44         SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid parameter */
45         SYSTEM_SETTINGS_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of memory */
46         SYSTEM_SETTINGS_ERROR_IO_ERROR =  TIZEN_ERROR_IO_ERROR, /**< Internal I/O error */
47         SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED =  TIZEN_ERROR_PERMISSION_DENIED, /**< Permition denied */
48         SYSTEM_SETTINGS_ERROR_CALL_UNSUPPORTED_API =  TIZEN_ERROR_INVALID_PARAMETER, /**< Permition denied */
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
67     SYSTEM_SETTINGS_KEY_MOTION_ACTIVATION, /**< (bool) Indicates whether the motion service is activated */
68     SYSTEM_SETTINGS_KEY_EMAIL_ALERT_RINGTONE,  /**< (string) The file path of the current email alert ringtone */
69     SYSTEM_SETTINGS_KEY_USB_DEBUGGING_ENABLED,  /**< (bool) Indicates whether the USB debugging is enabled (Since 2.4) */
70     SYSTEM_SETTINGS_KEY_3G_DATA_NETWORK_ENABLED,  /**< bool) Indicates whether the 3G data network is enabled (Since 2.4) */
71     SYSTEM_SETTINGS_KEY_LOCKSCREEN_APP = SYSTEM_SETTINGS_KEY_3G_DATA_NETWORK_ENABLED+2,  /**< (string) Indicates lockscreen app pkg name  */
72
73     SYSTEM_SETTINGS_KEY_DEFAULT_FONT_TYPE,/**< (string) The current system default font type (only support Get) */
74     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 */
75     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. */
76     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. */
77     SYSTEM_SETTINGS_KEY_LOCALE_TIMEZONE,        /**< (string) Indicates the current time zone. */
78
79     SYSTEM_SETTINGS_KEY_TIME_CHANGED,           /**< (int) Once System changes time, this event occurs to notify time change. */
80     SYSTEM_SETTINGS_KEY_SOUND_LOCK,                                     /**< GET (bool) Indicates whether the screen lock sound is enabled on the device. ex) LCD on/off sound */
81     SYSTEM_SETTINGS_KEY_SOUND_SILENT_MODE,                      /**< GET (bool) Indicates whether the device is in the silent mode. */
82     SYSTEM_SETTINGS_KEY_SOUND_TOUCH,                            /**< GET (bool) Indicates whether the screen touch sound is enabled on the device. */
83     SYSTEM_SETTINGS_KEY_DISPLAY_SCREEN_ROTATION_AUTO,   /**< GET (bool) Indicates whether rotation control is automatic.*/
84
85     SYSTEM_SETTINGS_KEY_DEVICE_NAME,                                    /**< GET (string) Indicates device name. */
86     SYSTEM_SETTINGS_KEY_MOTION_ENABLED,                                 /**< GET (bool) Indicates whether the device user has enabled the motion feature. */
87     SYSTEM_SETTINGS_KEY_NETWORK_WIFI_NOTIFICATION,              /**< GET (bool) Indicates whether Wi-Fi-related notifications are enabled on the device. */
88     SYSTEM_SETTINGS_KEY_NETWORK_FLIGHT_MODE,                    /**< GET (bool) Indicates whether the device is in the flight mode. */
89     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. */
90
91     SYSTEM_SETTINGS_KEY_SOUND_NOTIFICATION,                     /**< (string) Indicates the file path of the current notification tone set by the user. */
92     SYSTEM_SETTINGS_KEY_SOUND_NOTIFICATION_REPETITION_PERIOD,   /**< (int) Indicates the time period for notification repetitions. */
93     SYSTEM_SETTINGS_KEY_MAX,
94
95 } system_settings_key_e;
96
97
98 /**
99  * @brief Enumeration for font size.
100  * @since_tizen 2.3
101  */
102 typedef enum {
103     SYSTEM_SETTINGS_FONT_SIZE_SMALL = 0, /**< A small size */
104     SYSTEM_SETTINGS_FONT_SIZE_NORMAL, /**< A normal size */
105     SYSTEM_SETTINGS_FONT_SIZE_LARGE, /**< A large size */
106     SYSTEM_SETTINGS_FONT_SIZE_HUGE, /**< A huge size */
107     SYSTEM_SETTINGS_FONT_SIZE_GIANT, /**< A giant size */
108 } system_settings_font_size_e;
109
110
111 /**
112  * @brief Called when the system settings changes.
113  * @since_tizen 2.3
114  * @param[in] key The key name of the system settings changed system settings
115  * @param[in] user_data The user data passed from the callback registration function
116  * @pre system_settings_set_changed_cb() will invoke this callback function.
117  * @see system_settings_set_changed_cb()
118  * @see system_settings_unset_changed_cb()
119  */
120 typedef void (*system_settings_changed_cb)(system_settings_key_e key, void *user_data);
121
122 /**
123  * @platform
124  * @brief Sets the system settings value associated with the given key as an integer.
125  * @since_tizen 2.3
126  * @privlevel platform
127  * @privilege %http://tizen.org/privilege/systemsettings.admin
128  * @param[in] key The key name of the system settings changed
129  * @param[in] key The key name of the system settings
130  * @param[out] value The new system settings value of the given key
131  * @return @c 0 on success, otherwise a negative error value
132  * @retval  #SYSTEM_SETTINGS_ERROR_NONE Successful
133  * @retval  #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
134  * @retval  #SYSTEM_SETTINGS_ERROR_IO_ERROR Internal I/O error
135  * @retval  #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
136  */
137 int system_settings_set_value_int(system_settings_key_e key, int value);
138
139 /**
140  * @brief Gets the system settings value associated with the given key as an integer.
141  * @since_tizen 2.3
142  * @privlevel public
143  * @param[in] key The key name of the system settings
144  * @param[out] value The current system settings value of the given key
145  * @return @c 0 on success, otherwise a negative error value
146  * @retval  #SYSTEM_SETTINGS_ERROR_NONE Successful
147  * @retval  #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
148  * @retval  #SYSTEM_SETTINGS_ERROR_IO_ERROR Internal I/O error
149  * @retval  #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
150  */
151 int system_settings_get_value_int(system_settings_key_e key, int *value);
152
153
154 /**
155  * @platform
156  * @brief Sets the system settings value associated with the given key as a boolean.
157  * @since_tizen 2.3
158  * @privlevel platform
159  * @privilege %http://tizen.org/privilege/systemsettings.admin
160  * @param[in] key The key name of the system settings
161  * @param[out] value The new system settings value of the given key
162  * @return @c 0 on success, otherwise a negative error value
163  * @retval  #SYSTEM_SETTINGS_ERROR_NONE Successful
164  * @retval  #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
165  * @retval  #SYSTEM_SETTINGS_ERROR_IO_ERROR Internal I/O error
166  * @retval  #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
167  */
168 int system_settings_set_value_bool(system_settings_key_e key, bool value);
169
170 /**
171  * @brief Gets the system settings value associated with the given key as a boolean.
172  * @since_tizen 2.3
173  * @privlevel public
174  * @param[in] key The key name of the system settings
175  * @param[out] value The current system settings value of the given key
176  * @return @c 0 on success, otherwise a negative error value
177  * @retval  #SYSTEM_SETTINGS_ERROR_NONE Successful
178  * @retval  #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
179  * @retval  #SYSTEM_SETTINGS_ERROR_IO_ERROR Internal I/O error
180  * @retval  #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
181  */
182 int system_settings_get_value_bool(system_settings_key_e key, bool *value);
183
184 /**
185  * @platform
186  * @brief Sets the system settings value associated with the given key as a string.
187  * @since_tizen 2.3
188  * @privlevel platform
189  * @privilege %http://tizen.org/privilege/systemsettings.admin
190  * @remarks #SYSTEM_SETTINGS_KEY_DEFAULT_FONT_TYPE is not available for setting.
191  * @param[in] key The key name of the system settings
192  * @param[out] value The new system settings value of the given key
193  * @return @c 0 on success, otherwise a negative error value
194  * @retval  #SYSTEM_SETTINGS_ERROR_NONE Successful
195  * @retval  #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
196  * @retval  #SYSTEM_SETTINGS_ERROR_IO_ERROR Internal I/O error
197  * @retval  #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
198  */
199 int system_settings_set_value_string(system_settings_key_e key, const char *value);
200
201 /**
202  * @brief Gets the system settings value associated with the given key as a string.
203  * @since_tizen 2.3
204  * @privlevel public
205  * @remarks You must release @a value using free().
206  * @param[in] key The key name of the system settings
207  * @param[out] value The current system settings value of the given key
208  * @return  0 on success, otherwise a negative error value
209  * @retval  #SYSTEM_SETTINGS_ERROR_NONE Successful
210  * @retval  #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
211  * @retval  #SYSTEM_SETTINGS_ERROR_IO_ERROR Internal I/O error
212  * @retval  #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
213  */
214 int system_settings_get_value_string(system_settings_key_e key, char **value);
215
216 /**
217  * @brief Registers a change event callback for the given system settings key.
218  * @since_tizen 2.3
219  * @privlevel public
220  * @remarks #SYSTEM_SETTINGS_KEY_DEFAULT_FONT_TYPE is not available for set_changed_cb.
221  * @param[in] key The key name of the system settings
222  * @param[in] callback The callback function to invoke
223  * @param[in] user_data The user data to be passed to the callback function
224  * @return  0 on success, otherwise a negative error value
225  * @retval  #SYSTEM_SETTINGS_ERROR_NONE Successful
226  * @retval  #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
227  * @retval  #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
228  * @post system_settings_changed_cb() will be invoked.
229  *
230  * @see system_settings_unset_changed_cb()
231  * @see system_settings_changed_cb()
232  *
233 */
234 int system_settings_set_changed_cb(system_settings_key_e key, system_settings_changed_cb callback, void *user_data);
235
236 /**
237  * @brief Unregisters the callback function.
238  * @since_tizen 2.3
239  * @privlevel public
240  * @remarks #SYSTEM_SETTINGS_KEY_DEFAULT_FONT_TYPE is not available for set_changed_cb.
241  * @param[in] key The key name of the system settings
242  * @return  0 on success, otherwise a negative error value
243  * @retval  #SYSTEM_SETTINGS_ERROR_NONE Successful
244  * @retval  #SYSTEM_SETTINGS_ERROR_INVALID_PARAMETER Invalid parameter
245  * @retval  #SYSTEM_SETTINGS_ERROR_PERMISSION_DENIED Permission violation error
246  *
247  * @see system_settings_set_changed_cb()
248  */
249 int system_settings_unset_changed_cb(system_settings_key_e key);
250
251
252 /**
253  * @}
254  */
255
256
257 #ifdef __cplusplus
258 }
259 #endif
260
261 #endif /* __TIZEN_SYSTEM_SYSTEM_SETTINGS_H__ */