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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
|
/*
* 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;
/**
* 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);
/**
* 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);
/**
* Toggles plug-ins support.
*
* By default, plug-ins support is enabled.
*
* @param settings settings object to set plug-ins support
* @param enable @c EINA_TRUE to enable plug-ins support
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_settings_plugins_enabled_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Returns whether plug-ins support is enabled or not.
*
* @param settings settings object to query whether plug-ins support is enabled
*
* @return @c EINA_TRUE if plug-ins support is enabled
* @c EINA_FALSE if not or on failure
*/
EAPI Eina_Bool ewk_settings_plugins_enabled_get(const Ewk_Settings *settings);
/**
* Sets the default font size.
*
* By default, the default font size is @c 16.
*
* @param settings settings object to set the default font size
* @param size a new default font size to set
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_settings_default_font_size_set(Ewk_Settings *settings, int size);
/**
* Returns the default font size.
*
* @param settings settings object to get the default font size
*
* @return @c the default font size or @c 0 on failure
*/
EAPI int ewk_settings_default_font_size_get(const Ewk_Settings *settings);
/**
* Enables/disables private browsing.
*
* By default, private browsing is disabled.
*
* @param settings settings object to set private browsing
* @param enable @c EINA_TRUE to enable private browsing
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*/
EAPI Eina_Bool ewk_settings_private_browsing_enabled_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Returns whether private browsing is enabled or not.
*
* Private Browsing allows a user to browse the Internet without saving any information
* about which sites and pages a user has visited.
*
* @param settings settings object to query whether private browsing is enabled
*
* @return @c EINA_TRUE if private browsing is enabled
* @c EINA_FALSE if not or on failure
*/
EAPI Eina_Bool ewk_settings_private_browsing_enabled_get(const Ewk_Settings *settings);
/**
* Enables/disables text autosizing.
*
* By default, the text autosizing is disabled.
*
* @param settings settings object to set the text autosizing
* @param enable @c EINA_TRUE to enable the text autosizing
* @c EINA_FALSE to disable
*
* @return @c EINA_TRUE on success or @c EINA_FALSE on failure
*
* @see ewk_settings_text_autosizing_enabled_get()
*/
EAPI Eina_Bool ewk_settings_text_autosizing_enabled_set(Ewk_Settings *settings, Eina_Bool enable);
/**
* Returns whether the text autosizing is enabled.
*
* The text autosizing is a feature which adjusts the font size of text in wide
* columns, and makes text more legible.
*
* @param settings settings object to query whether text autosizing is enabled
*
* @return @c EINA_TRUE if the text autosizing is enabled
* @c EINA_FALSE if not or on failure
*/
EAPI Eina_Bool ewk_settings_text_autosizing_enabled_get(const Ewk_Settings *settings);
#ifdef __cplusplus
}
#endif
#endif // ewk_settings_h
|