1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
|
/*
* Copyright (C) 2012 Samsung Electronics
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* @file ewk_settings.h
* @brief Describes the settings API.
*
* @note The ewk_settings is for setting the preference of specific ewk_view.
* We can get the ewk_settings from ewk_view using ewk_view_settings_get() API.
*/
#ifndef ewk_settings_h
#define ewk_settings_h
#include <Eina.h>
#ifdef __cplusplus
extern "C" {
#endif
/** Creates a type name for Ewk_Settings */
typedef struct EwkSettings Ewk_Settings;
/**
* Creates a type name for the callback function used to notify the client when
* the continuous spell checking setting was changed by WebKit.
*
* @param enable @c EINA_TRUE if continuous spell checking is enabled or @c EINA_FALSE if it's disabled
*/
typedef void (*Ewk_Settings_Continuous_Spell_Checking_Change_Cb)(Eina_Bool enable);
/**
* Enables/disables the Javascript Fullscreen API. The Javascript API allows
* to request full screen mode, for more information see:
* http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html
*
* Default value for Javascript Fullscreen API setting is @c EINA_TRUE .
*
* @param settings settings object to enable Javascript Fullscreen API
* @param enable @c EINA_TRUE to enable Javascript Fullscreen API or
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_settings_fullscreen_enabled_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Returns whether the Javascript Fullscreen API is enabled or not.
*
* @param settings settings object to query whether Javascript Fullscreen API is enabled
*
* @return @c EINA_TRUE if the Javascript Fullscreen API is enabled
* @c EINA_FALSE if not or on failure
*/
EAPI Eina_Bool ewk_settings_fullscreen_enabled_get(const Ewk_Settings *settings);
/**
* Enables/disables the javascript executing.
*
* By default, JavaScript execution is enabled.
*
* @param settings settings object to set javascript executing
* @param enable @c EINA_TRUE to enable javascript executing
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_settings_javascript_enabled_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Returns whether JavaScript execution is enabled.
*
* @param settings settings object to query if the javascript can be executed
*
* @return @c EINA_TRUE if the javascript can be executed
* @c EINA_FALSE if not or on failure
*/
EAPI Eina_Bool ewk_settings_javascript_enabled_get(const Ewk_Settings *settings);
/**
* Enables/disables auto loading of the images.
*
* By default, auto loading of the images is enabled.
*
* @param settings settings object to set auto loading of the images
* @param automatic @c EINA_TRUE to enable auto loading of the images
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_settings_loads_images_automatically_set(Ewk_Settings *settings, Eina_Bool automatic);
/**
* Returns whether the images can be loaded automatically or not.
*
* @param settings settings object to get auto loading of the images
*
* @return @c EINA_TRUE if the images are loaded automatically
* @c EINA_FALSE if not or on failure
*/
EAPI Eina_Bool ewk_settings_loads_images_automatically_get(const Ewk_Settings *settings);
/**
* Enables/disables developer extensions.
*
* By default, the developer extensions are disabled.
*
* @param settings settings object to set developer extensions
* @param enable @c EINA_TRUE to enable developer extensions
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_settings_developer_extras_enabled_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Queries if developer extensions are enabled.
*
* By default, the developer extensions are disabled.
*
* @param settings settings object to set developer extensions
*
* @return @c EINA_TRUE if developer extensions are enabled
@c EINA_FALSE if not or on failure
*/
EAPI Eina_Bool ewk_settings_developer_extras_enabled_get(const Ewk_Settings *settings);
/**
* Allow / Disallow file access from file:// URLs.
*
* By default, file access from file:// URLs is not allowed.
*
* @param settings settings object to set file access permission
* @param enable @c EINA_TRUE to enable file access permission
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_settings_file_access_from_file_urls_allowed_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Queries if file access from file:// URLs is allowed.
*
* By default, file access from file:// URLs is not allowed.
*
* @param settings settings object to query file access permission
*
* @return @c EINA_TRUE if file access from file:// URLs is allowed
* @c EINA_FALSE if not or on failure
*/
EAPI Eina_Bool ewk_settings_file_access_from_file_urls_allowed_get(const Ewk_Settings *settings);
/**
* Enables/disables frame flattening.
*
* By default, the frame flattening is disabled.
*
* @param settings settings object to set the frame flattening
* @param enable @c EINA_TRUE to enable the frame flattening
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*
* @see ewk_settings_enable_frame_flattening_get()
*/
EAPI Eina_Bool ewk_settings_frame_flattening_enabled_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Returns whether the frame flattening is enabled.
*
* The frame flattening is a feature which expands sub frames until all the frames become
* one scrollable page.
*
* @param settings settings object to get the frame flattening.
*
* @return @c EINA_TRUE if the frame flattening is enabled
* @c EINA_FALSE if not or on failure
*/
EAPI Eina_Bool ewk_settings_frame_flattening_enabled_get(const Ewk_Settings *settings);
/**
* Enables/disables DNS prefetching.
*
* By default, DNS prefetching is disabled.
*
* @param settings settings object to set DNS prefetching
* @param enable @c EINA_TRUE to enable DNS prefetching or
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*
* @see ewk_settings_DNS_prefetching_enabled_get()
*/
EAPI Eina_Bool ewk_settings_dns_prefetching_enabled_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Returns whether DNS prefetching is enabled or not.
*
* DNS prefetching is an attempt to resolve domain names before a user tries to follow a link.
*
* @param settings settings object to get DNS prefetching
*
* @return @c EINA_TRUE if DNS prefetching is enabled
* @c EINA_FALSE if not or on failure
*/
EAPI Eina_Bool ewk_settings_dns_prefetching_enabled_get(const Ewk_Settings *settings);
/**
* Sets a callback function used to notify the client when
* the continuous spell checking setting was changed by WebKit.
*
* Specifying of this callback is needed if the application wants to receive notifications
* once WebKit changes this setting.
* If the application is not interested, this callback is not set.
* Changing of this setting at the WebKit level can be made as a result of modifying
* options in a Context Menu by a user.
*
* @param cb a new callback function to set or @c NULL to invalidate the previous one
*/
EAPI void ewk_settings_continuous_spell_checking_change_cb_set(Ewk_Settings_Continuous_Spell_Checking_Change_Cb cb);
/**
* Queries if continuous spell checking is enabled.
*
* @return @c EINA_TRUE if continuous spell checking is enabled or @c EINA_FALSE if it's disabled
*/
EAPI Eina_Bool ewk_settings_continuous_spell_checking_enabled_get(void);
/**
* Enables/disables continuous spell checking.
*
* Additionally, this function calls a callback function (if defined) to notify
* the client about the change of the setting.
* This feature is disabled by default.
*
* @see ewk_settings_continuous_spell_checking_change_cb_set
*
* @param enable @c EINA_TRUE to enable continuous spell checking or @c EINA_FALSE to disable
*/
EAPI void ewk_settings_continuous_spell_checking_enabled_set(Eina_Bool enable);
/**
* Gets the the list of all available the spell checking languages to use.
*
* @see ewk_settings_spell_checking_languages_set
*
* @return the list with available spell checking languages, or @c NULL on failure
* the Eina_List and its items should be freed after, use eina_stringshare_del()
*/
EAPI Eina_List *ewk_settings_spell_checking_available_languages_get(void);
/**
* Sets @a languages as the list of languages to use by default WebKit
* implementation of spellchecker feature with Enchant library support.
*
* If @languages is @c NULL, the default language is used.
* If the default language can not be determined then any available dictionary will be used.
*
* @note This function invalidates the previously set languages.
* The dictionaries are requested asynchronously.
*
* @param languages a list of comma (',') separated language codes
* of the form 'en_US', ie, language_VARIANT, may be @c NULL.
*/
EAPI void ewk_settings_spell_checking_languages_set(const char *languages);
/**
* Gets the the list of the spell checking languages in use.
*
* @see ewk_settings_spell_checking_available_languages_get
* @see ewk_settings_spell_checking_languages_set
*
* @return the list with the spell checking languages in use,
* the Eina_List and its items should be freed after, use eina_stringshare_del()
*/
EAPI Eina_List *ewk_settings_spell_checking_languages_get(void);
/**
* Enables/disables the encoding detector.
*
* By default, the encoding detector is disabled.
*
* @param settings settings object to set the encoding detector
* @param enable @c EINA_TRUE to enable the encoding detector,
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_settings_encoding_detector_enabled_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Returns whether the encoding detector is enabled or not.
*
* @param settings settings object to query whether encoding detector is enabled
*
* @return @c EINA_TRUE if the encoding detector is enabled
* @c EINA_FALSE if not or on failure
*/
EAPI Eina_Bool ewk_settings_encoding_detector_enabled_get(const Ewk_Settings *settings);
/**
* Sets preferred minimum contents width which is used as default minimum contents width
* for non viewport meta element sites.
*
* By default, preferred minimum contents width is equal to @c 980.
*
* @param settings settings object to set the encoding detector
* @param enable @c EINA_TRUE to enable the encoding detector,
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_settings_preferred_minimum_contents_width_set(Ewk_Settings *settings, unsigned width);
/**
* Returns preferred minimum contents width or @c 0 on failure.
*
* @param settings settings object to query preferred minimum contents width
*
* @return preferred minimum contents width
* @c 0 on failure
*/
EAPI unsigned ewk_settings_preferred_minimum_contents_width_get(const Ewk_Settings *settings);
/**
* Enables/disables the offline application cache.
*
* By default, the offline application cache is enabled.
*
* @param settings settings object to set the offline application cache state
* @param enable @c EINA_TRUE to enable the offline application cache,
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_settings_offline_web_application_cache_enabled_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Returns whether the offline application cache is enabled or not.
*
* @param settings settings object to query whether offline application cache is enabled
*
* @return @c EINA_TRUE if the offline application cache is enabled
* @c EINA_FALSE if disabled or on failure
*/
EAPI Eina_Bool ewk_settings_offline_web_application_cache_enabled_get(const Ewk_Settings *settings);
/**
* Enables/disables if the scripts can open new windows.
*
* By default, the scripts can open new windows.
*
* @param settings settings object to set if the scripts can open new windows
* @param enable @c EINA_TRUE if the scripts can open new windows
* @c EINA_FALSE if not
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure (scripts are disabled)
*/
EAPI Eina_Bool ewk_settings_scripts_can_open_windows_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Returns whether the scripts can open new windows.
*
* @param settings settings object to query whether the scripts can open new windows
*
* @return @c EINA_TRUE if the scripts can open new windows
* @c EINA_FALSE if not or on failure (scripts are disabled)
*/
EAPI Eina_Bool ewk_settings_scripts_can_open_windows_get(const Ewk_Settings *settings);
/**
* Enables/disables the HTML5 local storage functionality.
*
* Local storage provides simple synchronous storage access.
* HTML5 local storage specification is available at
* http://dev.w3.org/html5/webstorage/.
*
* By default, the HTML5 local storage is enabled.
*
* @param settings settings object to set the HTML5 local storage state
* @param enable @c EINA_TRUE to enable HTML5 local storage,
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_settings_local_storage_enabled_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Returns whether the HTML5 local storage functionality is enabled or not.
*
* Local storage provides simple synchronous storage access.
* HTML5 local storage specification is available at
* http://dev.w3.org/html5/webstorage/.
*
* By default, the HTML5 local storage is enabled.
*
* @param settings settings object to query whether HTML5 local storage is enabled
*
* @return @c EINA_TRUE if the HTML5 local storage is enabled
* @c EINA_FALSE if disabled or on failure
*/
EAPI Eina_Bool ewk_settings_local_storage_enabled_get(const Ewk_Settings *settings);
#ifdef __cplusplus
}
#endif
#endif // ewk_settings_h
|