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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
|
/*
Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "qwebpreferences_p.h"
#include "WebPageGroup.h"
#include "WebPageProxy.h"
#include "qquickwebview_p_p.h"
#include "qwebpreferences_p_p.h"
QWebPreferences* QWebPreferencesPrivate::createPreferences(QQuickWebViewPrivate* webViewPrivate)
{
QWebPreferences* prefs = new QWebPreferences;
prefs->d->webViewPrivate = webViewPrivate;
prefs->d->initializeDefaultFontSettings();
return prefs;
}
bool QWebPreferencesPrivate::testAttribute(QWebPreferencesPrivate::WebAttribute attr) const
{
switch (attr) {
case AutoLoadImages:
return preferences()->loadsImagesAutomatically();
#if ENABLE(FULLSCREEN_API)
case FullScreenEnabled:
return preferences()->fullScreenEnabled();
#endif
case JavascriptEnabled:
return preferences()->javaScriptEnabled();
case PluginsEnabled:
return preferences()->pluginsEnabled();
case OfflineWebApplicationCacheEnabled:
return preferences()->offlineWebApplicationCacheEnabled();
case LocalStorageEnabled:
return preferences()->localStorageEnabled();
case XSSAuditingEnabled:
return preferences()->xssAuditorEnabled();
case PrivateBrowsingEnabled:
return preferences()->privateBrowsingEnabled();
case DnsPrefetchEnabled:
return preferences()->dnsPrefetchingEnabled();
case FrameFlatteningEnabled:
return preferences()->frameFlatteningEnabled();
case DeveloperExtrasEnabled:
return preferences()->developerExtrasEnabled();
#if ENABLE(WEBGL)
case WebGLEnabled:
return preferences()->webGLEnabled();
#if ENABLE(CSS_SHADERS)
case CSSCustomFilterEnabled:
return preferences()->cssCustomFilterEnabled();
#endif
#endif
#if ENABLE(WEB_AUDIO)
case WebAudioEnabled:
return preferences()->webAudioEnabled();
#endif
#if ENABLE(SMOOTH_SCROLLING)
case ScrollAnimatorEnabled:
return preferences()->scrollAnimatorEnabled();
#endif
case CaretBrowsingEnabled:
return preferences()->caretBrowsingEnabled();
case NotificationsEnabled:
return preferences()->notificationsEnabled();
default:
ASSERT_NOT_REACHED();
return false;
}
}
void QWebPreferencesPrivate::setAttribute(QWebPreferencesPrivate::WebAttribute attr, bool enable)
{
switch (attr) {
case AutoLoadImages:
preferences()->setLoadsImagesAutomatically(enable);
break;
#if ENABLE(FULLSCREEN_API)
case FullScreenEnabled:
preferences()->setFullScreenEnabled(enable);
break;
#endif
case JavascriptEnabled:
preferences()->setJavaScriptEnabled(enable);
break;
case PluginsEnabled:
preferences()->setPluginsEnabled(enable);
break;
case OfflineWebApplicationCacheEnabled:
preferences()->setOfflineWebApplicationCacheEnabled(enable);
break;
case LocalStorageEnabled:
preferences()->setLocalStorageEnabled(enable);
break;
case XSSAuditingEnabled:
preferences()->setXSSAuditorEnabled(enable);
break;
case PrivateBrowsingEnabled:
preferences()->setPrivateBrowsingEnabled(enable);
break;
case DnsPrefetchEnabled:
preferences()->setDNSPrefetchingEnabled(enable);
break;
case FrameFlatteningEnabled:
preferences()->setFrameFlatteningEnabled(enable);
case DeveloperExtrasEnabled:
preferences()->setDeveloperExtrasEnabled(enable);
break;
#if ENABLE(WEBGL)
case WebGLEnabled:
preferences()->setWebGLEnabled(enable);
break;
#if ENABLE(CSS_SHADERS)
case CSSCustomFilterEnabled:
preferences()->setCSSCustomFilterEnabled(enable);
break;
#endif
#endif
#if ENABLE(WEB_AUDIO)
case WebAudioEnabled:
preferences()->setWebAudioEnabled(enable);
break;
#endif
#if ENABLE(SMOOTH_SCROLLING)
case ScrollAnimatorEnabled:
preferences()->setScrollAnimatorEnabled(enable);
break;
#endif
case CaretBrowsingEnabled:
// FIXME: Caret browsing doesn't make much sense in touch mode.
preferences()->setCaretBrowsingEnabled(enable);
break;
case NotificationsEnabled:
preferences()->setNotificationsEnabled(enable);
break;
default:
ASSERT_NOT_REACHED();
}
}
void QWebPreferencesPrivate::initializeDefaultFontSettings()
{
setFontSize(MinimumFontSize, 0);
setFontSize(DefaultFontSize, 16);
setFontSize(DefaultFixedFontSize, 13);
QFont defaultFont;
defaultFont.setStyleHint(QFont::Serif);
setFontFamily(StandardFont, defaultFont.defaultFamily());
setFontFamily(SerifFont, defaultFont.defaultFamily());
defaultFont.setStyleHint(QFont::Fantasy);
setFontFamily(FantasyFont, defaultFont.defaultFamily());
defaultFont.setStyleHint(QFont::Cursive);
setFontFamily(CursiveFont, defaultFont.defaultFamily());
defaultFont.setStyleHint(QFont::SansSerif);
setFontFamily(SansSerifFont, defaultFont.defaultFamily());
defaultFont.setStyleHint(QFont::Monospace);
setFontFamily(FixedFont, defaultFont.defaultFamily());
}
void QWebPreferencesPrivate::setFontFamily(QWebPreferencesPrivate::FontFamily which, const QString& family)
{
switch (which) {
case StandardFont:
preferences()->setStandardFontFamily(family);
break;
case FixedFont:
preferences()->setFixedFontFamily(family);
break;
case SerifFont:
preferences()->setSerifFontFamily(family);
break;
case SansSerifFont:
preferences()->setSansSerifFontFamily(family);
break;
case CursiveFont:
preferences()->setCursiveFontFamily(family);
break;
case FantasyFont:
preferences()->setFantasyFontFamily(family);
break;
default:
break;
}
}
QString QWebPreferencesPrivate::fontFamily(QWebPreferencesPrivate::FontFamily which) const
{
switch (which) {
case StandardFont:
return preferences()->standardFontFamily();
case FixedFont:
return preferences()->fixedFontFamily();
case SerifFont:
return preferences()->serifFontFamily();
case SansSerifFont:
return preferences()->sansSerifFontFamily();
case CursiveFont:
return preferences()->cursiveFontFamily();
case FantasyFont:
return preferences()->fantasyFontFamily();
default:
return QString();
}
}
void QWebPreferencesPrivate::setFontSize(QWebPreferencesPrivate::FontSizeType type, unsigned size)
{
switch (type) {
case MinimumFontSize:
preferences()->setMinimumFontSize(size);
break;
case DefaultFontSize:
preferences()->setDefaultFontSize(size);
break;
case DefaultFixedFontSize:
preferences()->setDefaultFixedFontSize(size);
break;
default:
ASSERT_NOT_REACHED();
}
}
unsigned QWebPreferencesPrivate::fontSize(QWebPreferencesPrivate::FontSizeType type) const
{
switch (type) {
case MinimumFontSize:
return preferences()->minimumFontSize();
case DefaultFontSize:
return preferences()->defaultFontSize();
case DefaultFixedFontSize:
return preferences()->defaultFixedFontSize();
default:
ASSERT_NOT_REACHED();
return false;
}
}
QWebPreferences::QWebPreferences()
: d(new QWebPreferencesPrivate)
{
}
QWebPreferences::~QWebPreferences()
{
delete d;
}
bool QWebPreferences::autoLoadImages() const
{
return d->testAttribute(QWebPreferencesPrivate::AutoLoadImages);
}
void QWebPreferences::setAutoLoadImages(bool enable)
{
d->setAttribute(QWebPreferencesPrivate::AutoLoadImages, enable);
emit autoLoadImagesChanged();
}
bool QWebPreferences::fullScreenEnabled() const
{
#if ENABLE(FULLSCREEN_API)
return d->testAttribute(QWebPreferencesPrivate::FullScreenEnabled);
#else
return false;
#endif
}
void QWebPreferences::setFullScreenEnabled(bool enable)
{
#if ENABLE(FULLSCREEN_API)
d->setAttribute(QWebPreferencesPrivate::FullScreenEnabled, enable);
emit fullScreenEnabledChanged();
#else
UNUSED_PARAM(enable);
#endif
}
bool QWebPreferences::javascriptEnabled() const
{
return d->testAttribute(QWebPreferencesPrivate::JavascriptEnabled);
}
void QWebPreferences::setJavascriptEnabled(bool enable)
{
d->setAttribute(QWebPreferencesPrivate::JavascriptEnabled, enable);
emit javascriptEnabledChanged();
}
bool QWebPreferences::pluginsEnabled() const
{
return d->testAttribute(QWebPreferencesPrivate::PluginsEnabled);
}
void QWebPreferences::setPluginsEnabled(bool enable)
{
d->setAttribute(QWebPreferencesPrivate::PluginsEnabled, enable);
emit pluginsEnabledChanged();
}
bool QWebPreferences::offlineWebApplicationCacheEnabled() const
{
return d->testAttribute(QWebPreferencesPrivate::OfflineWebApplicationCacheEnabled);
}
void QWebPreferences::setOfflineWebApplicationCacheEnabled(bool enable)
{
d->setAttribute(QWebPreferencesPrivate::OfflineWebApplicationCacheEnabled, enable);
emit offlineWebApplicationCacheEnabledChanged();
}
bool QWebPreferences::localStorageEnabled() const
{
return d->testAttribute(QWebPreferencesPrivate::LocalStorageEnabled);
}
void QWebPreferences::setLocalStorageEnabled(bool enable)
{
d->setAttribute(QWebPreferencesPrivate::LocalStorageEnabled, enable);
emit localStorageEnabledChanged();
}
bool QWebPreferences::xssAuditingEnabled() const
{
return d->testAttribute(QWebPreferencesPrivate::XSSAuditingEnabled);
}
void QWebPreferences::setXssAuditingEnabled(bool enable)
{
d->setAttribute(QWebPreferencesPrivate::XSSAuditingEnabled, enable);
emit xssAuditingEnabledChanged();
}
bool QWebPreferences::privateBrowsingEnabled() const
{
return d->testAttribute(QWebPreferencesPrivate::PrivateBrowsingEnabled);
}
void QWebPreferences::setPrivateBrowsingEnabled(bool enable)
{
d->setAttribute(QWebPreferencesPrivate::PrivateBrowsingEnabled, enable);
emit privateBrowsingEnabledChanged();
}
bool QWebPreferences::dnsPrefetchEnabled() const
{
return d->testAttribute(QWebPreferencesPrivate::DnsPrefetchEnabled);
}
void QWebPreferences::setDnsPrefetchEnabled(bool enable)
{
d->setAttribute(QWebPreferencesPrivate::DnsPrefetchEnabled, enable);
emit dnsPrefetchEnabledChanged();
}
bool QWebPreferences::developerExtrasEnabled() const
{
return d->testAttribute(QWebPreferencesPrivate::DeveloperExtrasEnabled);
}
void QWebPreferences::setDeveloperExtrasEnabled(bool enable)
{
d->setAttribute(QWebPreferencesPrivate::DeveloperExtrasEnabled, enable);
emit developerExtrasEnabledChanged();
}
bool QWebPreferences::navigatorQtObjectEnabled() const
{
return d->webViewPrivate->navigatorQtObjectEnabled();
}
void QWebPreferences::setNavigatorQtObjectEnabled(bool enable)
{
if (enable == navigatorQtObjectEnabled())
return;
d->webViewPrivate->setNavigatorQtObjectEnabled(enable);
emit navigatorQtObjectEnabledChanged();
}
bool QWebPreferences::frameFlatteningEnabled() const
{
return d->testAttribute(QWebPreferencesPrivate::FrameFlatteningEnabled);
}
void QWebPreferences::setFrameFlatteningEnabled(bool enable)
{
d->setAttribute(QWebPreferencesPrivate::FrameFlatteningEnabled, enable);
emit frameFlatteningEnabledChanged();
}
QString QWebPreferences::standardFontFamily() const
{
return d->fontFamily(QWebPreferencesPrivate::StandardFont);
}
void QWebPreferences::setStandardFontFamily(const QString& family)
{
d->setFontFamily(QWebPreferencesPrivate::StandardFont, family);
emit standardFontFamilyChanged();
}
QString QWebPreferences::fixedFontFamily() const
{
return d->fontFamily(QWebPreferencesPrivate::FixedFont);
}
void QWebPreferences::setFixedFontFamily(const QString& family)
{
d->setFontFamily(QWebPreferencesPrivate::FixedFont, family);
emit fixedFontFamilyChanged();
}
QString QWebPreferences::serifFontFamily() const
{
return d->fontFamily(QWebPreferencesPrivate::SerifFont);
}
void QWebPreferences::setSerifFontFamily(const QString& family)
{
d->setFontFamily(QWebPreferencesPrivate::SerifFont, family);
emit serifFontFamilyChanged();
}
QString QWebPreferences::sansSerifFontFamily() const
{
return d->fontFamily(QWebPreferencesPrivate::SansSerifFont);
}
void QWebPreferences::setSansSerifFontFamily(const QString& family)
{
d->setFontFamily(QWebPreferencesPrivate::SansSerifFont, family);
emit sansSerifFontFamilyChanged();
}
QString QWebPreferences::cursiveFontFamily() const
{
return d->fontFamily(QWebPreferencesPrivate::CursiveFont);
}
void QWebPreferences::setCursiveFontFamily(const QString& family)
{
d->setFontFamily(QWebPreferencesPrivate::CursiveFont, family);
emit cursiveFontFamilyChanged();
}
QString QWebPreferences::fantasyFontFamily() const
{
return d->fontFamily(QWebPreferencesPrivate::FantasyFont);
}
void QWebPreferences::setFantasyFontFamily(const QString& family)
{
d->setFontFamily(QWebPreferencesPrivate::FantasyFont, family);
emit fantasyFontFamilyChanged();
}
unsigned QWebPreferences::minimumFontSize() const
{
return d->fontSize(QWebPreferencesPrivate::MinimumFontSize);
}
void QWebPreferences::setMinimumFontSize(unsigned size)
{
d->setFontSize(QWebPreferencesPrivate::MinimumFontSize, size);
emit minimumFontSizeChanged();
}
unsigned QWebPreferences::defaultFontSize() const
{
return d->fontSize(QWebPreferencesPrivate::DefaultFontSize);
}
void QWebPreferences::setDefaultFontSize(unsigned size)
{
d->setFontSize(QWebPreferencesPrivate::DefaultFontSize, size);
emit defaultFontSizeChanged();
}
unsigned QWebPreferences::defaultFixedFontSize() const
{
return d->fontSize(QWebPreferencesPrivate::DefaultFixedFontSize);
}
void QWebPreferences::setDefaultFixedFontSize(unsigned size)
{
d->setFontSize(QWebPreferencesPrivate::DefaultFixedFontSize, size);
emit defaultFixedFontSizeChanged();
}
bool QWebPreferences::webGLEnabled() const
{
#if ENABLE(WEBGL)
return d->testAttribute(QWebPreferencesPrivate::WebGLEnabled);
#else
return false;
#endif
}
void QWebPreferences::setWebGLEnabled(bool enable)
{
#if ENABLE(WEBGL)
d->setAttribute(QWebPreferencesPrivate::WebGLEnabled, enable);
emit webGLEnabledChanged();
#else
UNUSED_PARAM(enable);
#endif
}
bool QWebPreferences::webAudioEnabled() const
{
#if ENABLE(WEB_AUDIO)
return d->testAttribute(QWebPreferencesPrivate::WebAudioEnabled);
#else
return false;
#endif
}
void QWebPreferences::setWebAudioEnabled(bool enable)
{
#if ENABLE(WEB_AUDIO)
d->setAttribute(QWebPreferencesPrivate::WebAudioEnabled, enable);
emit webAudioEnabledChanged();
#else
UNUSED_PARAM(enable);
#endif
}
bool QWebPreferences::scrollAnimatorEnabled() const
{
#if ENABLE(SMOOTH_SCROLLING)
return d->testAttribute(QWebPreferencesPrivate::ScrollAnimatorEnabled);
#else
return false;
#endif
}
void QWebPreferences::setScrollAnimatorEnabled(bool enable)
{
#if ENABLE(SMOOTH_SCROLLING)
d->setAttribute(QWebPreferencesPrivate::ScrollAnimatorEnabled, enable);
emit scrollAnimatorEnabledChanged();
#else
UNUSED_PARAM(enable);
#endif
}
bool QWebPreferences::caretBrowsingEnabled() const
{
return d->testAttribute(QWebPreferencesPrivate::CaretBrowsingEnabled);
}
void QWebPreferences::setCaretBrowsingEnabled(bool enable)
{
d->setAttribute(QWebPreferencesPrivate::CaretBrowsingEnabled, enable);
emit caretBrowsingEnabledChanged();
}
bool QWebPreferences::notificationsEnabled() const
{
return d->testAttribute(QWebPreferencesPrivate::NotificationsEnabled);
}
void QWebPreferences::setNotificationsEnabled(bool enable)
{
d->setAttribute(QWebPreferencesPrivate::NotificationsEnabled, enable);
emit notificationsEnabledChanged();
}
WebKit::WebPreferences* QWebPreferencesPrivate::preferences() const
{
return webViewPrivate->webPageProxy->pageGroup()->preferences();
}
QWebPreferencesPrivate* QWebPreferencesPrivate::get(QWebPreferences* preferences)
{
return preferences->d;
}
|