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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
|
// -*- c-basic-offset: 2 -*-
/*
* This file is part of the KDE libraries
* Copyright (C) 2000 Harri Porten (porten@kde.org)
* Copyright (C) 2001 Peter Kelly (pmk@post.com)
* Copyright (C) 2003 Apple Computer, Inc.
*
* 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; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "kjs_css.h"
#include "kjs_css.lut.h"
#include <dom/html_head.h> // for HTMLStyleElement
#include <css/css_base.h>
#include "kjs_dom.h"
#include <kdebug.h>
namespace KJS {
static TQString cssPropertyName( const Identifier &p, bool& hadPixelPrefix )
{
TQString prop = p.qstring();
int i = prop.length();
while ( --i ) {
char c = prop[i].latin1();
if ( c >= 'A' && c <= 'Z' )
prop.insert( i, '-' );
}
prop = prop.lower();
hadPixelPrefix = false;
if (prop.startsWith("css-")) {
prop = prop.mid(4);
} else if (prop.startsWith("pixel-")) {
prop = prop.mid(6);
hadPixelPrefix = true;
} else if (prop.startsWith("pos-")) {
prop = prop.mid(4);
hadPixelPrefix = true;
}
return prop;
}
/*
@begin DOMCSSStyleDeclarationProtoTable 7
getPropertyValue DOMCSSStyleDeclaration::GetPropertyValue DontDelete|Function 1
getPropertyCSSValue DOMCSSStyleDeclaration::GetPropertyCSSValue DontDelete|Function 1
removeProperty DOMCSSStyleDeclaration::RemoveProperty DontDelete|Function 1
getPropertyPriority DOMCSSStyleDeclaration::GetPropertyPriority DontDelete|Function 1
setProperty DOMCSSStyleDeclaration::SetProperty DontDelete|Function 3
item DOMCSSStyleDeclaration::Item DontDelete|Function 1
# IE names for it (#36063)
getAttribute DOMCSSStyleDeclaration::GetPropertyValue DontDelete|Function 1
removeAttribute DOMCSSStyleDeclaration::RemoveProperty DontDelete|Function 1
setAttribute DOMCSSStyleDeclaration::SetProperty DontDelete|Function 3
@end
@begin DOMCSSStyleDeclarationTable 3
cssText DOMCSSStyleDeclaration::CssText DontDelete
length DOMCSSStyleDeclaration::Length DontDelete|ReadOnly
parentRule DOMCSSStyleDeclaration::ParentRule DontDelete|ReadOnly
@end
*/
KJS_DEFINE_PROTOTYPE(DOMCSSStyleDeclarationProto)
IMPLEMENT_PROTOFUNC_DOM(DOMCSSStyleDeclarationProtoFunc)
KJS_IMPLEMENT_PROTOTYPE("DOMCSSStyleDeclaration", DOMCSSStyleDeclarationProto, DOMCSSStyleDeclarationProtoFunc)
IMPLEMENT_PSEUDO_CONSTRUCTOR(CSSStyleDeclarationPseudoCtor, "DOMCSSStyleDeclaration",DOMCSSStyleDeclarationProto)
const ClassInfo DOMCSSStyleDeclaration::info = { "CSSStyleDeclaration", 0, &DOMCSSStyleDeclarationTable, 0 };
DOMCSSStyleDeclaration::DOMCSSStyleDeclaration(ExecState *exec, const DOM::CSSStyleDeclaration& s)
: DOMObject(DOMCSSStyleDeclarationProto::self(exec)), styleDecl(s)
{ }
DOMCSSStyleDeclaration::~DOMCSSStyleDeclaration()
{
ScriptInterpreter::forgetDOMObject(styleDecl.handle());
}
bool DOMCSSStyleDeclaration::hasProperty(ExecState *exec, const Identifier &p) const
{
bool hadPixelPrefix;
TQString cssprop = cssPropertyName(p, hadPixelPrefix);
if (DOM::getPropertyID(cssprop.latin1(), cssprop.length()))
return true;
return ObjectImp::hasProperty(exec, p);
}
Value DOMCSSStyleDeclaration::tryGet(ExecState *exec, const Identifier &propertyName) const
{
#ifdef KJS_VERBOSE
kdDebug(6070) << "DOMCSSStyleDeclaration::tryGet " << propertyName.qstring() << endl;
#endif
const HashEntry* entry = Lookup::findEntry(&DOMCSSStyleDeclarationTable, propertyName);
if (entry)
switch (entry->value) {
case CssText:
return String(styleDecl.cssText());
case Length:
return Number(styleDecl.length());
case ParentRule:
return getDOMCSSRule(exec,styleDecl.parentRule());
default:
break;
}
// Look in the prototype (for functions) before assuming it's a name
Object proto = Object::dynamicCast(prototype());
if (proto.isValid() && proto.hasProperty(exec,propertyName))
return proto.get(exec,propertyName);
bool ok;
long unsigned int u = propertyName.toULong(&ok);
if (ok)
return String(DOM::CSSStyleDeclaration(styleDecl).item(u));
// pixelTop returns "CSS Top" as number value in unit pixels
// posTop returns "CSS top" as number value in unit pixels _if_ its a
// positioned element. if it is not a positioned element, return 0
// from MSIE documentation ### IMPLEMENT THAT (Dirk)
bool asNumber;
TQString p = cssPropertyName(propertyName, asNumber);
#ifdef KJS_VERBOSE
kdDebug(6070) << "DOMCSSStyleDeclaration: converting to css property name: " << p << ( asNumber ? "px" : "" ) << endl;
#endif
if (asNumber) {
DOM::CSSValue v = styleDecl.getPropertyCSSValue(p);
if ( !v.isNull() && v.cssValueType() == DOM::CSSValue::CSS_PRIMITIVE_VALUE)
return Number(static_cast<DOM::CSSPrimitiveValue>(v).getFloatValue(DOM::CSSPrimitiveValue::CSS_PX));
}
DOM::DOMString str = const_cast<DOM::CSSStyleDeclaration &>( styleDecl ).getPropertyValue(p);
if (!str.isNull())
return String(str);
// see if we know this css property, return empty then
if (DOM::getPropertyID(p.latin1(), p.length()))
return String(DOM::DOMString(""));
return DOMObject::tryGet(exec, propertyName);
}
void DOMCSSStyleDeclaration::tryPut(ExecState *exec, const Identifier &propertyName, const Value& value, int attr )
{
#ifdef KJS_VERBOSE
kdDebug(6070) << "DOMCSSStyleDeclaration::tryPut " << propertyName.qstring() << endl;
#endif
if (propertyName == "cssText") {
styleDecl.setCssText(value.toString(exec).string());
}
else {
bool pxSuffix;
TQString prop = cssPropertyName(propertyName, pxSuffix);
TQString propvalue = value.toString(exec).qstring();
if (pxSuffix)
propvalue += "px";
#ifdef KJS_VERBOSE
kdDebug(6070) << "DOMCSSStyleDeclaration: prop=" << prop << " propvalue=" << propvalue << endl;
#endif
// Look whether the property is known.d In that case add it as a CSS property.
if (DOM::getPropertyID(prop.latin1(), prop.length())) {
if (propvalue.isEmpty())
styleDecl.removeProperty(prop);
else {
int important = propvalue.find("!important", 0, false);
if (important == -1)
styleDecl.setProperty(prop, DOM::DOMString(propvalue), "");
else
styleDecl.setProperty(prop, DOM::DOMString(propvalue.left(important - 1)), "important");
}
}
else
// otherwise add it as a JS property
DOMObject::tryPut( exec, propertyName, value, attr );
}
}
Value DOMCSSStyleDeclarationProtoFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
{
KJS_CHECK_THIS( KJS::DOMCSSStyleDeclaration, thisObj );
DOM::CSSStyleDeclaration styleDecl = static_cast<DOMCSSStyleDeclaration *>(thisObj.imp())->toStyleDecl();
String str = args[0].toString(exec);
DOM::DOMString s = str.value().string();
switch (id) {
case DOMCSSStyleDeclaration::GetPropertyValue:
return String(styleDecl.getPropertyValue(s));
case DOMCSSStyleDeclaration::GetPropertyCSSValue:
return getDOMCSSValue(exec,styleDecl.getPropertyCSSValue(s));
case DOMCSSStyleDeclaration::RemoveProperty:
return String(styleDecl.removeProperty(s));
case DOMCSSStyleDeclaration::GetPropertyPriority:
return String(styleDecl.getPropertyPriority(s));
case DOMCSSStyleDeclaration::SetProperty:
styleDecl.setProperty(args[0].toString(exec).string(),
args[1].toString(exec).string(),
args[2].toString(exec).string());
return Undefined();
case DOMCSSStyleDeclaration::Item:
return String(styleDecl.item(args[0].toInteger(exec)));
default:
return Undefined();
}
}
Value getDOMCSSStyleDeclaration(ExecState *exec, const DOM::CSSStyleDeclaration& s)
{
return cacheDOMObject<DOM::CSSStyleDeclaration, KJS::DOMCSSStyleDeclaration>(exec, s);
}
// -------------------------------------------------------------------------
const ClassInfo DOMStyleSheet::info = { "StyleSheet", 0, &DOMStyleSheetTable, 0 };
/*
@begin DOMStyleSheetTable 7
type DOMStyleSheet::Type DontDelete|ReadOnly
disabled DOMStyleSheet::Disabled DontDelete
ownerNode DOMStyleSheet::OwnerNode DontDelete|ReadOnly
parentStyleSheet DOMStyleSheet::ParentStyleSheet DontDelete|ReadOnly
href DOMStyleSheet::Href DontDelete|ReadOnly
title DOMStyleSheet::Title DontDelete|ReadOnly
media DOMStyleSheet::Media DontDelete|ReadOnly
@end
*/
DOMStyleSheet::DOMStyleSheet(ExecState* exec, const DOM::StyleSheet& ss)
: DOMObject(exec->interpreter()->builtinObjectPrototype()), styleSheet(ss)
{
}
DOMStyleSheet::~DOMStyleSheet()
{
ScriptInterpreter::forgetDOMObject(styleSheet.handle());
}
Value DOMStyleSheet::tryGet(ExecState *exec, const Identifier &propertyName) const
{
return DOMObjectLookupGetValue<DOMStyleSheet,DOMObject>(exec,propertyName,&DOMStyleSheetTable,this);
}
Value DOMStyleSheet::getValueProperty(ExecState *exec, int token) const
{
switch (token) {
case Type:
return String(styleSheet.type());
case Disabled:
return Boolean(styleSheet.disabled());
case OwnerNode:
return getDOMNode(exec,styleSheet.ownerNode());
case ParentStyleSheet:
return getDOMStyleSheet(exec,styleSheet.parentStyleSheet());
case Href:
return String(styleSheet.href());
case Title:
return String(styleSheet.title());
case Media:
return getDOMMediaList(exec, styleSheet.media());
}
return Value();
}
void DOMStyleSheet::tryPut(ExecState *exec, const Identifier &propertyName, const Value& value, int attr)
{
if (propertyName == "disabled") {
styleSheet.setDisabled(value.toBoolean(exec));
}
else
DOMObject::tryPut(exec, propertyName, value, attr);
}
Value getDOMStyleSheet(ExecState *exec, const DOM::StyleSheet& ss)
{
DOMObject *ret;
if (ss.isNull())
return Null();
ScriptInterpreter* interp = static_cast<ScriptInterpreter *>(exec->interpreter());
if ((ret = interp->getDOMObject(ss.handle())))
return Value(ret);
else {
if (ss.isCSSStyleSheet()) {
DOM::CSSStyleSheet cs;
cs = ss;
ret = new DOMCSSStyleSheet(exec,cs);
}
else
ret = new DOMStyleSheet(exec,ss);
interp->putDOMObject(ss.handle(),ret);
return Value(ret);
}
}
// -------------------------------------------------------------------------
const ClassInfo DOMStyleSheetList::info = { "StyleSheetList", 0, &DOMStyleSheetListTable, 0 };
/*
@begin DOMStyleSheetListTable 2
length DOMStyleSheetList::Length DontDelete|ReadOnly
item DOMStyleSheetList::Item DontDelete|Function 1
@end
*/
IMPLEMENT_PROTOFUNC_DOM(DOMStyleSheetListFunc) // not really a proto, but doesn't matter
DOMStyleSheetList::DOMStyleSheetList(ExecState *exec, const DOM::StyleSheetList& ssl, const DOM::Document& doc)
: DOMObject(exec->interpreter()->builtinObjectPrototype()), styleSheetList(ssl), m_doc(doc)
{
}
DOMStyleSheetList::~DOMStyleSheetList()
{
ScriptInterpreter::forgetDOMObject(styleSheetList.handle());
}
Value DOMStyleSheetList::tryGet(ExecState *exec, const Identifier &p) const
{
#ifdef KJS_VERBOSE
kdDebug(6070) << "DOMStyleSheetList::tryGet " << p.qstring() << endl;
#endif
if (p == lengthPropertyName)
return Number(styleSheetList.length());
else if (p == "item")
return lookupOrCreateFunction<DOMStyleSheetListFunc>(exec,p,this,DOMStyleSheetList::Item,1,DontDelete|Function);
// Retrieve stylesheet by index
bool ok;
long unsigned int u = p.toULong(&ok);
if (ok)
return getDOMStyleSheet(exec, DOM::StyleSheetList(styleSheetList).item(u));
// IE also supports retrieving a stylesheet by name, using the name/id of the <style> tag
// (this is consistent with all the other collections)
#if 0
// Bad implementation because DOM::StyleSheet doesn't inherit DOM::Node
// so we can't use DOMNamedNodesCollection.....
// We could duplicate it for stylesheets though - worth it ?
// Other problem of this implementation: it doesn't look for the ID attribute!
DOM::NameNodeListImpl namedList( m_doc.documentElement().handle(), p.string() );
int len = namedList.length();
if ( len ) {
TQValueList<DOM::Node> styleSheets;
for ( int i = 0 ; i < len ; ++i ) {
DOM::HTMLStyleElement elem = DOM::Node(namedList.item(i));
if (!elem.isNull())
styleSheets.append(elem.sheet());
}
if ( styleSheets.count() == 1 ) // single result
return getDOMStyleSheet(exec, styleSheets[0]);
else if ( styleSheets.count() > 1 ) {
return new DOMNamedItemsCollection(exec,styleSheets);
}
}
#endif
// ### Bad implementation because returns a single element (are IDs always unique?)
// and doesn't look for name attribute (see implementation above).
// But unicity of stylesheet ids is good practice anyway ;)
DOM::DOMString pstr = p.string();
DOM::HTMLStyleElement styleElem = m_doc.getElementById( pstr );
if (!styleElem.isNull())
return getDOMStyleSheet(exec, styleElem.sheet());
return DOMObject::tryGet(exec, p);
}
Value KJS::DOMStyleSheetList::call(ExecState *exec, Object &thisObj, const List &args)
{
// This code duplication is necessary, DOMStyleSheetList isn't a DOMFunction
Value val;
try {
val = tryCall(exec, thisObj, args);
}
// pity there's no way to distinguish between these in JS code
catch (...) {
Object err = Error::create(exec, GeneralError, "Exception from DOMStyleSheetList");
exec->setException(err);
}
return val;
}
Value DOMStyleSheetList::tryCall(ExecState *exec, Object & /*thisObj*/, const List &args)
{
if (args.size() == 1) {
// support for styleSheets(<index>) and styleSheets(<name>)
return tryGet( exec, Identifier(args[0].toString(exec)) );
}
return Undefined();
}
Value getDOMStyleSheetList(ExecState *exec, const DOM::StyleSheetList& ssl, const DOM::Document& doc)
{
// Can't use the cacheDOMObject macro because of the doc argument
DOMObject *ret;
if (ssl.isNull())
return Null();
ScriptInterpreter* interp = static_cast<ScriptInterpreter *>(exec->interpreter());
if ((ret = interp->getDOMObject(ssl.handle())))
return Value(ret);
else {
ret = new DOMStyleSheetList(exec, ssl, doc);
interp->putDOMObject(ssl.handle(),ret);
return Value(ret);
}
}
Value DOMStyleSheetListFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
{
KJS_CHECK_THIS( KJS::DOMStyleSheetList, thisObj );
DOM::StyleSheetList styleSheetList = static_cast<DOMStyleSheetList *>(thisObj.imp())->toStyleSheetList();
if (id == DOMStyleSheetList::Item)
return getDOMStyleSheet(exec, styleSheetList.item(args[0].toInteger(exec)));
return Undefined();
}
// -------------------------------------------------------------------------
const ClassInfo DOMMediaList::info = { "MediaList", 0, &DOMMediaListTable, 0 };
/*
@begin DOMMediaListTable 2
mediaText DOMMediaList::MediaText DontDelete|ReadOnly
length DOMMediaList::Length DontDelete|ReadOnly
@end
@begin DOMMediaListProtoTable 3
item DOMMediaList::Item DontDelete|Function 1
deleteMedium DOMMediaList::DeleteMedium DontDelete|Function 1
appendMedium DOMMediaList::AppendMedium DontDelete|Function 1
@end
*/
KJS_DEFINE_PROTOTYPE(DOMMediaListProto)
IMPLEMENT_PROTOFUNC_DOM(DOMMediaListProtoFunc)
KJS_IMPLEMENT_PROTOTYPE("DOMMediaList", DOMMediaListProto, DOMMediaListProtoFunc)
DOMMediaList::DOMMediaList(ExecState *exec, const DOM::MediaList& ml)
: DOMObject(DOMMediaListProto::self(exec)), mediaList(ml) { }
DOMMediaList::~DOMMediaList()
{
ScriptInterpreter::forgetDOMObject(mediaList.handle());
}
Value DOMMediaList::tryGet(ExecState *exec, const Identifier &p) const
{
if (p == "mediaText")
return String(mediaList.mediaText());
else if (p == lengthPropertyName)
return Number(mediaList.length());
bool ok;
long unsigned int u = p.toULong(&ok);
if (ok)
return String(mediaList.item(u));
return DOMObject::tryGet(exec, p);
}
void DOMMediaList::tryPut(ExecState *exec, const Identifier &propertyName, const Value& value, int attr)
{
if (propertyName == "mediaText")
mediaList.setMediaText(value.toString(exec).string());
else
DOMObject::tryPut(exec, propertyName, value, attr);
}
Value getDOMMediaList(ExecState *exec, const DOM::MediaList& ml)
{
return cacheDOMObject<DOM::MediaList, KJS::DOMMediaList>(exec, ml);
}
Value KJS::DOMMediaListProtoFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
{
KJS_CHECK_THIS( KJS::DOMMediaList, thisObj );
DOM::MediaList mediaList = static_cast<DOMMediaList *>(thisObj.imp())->toMediaList();
switch (id) {
case DOMMediaList::Item:
return String(mediaList.item(args[0].toInteger(exec)));
case DOMMediaList::DeleteMedium:
mediaList.deleteMedium(args[0].toString(exec).string());
return Undefined();
case DOMMediaList::AppendMedium:
mediaList.appendMedium(args[0].toString(exec).string());
return Undefined();
default:
return Undefined();
}
}
// -------------------------------------------------------------------------
const ClassInfo DOMCSSStyleSheet::info = { "CSSStyleSheet", 0, &DOMCSSStyleSheetTable, 0 };
/*
@begin DOMCSSStyleSheetTable 2
ownerRule DOMCSSStyleSheet::OwnerRule DontDelete|ReadOnly
cssRules DOMCSSStyleSheet::CssRules DontDelete|ReadOnly
# MSIE extension
rules DOMCSSStyleSheet::Rules DontDelete|ReadOnly
@end
@begin DOMCSSStyleSheetProtoTable 2
insertRule DOMCSSStyleSheet::InsertRule DontDelete|Function 2
deleteRule DOMCSSStyleSheet::DeleteRule DontDelete|Function 1
# IE extensions
addRule DOMCSSStyleSheet::AddRule DontDelete|Function 3
removeRule DOMCSSStyleSheet::RemoveRule DontDelete|Function 1
@end
*/
KJS_DEFINE_PROTOTYPE(DOMCSSStyleSheetProto)
IMPLEMENT_PROTOFUNC_DOM(DOMCSSStyleSheetProtoFunc)
KJS_IMPLEMENT_PROTOTYPE("DOMCSSStyleSheet",DOMCSSStyleSheetProto,DOMCSSStyleSheetProtoFunc) // warning, use _WITH_PARENT if DOMStyleSheet gets a proto
DOMCSSStyleSheet::DOMCSSStyleSheet(ExecState *exec, const DOM::CSSStyleSheet& ss)
: DOMStyleSheet(DOMCSSStyleSheetProto::self(exec),ss) { }
DOMCSSStyleSheet::~DOMCSSStyleSheet()
{
}
Value DOMCSSStyleSheet::tryGet(ExecState *exec, const Identifier &p) const
{
DOM::CSSStyleSheet cssStyleSheet = static_cast<DOM::CSSStyleSheet>(styleSheet);
if (p == "ownerRule")
return getDOMCSSRule(exec,cssStyleSheet.ownerRule());
else if (p == "cssRules" || p == "rules" /* MSIE extension */)
return getDOMCSSRuleList(exec,cssStyleSheet.cssRules());
return DOMStyleSheet::tryGet(exec,p);
}
Value DOMCSSStyleSheetProtoFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
{
KJS_CHECK_THIS( KJS::DOMCSSStyleSheet, thisObj );
DOM::CSSStyleSheet styleSheet = static_cast<DOMCSSStyleSheet *>(thisObj.imp())->toCSSStyleSheet();
switch (id) {
case DOMCSSStyleSheet::InsertRule:
return Number(styleSheet.insertRule(args[0].toString(exec).string(),(long unsigned int)args[1].toInteger(exec)));
case DOMCSSStyleSheet::DeleteRule:
styleSheet.deleteRule(args[0].toInteger(exec));
return Undefined();
// IE extensions
case DOMCSSStyleSheet::AddRule: {
//Unpassed/-1 means append. Since insertRule is picky (throws exceptions)
//we adjust it to the desired length
unsigned long index = args[2].toInteger(exec);
unsigned long length = styleSheet.cssRules().length();
if (args[2].type() == UndefinedType) index = length;
if (index > length) index = length;
DOM::DOMString str = args[0].toString(exec).string() + " { " + args[1].toString(exec).string() + " } ";
return Number(styleSheet.insertRule(str,index));
}
case DOMCSSStyleSheet::RemoveRule: {
int index = args.size() > 0 ? args[0].toInteger(exec) : 0 /*first one*/;
styleSheet.deleteRule(index);
return Undefined();
}
default:
return Undefined();
}
}
// -------------------------------------------------------------------------
const ClassInfo DOMCSSRuleList::info = { "CSSRuleList", 0, &DOMCSSRuleListTable, 0 };
/*
@begin DOMCSSRuleListTable 3
length DOMCSSRuleList::Length DontDelete|ReadOnly
item DOMCSSRuleList::Item DontDelete|Function 1
@end
*/
IMPLEMENT_PROTOFUNC_DOM(DOMCSSRuleListFunc) // not really a proto, but doesn't matter
DOMCSSRuleList::DOMCSSRuleList(ExecState* exec, const DOM::CSSRuleList& rl)
: DOMObject(exec->interpreter()->builtinObjectPrototype()), cssRuleList(rl)
{
}
DOMCSSRuleList::~DOMCSSRuleList()
{
ScriptInterpreter::forgetDOMObject(cssRuleList.handle());
}
Value DOMCSSRuleList::tryGet(ExecState *exec, const Identifier &p) const
{
Value result;
if (p == lengthPropertyName)
return Number(cssRuleList.length());
else if (p == "item")
return lookupOrCreateFunction<DOMCSSRuleListFunc>(exec,p,this,DOMCSSRuleList::Item,1,DontDelete|Function);
bool ok;
long unsigned int u = p.toULong(&ok);
if (ok)
return getDOMCSSRule(exec,DOM::CSSRuleList(cssRuleList).item(u));
return DOMObject::tryGet(exec,p);
}
Value DOMCSSRuleListFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
{
KJS_CHECK_THIS( KJS::DOMCSSRuleList, thisObj );
DOM::CSSRuleList cssRuleList = static_cast<DOMCSSRuleList *>(thisObj.imp())->toCSSRuleList();
switch (id) {
case DOMCSSRuleList::Item:
return getDOMCSSRule(exec,cssRuleList.item(args[0].toInteger(exec)));
default:
return Undefined();
}
}
Value getDOMCSSRuleList(ExecState *exec, const DOM::CSSRuleList& rl)
{
return cacheDOMObject<DOM::CSSRuleList, KJS::DOMCSSRuleList>(exec, rl);
}
// -------------------------------------------------------------------------
IMPLEMENT_PROTOFUNC_DOM(DOMCSSRuleFunc) // Not a proto, but doesn't matter
DOMCSSRule::DOMCSSRule(ExecState* exec, const DOM::CSSRule& r)
: DOMObject(exec->interpreter()->builtinObjectPrototype()), cssRule(r)
{
}
DOMCSSRule::~DOMCSSRule()
{
ScriptInterpreter::forgetDOMObject(cssRule.handle());
}
const ClassInfo DOMCSSRule::info = { "CSSRule", 0, &DOMCSSRuleTable, 0 };
const ClassInfo DOMCSSRule::style_info = { "CSSStyleRule", &DOMCSSRule::info, &DOMCSSStyleRuleTable, 0 };
const ClassInfo DOMCSSRule::media_info = { "CSSMediaRule", &DOMCSSRule::info, &DOMCSSMediaRuleTable, 0 };
const ClassInfo DOMCSSRule::fontface_info = { "CSSFontFaceRule", &DOMCSSRule::info, &DOMCSSFontFaceRuleTable, 0 };
const ClassInfo DOMCSSRule::page_info = { "CSSPageRule", &DOMCSSRule::info, &DOMCSSPageRuleTable, 0 };
const ClassInfo DOMCSSRule::import_info = { "CSSImportRule", &DOMCSSRule::info, &DOMCSSImportRuleTable, 0 };
const ClassInfo DOMCSSRule::charset_info = { "CSSCharsetRule", &DOMCSSRule::info, &DOMCSSCharsetRuleTable, 0 };
const ClassInfo* DOMCSSRule::classInfo() const
{
switch (cssRule.type()) {
case DOM::CSSRule::STYLE_RULE:
return &style_info;
case DOM::CSSRule::MEDIA_RULE:
return &media_info;
case DOM::CSSRule::FONT_FACE_RULE:
return &fontface_info;
case DOM::CSSRule::PAGE_RULE:
return &page_info;
case DOM::CSSRule::IMPORT_RULE:
return &import_info;
case DOM::CSSRule::CHARSET_RULE:
return &charset_info;
case DOM::CSSRule::UNKNOWN_RULE:
default:
return &info;
}
}
/*
@begin DOMCSSRuleTable 4
type DOMCSSRule::Type DontDelete|ReadOnly
cssText DOMCSSRule::CssText DontDelete|ReadOnly
parentStyleSheet DOMCSSRule::ParentStyleSheet DontDelete|ReadOnly
parentRule DOMCSSRule::ParentRule DontDelete|ReadOnly
@end
@begin DOMCSSStyleRuleTable 2
selectorText DOMCSSRule::Style_SelectorText DontDelete
style DOMCSSRule::Style_Style DontDelete|ReadOnly
@end
@begin DOMCSSMediaRuleTable 4
media DOMCSSRule::Media_Media DontDelete|ReadOnly
cssRules DOMCSSRule::Media_CssRules DontDelete|ReadOnly
insertRule DOMCSSRule::Media_InsertRule DontDelete|Function 2
deleteRule DOMCSSRule::Media_DeleteRule DontDelete|Function 1
@end
@begin DOMCSSFontFaceRuleTable 1
style DOMCSSRule::FontFace_Style DontDelete|ReadOnly
@end
@begin DOMCSSPageRuleTable 2
selectorText DOMCSSRule::Page_SelectorText DontDelete
style DOMCSSRule::Page_Style DontDelete|ReadOnly
@end
@begin DOMCSSImportRuleTable 3
href DOMCSSRule::Import_Href DontDelete|ReadOnly
media DOMCSSRule::Import_Media DontDelete|ReadOnly
styleSheet DOMCSSRule::Import_StyleSheet DontDelete|ReadOnly
@end
@begin DOMCSSCharsetRuleTable 1
encoding DOMCSSRule::Charset_Encoding DontDelete
@end
*/
Value DOMCSSRule::tryGet(ExecState *exec, const Identifier &propertyName) const
{
#ifdef KJS_VERBOSE
kdDebug(6070) << "DOMCSSRule::tryGet " << propertyName.qstring() << endl;
#endif
const HashTable* table = classInfo()->propHashTable; // get the right hashtable
const HashEntry* entry = Lookup::findEntry(table, propertyName);
if (entry) {
if (entry->attr & Function)
return lookupOrCreateFunction<DOMCSSRuleFunc>(exec, propertyName, this, entry->value, entry->params, entry->attr);
return getValueProperty(exec, entry->value);
}
// Base CSSRule stuff or parent class forward, as usual
return DOMObjectLookupGet<DOMCSSRuleFunc, DOMCSSRule, DOMObject>(exec, propertyName, &DOMCSSRuleTable, this);
}
Value DOMCSSRule::getValueProperty(ExecState *exec, int token) const
{
switch (token) {
case Type:
return Number(cssRule.type());
case CssText:
return String(cssRule.cssText());
case ParentStyleSheet:
return getDOMStyleSheet(exec,cssRule.parentStyleSheet());
case ParentRule:
return getDOMCSSRule(exec,cssRule.parentRule());
// for DOM::CSSRule::STYLE_RULE:
case Style_SelectorText:
return String(static_cast<DOM::CSSStyleRule>(cssRule).selectorText());
case Style_Style:
return getDOMCSSStyleDeclaration(exec,static_cast<DOM::CSSStyleRule>(cssRule).style());
// for DOM::CSSRule::MEDIA_RULE:
case Media_Media:
return getDOMMediaList(exec,static_cast<DOM::CSSMediaRule>(cssRule).media());
case Media_CssRules:
return getDOMCSSRuleList(exec,static_cast<DOM::CSSMediaRule>(cssRule).cssRules());
// for DOM::CSSRule::FONT_FACE_RULE:
case FontFace_Style:
return getDOMCSSStyleDeclaration(exec,static_cast<DOM::CSSFontFaceRule>(cssRule).style());
// for DOM::CSSRule::PAGE_RULE:
case Page_SelectorText:
return String(static_cast<DOM::CSSPageRule>(cssRule).selectorText());
case Page_Style:
return getDOMCSSStyleDeclaration(exec,static_cast<DOM::CSSPageRule>(cssRule).style());
// for DOM::CSSRule::IMPORT_RULE:
case Import_Href:
return String(static_cast<DOM::CSSImportRule>(cssRule).href());
case Import_Media:
return getDOMMediaList(exec,static_cast<DOM::CSSImportRule>(cssRule).media());
case Import_StyleSheet:
return getDOMStyleSheet(exec,static_cast<DOM::CSSImportRule>(cssRule).styleSheet());
// for DOM::CSSRule::CHARSET_RULE:
case Charset_Encoding:
return String(static_cast<DOM::CSSCharsetRule>(cssRule).encoding());
default:
kdDebug(6070) << "WARNING: DOMCSSRule::getValueProperty unhandled token " << token << endl;
}
return Undefined();
}
void DOMCSSRule::tryPut(ExecState *exec, const Identifier &propertyName, const Value& value, int attr)
{
const HashTable* table = classInfo()->propHashTable; // get the right hashtable
const HashEntry* entry = Lookup::findEntry(table, propertyName);
if (entry) {
if (entry->attr & Function) // function: put as override property
{
ObjectImp::put(exec, propertyName, value, attr);
return;
}
else if ((entry->attr & ReadOnly) == 0) // let DOMObjectLookupPut print the warning if not
{
putValueProperty(exec, entry->value, value, attr);
return;
}
}
DOMObjectLookupPut<DOMCSSRule, DOMObject>(exec, propertyName, value, attr, &DOMCSSRuleTable, this);
}
void DOMCSSRule::putValueProperty(ExecState *exec, int token, const Value& value, int)
{
switch (token) {
// for DOM::CSSRule::STYLE_RULE:
case Style_SelectorText:
static_cast<DOM::CSSStyleRule>(cssRule).setSelectorText(value.toString(exec).string());
return;
// for DOM::CSSRule::PAGE_RULE:
case Page_SelectorText:
static_cast<DOM::CSSPageRule>(cssRule).setSelectorText(value.toString(exec).string());
return;
// for DOM::CSSRule::CHARSET_RULE:
case Charset_Encoding:
static_cast<DOM::CSSCharsetRule>(cssRule).setEncoding(value.toString(exec).string());
return;
default:
kdDebug(6070) << "WARNING: DOMCSSRule::putValueProperty unhandled token " << token << endl;
}
}
Value DOMCSSRuleFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
{
KJS_CHECK_THIS( KJS::DOMCSSRule, thisObj );
DOM::CSSRule cssRule = static_cast<DOMCSSRule *>(thisObj.imp())->toCSSRule();
if (cssRule.type() == DOM::CSSRule::MEDIA_RULE) {
DOM::CSSMediaRule rule = static_cast<DOM::CSSMediaRule>(cssRule);
if (id == DOMCSSRule::Media_InsertRule)
return Number(rule.insertRule(args[0].toString(exec).string(),args[1].toInteger(exec)));
else if (id == DOMCSSRule::Media_DeleteRule)
rule.deleteRule(args[0].toInteger(exec));
}
return Undefined();
}
Value getDOMCSSRule(ExecState *exec, const DOM::CSSRule& r)
{
return cacheDOMObject<DOM::CSSRule, KJS::DOMCSSRule>(exec, r);
}
// -------------------------------------------------------------------------
DOM::CSSRule toCSSRule(const Value& val)
{
Object obj = Object::dynamicCast(val);
if (!obj.isValid() || !obj.inherits(&DOMCSSRule::info))
return DOM::CSSRule();
const DOMCSSRule *dobj = static_cast<const DOMCSSRule*>(obj.imp());
return dobj->toCSSRule();
}
// -------------------------------------------------------------------------
const ClassInfo CSSRuleConstructor::info = { "CSSRuleConstructor", 0, &CSSRuleConstructorTable, 0 };
/*
@begin CSSRuleConstructorTable 7
UNKNOWN_RULE CSSRuleConstructor::UNKNOWN_RULE DontDelete|ReadOnly
STYLE_RULE CSSRuleConstructor::STYLE_RULE DontDelete|ReadOnly
CHARSET_RULE CSSRuleConstructor::CHARSET_RULE DontDelete|ReadOnly
IMPORT_RULE CSSRuleConstructor::IMPORT_RULE DontDelete|ReadOnly
MEDIA_RULE CSSRuleConstructor::MEDIA_RULE DontDelete|ReadOnly
FONT_FACE_RULE CSSRuleConstructor::FONT_FACE_RULE DontDelete|ReadOnly
PAGE_RULE CSSRuleConstructor::PAGE_RULE DontDelete|ReadOnly
@end
*/
CSSRuleConstructor::CSSRuleConstructor(ExecState *exec)
: DOMObject(exec->interpreter()->builtinObjectPrototype())
{
}
Value CSSRuleConstructor::tryGet(ExecState *exec, const Identifier &p) const
{
return DOMObjectLookupGetValue<CSSRuleConstructor,DOMObject>(exec,p,&CSSRuleConstructorTable,this);
}
Value CSSRuleConstructor::getValueProperty(ExecState *, int token) const
{
switch (token) {
case UNKNOWN_RULE:
return Number(DOM::CSSRule::UNKNOWN_RULE);
case STYLE_RULE:
return Number(DOM::CSSRule::STYLE_RULE);
case CHARSET_RULE:
return Number(DOM::CSSRule::CHARSET_RULE);
case IMPORT_RULE:
return Number(DOM::CSSRule::IMPORT_RULE);
case MEDIA_RULE:
return Number(DOM::CSSRule::MEDIA_RULE);
case FONT_FACE_RULE:
return Number(DOM::CSSRule::FONT_FACE_RULE);
case PAGE_RULE:
return Number(DOM::CSSRule::PAGE_RULE);
}
return Value();
}
Value getCSSRuleConstructor(ExecState *exec)
{
return cacheGlobalObject<CSSRuleConstructor>( exec, "[[cssRule.constructor]]" );
}
// -------------------------------------------------------------------------
const ClassInfo DOMCSSValue::info = { "CSSValue", 0, &DOMCSSValueTable, 0 };
/*
@begin DOMCSSValueTable 2
cssText DOMCSSValue::CssText DontDelete|ReadOnly
cssValueType DOMCSSValue::CssValueType DontDelete|ReadOnly
@end
*/
DOMCSSValue::DOMCSSValue(ExecState* exec, const DOM::CSSValue& val)
: DOMObject(exec->interpreter()->builtinObjectPrototype()), cssValue(val)
{
}
DOMCSSValue::~DOMCSSValue()
{
ScriptInterpreter::forgetDOMObject(cssValue.handle());
}
Value DOMCSSValue::tryGet(ExecState *exec, const Identifier &p) const
{
if (p == "cssText")
return String(cssValue.cssText());
else if (p == "cssValueType")
return Number(cssValue.cssValueType());
return DOMObject::tryGet(exec,p);
}
void DOMCSSValue::tryPut(ExecState *exec, const Identifier &propertyName, const Value& value, int attr)
{
if (propertyName == "cssText")
cssValue.setCssText(value.toString(exec).string());
else
DOMObject::tryPut(exec, propertyName, value, attr);
}
Value getDOMCSSValue(ExecState *exec, const DOM::CSSValue& v)
{
DOMObject *ret;
if (v.isNull())
return Null();
ScriptInterpreter* interp = static_cast<ScriptInterpreter *>(exec->interpreter());
if ((ret = interp->getDOMObject(v.handle())))
return Value(ret);
else {
if (v.isCSSValueList())
ret = new DOMCSSValueList(exec,v);
else if (v.isCSSPrimitiveValue())
ret = new DOMCSSPrimitiveValue(exec,v);
else
ret = new DOMCSSValue(exec,v);
interp->putDOMObject(v.handle(),ret);
return Value(ret);
}
}
// -------------------------------------------------------------------------
const ClassInfo CSSValueConstructor::info = { "CSSValueConstructor", 0, &CSSValueConstructorTable, 0 };
/*
@begin CSSValueConstructorTable 5
CSS_INHERIT CSSValueConstructor::CSS_INHERIT DontDelete|ReadOnly
CSS_PRIMITIVE_VALUE CSSValueConstructor::CSS_PRIMITIVE_VALUE DontDelete|ReadOnly
CSS_VALUE_LIST CSSValueConstructor::CSS_VALUE_LIST DontDelete|ReadOnly
CSS_CUSTOM CSSValueConstructor::CSS_CUSTOM DontDelete|ReadOnly
@end
*/
CSSValueConstructor::CSSValueConstructor(ExecState *exec)
: DOMObject(exec->interpreter()->builtinObjectPrototype())
{
}
Value CSSValueConstructor::tryGet(ExecState *exec, const Identifier &p) const
{
return DOMObjectLookupGetValue<CSSValueConstructor,DOMObject>(exec,p,&CSSValueConstructorTable,this);
}
Value CSSValueConstructor::getValueProperty(ExecState *, int token) const
{
switch (token) {
case CSS_INHERIT:
return Number(DOM::CSSValue::CSS_INHERIT);
case CSS_PRIMITIVE_VALUE:
return Number(DOM::CSSValue::CSS_PRIMITIVE_VALUE);
case CSS_VALUE_LIST:
return Number(DOM::CSSValue::CSS_VALUE_LIST);
case CSS_CUSTOM:
return Number(DOM::CSSValue::CSS_CUSTOM);
}
return Value();
}
Value getCSSValueConstructor(ExecState *exec)
{
return cacheGlobalObject<CSSValueConstructor>( exec, "[[cssValue.constructor]]" );
}
// -------------------------------------------------------------------------
const ClassInfo DOMCSSPrimitiveValue::info = { "CSSPrimitiveValue", 0, &DOMCSSPrimitiveValueTable, 0 };
/*
@begin DOMCSSPrimitiveValueTable 1
primitiveType DOMCSSPrimitiveValue::PrimitiveType DontDelete|ReadOnly
@end
@begin DOMCSSPrimitiveValueProtoTable 3
setFloatValue DOMCSSPrimitiveValue::SetFloatValue DontDelete|Function 2
getFloatValue DOMCSSPrimitiveValue::GetFloatValue DontDelete|Function 1
setStringValue DOMCSSPrimitiveValue::SetStringValue DontDelete|Function 2
getStringValue DOMCSSPrimitiveValue::GetStringValue DontDelete|Function 0
getCounterValue DOMCSSPrimitiveValue::GetCounterValue DontDelete|Function 0
getRectValue DOMCSSPrimitiveValue::GetRectValue DontDelete|Function 0
getRGBColorValue DOMCSSPrimitiveValue::GetRGBColorValue DontDelete|Function 0
@end
*/
KJS_DEFINE_PROTOTYPE(DOMCSSPrimitiveValueProto)
IMPLEMENT_PROTOFUNC_DOM(DOMCSSPrimitiveValueProtoFunc)
KJS_IMPLEMENT_PROTOTYPE("DOMCSSPrimitiveValue",DOMCSSPrimitiveValueProto,DOMCSSPrimitiveValueProtoFunc)
DOMCSSPrimitiveValue::DOMCSSPrimitiveValue(ExecState *exec, const DOM::CSSPrimitiveValue& v)
: DOMCSSValue(DOMCSSPrimitiveValueProto::self(exec), v) { }
Value DOMCSSPrimitiveValue::tryGet(ExecState *exec, const Identifier &p) const
{
if (p=="primitiveType")
return Number(static_cast<DOM::CSSPrimitiveValue>(cssValue).primitiveType());
return DOMObject::tryGet(exec,p);
}
Value DOMCSSPrimitiveValueProtoFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
{
KJS_CHECK_THIS( KJS::DOMCSSPrimitiveValue, thisObj );
DOM::CSSPrimitiveValue val = static_cast<DOMCSSPrimitiveValue *>(thisObj.imp())->toCSSPrimitiveValue();
switch (id) {
case DOMCSSPrimitiveValue::SetFloatValue:
val.setFloatValue(args[0].toInteger(exec),args[1].toNumber(exec));
return Undefined();
case DOMCSSPrimitiveValue::GetFloatValue:
return Number(val.getFloatValue(args[0].toInteger(exec)));
case DOMCSSPrimitiveValue::SetStringValue:
val.setStringValue(args[0].toInteger(exec),args[1].toString(exec).string());
return Undefined();
case DOMCSSPrimitiveValue::GetStringValue:
return String(val.getStringValue());
case DOMCSSPrimitiveValue::GetCounterValue:
return getDOMCounter(exec,val.getCounterValue());
case DOMCSSPrimitiveValue::GetRectValue:
return getDOMRect(exec,val.getRectValue());
case DOMCSSPrimitiveValue::GetRGBColorValue:
return getDOMRGBColor(exec,val.getRGBColorValue());
default:
return Undefined();
}
}
// -------------------------------------------------------------------------
const ClassInfo CSSPrimitiveValueConstructor::info = { "CSSPrimitiveValueConstructor", 0, &CSSPrimitiveValueConstructorTable, 0 };
/*
@begin CSSPrimitiveValueConstructorTable 27
CSS_UNKNOWN DOM::CSSPrimitiveValue::CSS_UNKNOWN DontDelete|ReadOnly
CSS_NUMBER DOM::CSSPrimitiveValue::CSS_NUMBER DontDelete|ReadOnly
CSS_PERCENTAGE DOM::CSSPrimitiveValue::CSS_PERCENTAGE DontDelete|ReadOnly
CSS_EMS DOM::CSSPrimitiveValue::CSS_EMS DontDelete|ReadOnly
CSS_EXS DOM::CSSPrimitiveValue::CSS_EXS DontDelete|ReadOnly
CSS_PX DOM::CSSPrimitiveValue::CSS_PX DontDelete|ReadOnly
CSS_CM DOM::CSSPrimitiveValue::CSS_CM DontDelete|ReadOnly
CSS_MM DOM::CSSPrimitiveValue::CSS_MM DontDelete|ReadOnly
CSS_IN DOM::CSSPrimitiveValue::CSS_IN DontDelete|ReadOnly
CSS_PT DOM::CSSPrimitiveValue::CSS_PT DontDelete|ReadOnly
CSS_PC DOM::CSSPrimitiveValue::CSS_PC DontDelete|ReadOnly
CSS_DEG DOM::CSSPrimitiveValue::CSS_DEG DontDelete|ReadOnly
CSS_RAD DOM::CSSPrimitiveValue::CSS_RAD DontDelete|ReadOnly
CSS_GRAD DOM::CSSPrimitiveValue::CSS_GRAD DontDelete|ReadOnly
CSS_MS DOM::CSSPrimitiveValue::CSS_MS DontDelete|ReadOnly
CSS_S DOM::CSSPrimitiveValue::CSS_S DontDelete|ReadOnly
CSS_HZ DOM::CSSPrimitiveValue::CSS_HZ DontDelete|ReadOnly
CSS_KHZ DOM::CSSPrimitiveValue::CSS_KHZ DontDelete|ReadOnly
CSS_DIMENSION DOM::CSSPrimitiveValue::CSS_DIMENSION DontDelete|ReadOnly
CSS_STRING DOM::CSSPrimitiveValue::CSS_STRING DontDelete|ReadOnly
CSS_URI DOM::CSSPrimitiveValue::CSS_URI DontDelete|ReadOnly
CSS_IDENT DOM::CSSPrimitiveValue::CSS_IDENT DontDelete|ReadOnly
CSS_ATTR DOM::CSSPrimitiveValue::CSS_ATTR DontDelete|ReadOnly
CSS_COUNTER DOM::CSSPrimitiveValue::CSS_COUNTER DontDelete|ReadOnly
CSS_RECT DOM::CSSPrimitiveValue::CSS_RECT DontDelete|ReadOnly
CSS_RGBCOLOR DOM::CSSPrimitiveValue::CSS_RGBCOLOR DontDelete|ReadOnly
@end
*/
Value CSSPrimitiveValueConstructor::tryGet(ExecState *exec, const Identifier &p) const
{
return DOMObjectLookupGetValue<CSSPrimitiveValueConstructor,CSSValueConstructor>(exec,p,&CSSPrimitiveValueConstructorTable,this);
}
Value CSSPrimitiveValueConstructor::getValueProperty(ExecState *, int token) const
{
// We use the token as the value to return directly
return Number(token);
}
Value getCSSPrimitiveValueConstructor(ExecState *exec)
{
return cacheGlobalObject<CSSPrimitiveValueConstructor>( exec, "[[cssPrimitiveValue.constructor]]" );
}
// -------------------------------------------------------------------------
const ClassInfo DOMCSSValueList::info = { "CSSValueList", 0, &DOMCSSValueListTable, 0 };
/*
@begin DOMCSSValueListTable 3
length DOMCSSValueList::Length DontDelete|ReadOnly
item DOMCSSValueList::Item DontDelete|Function 1
@end
*/
IMPLEMENT_PROTOFUNC_DOM(DOMCSSValueListFunc) // not really a proto, but doesn't matter
DOMCSSValueList::DOMCSSValueList(ExecState *exec, const DOM::CSSValueList& v)
: DOMCSSValue(exec, v) { }
Value DOMCSSValueList::tryGet(ExecState *exec, const Identifier &p) const
{
Value result;
DOM::CSSValueList valueList = static_cast<DOM::CSSValueList>(cssValue);
if (p == lengthPropertyName)
return Number(valueList.length());
else if (p == "item")
return lookupOrCreateFunction<DOMCSSValueListFunc>(exec,p,this,DOMCSSValueList::Item,1,DontDelete|Function);
bool ok;
long unsigned int u = p.toULong(&ok);
if (ok)
return getDOMCSSValue(exec,valueList.item(u));
return DOMCSSValue::tryGet(exec,p);
}
Value DOMCSSValueListFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
{
KJS_CHECK_THIS( KJS::DOMCSSValueList, thisObj );
DOM::CSSValueList valueList = static_cast<DOMCSSValueList *>(thisObj.imp())->toValueList();
switch (id) {
case DOMCSSValueList::Item:
return getDOMCSSValue(exec,valueList.item(args[0].toInteger(exec)));
default:
return Undefined();
}
}
// -------------------------------------------------------------------------
const ClassInfo DOMRGBColor::info = { "RGBColor", 0, &DOMRGBColorTable, 0 };
/*
@begin DOMRGBColorTable 3
red DOMRGBColor::Red DontDelete|ReadOnly
green DOMRGBColor::Green DontDelete|ReadOnly
blue DOMRGBColor::Blue DontDelete|ReadOnly
@end
*/
DOMRGBColor::DOMRGBColor(ExecState* exec, const DOM::RGBColor& c)
: DOMObject(exec->interpreter()->builtinObjectPrototype()), rgbColor(c)
{
}
DOMRGBColor::~DOMRGBColor()
{
//rgbColors.remove(rgbColor.handle());
}
Value DOMRGBColor::tryGet(ExecState *exec, const Identifier &p) const
{
return DOMObjectLookupGetValue<DOMRGBColor,DOMObject>(exec, p,
&DOMRGBColorTable,
this);
}
Value DOMRGBColor::getValueProperty(ExecState *exec, int token) const
{
switch (token) {
case Red:
return getDOMCSSValue(exec, rgbColor.red());
case Green:
return getDOMCSSValue(exec, rgbColor.green());
case Blue:
return getDOMCSSValue(exec, rgbColor.blue());
default:
return Value();
}
}
Value getDOMRGBColor(ExecState *exec, const DOM::RGBColor& c)
{
// ### implement equals for RGBColor since they're not refcounted objects
return Value(new DOMRGBColor(exec, c));
}
// -------------------------------------------------------------------------
const ClassInfo DOMRect::info = { "Rect", 0, &DOMRectTable, 0 };
/*
@begin DOMRectTable 4
top DOMRect::Top DontDelete|ReadOnly
right DOMRect::Right DontDelete|ReadOnly
bottom DOMRect::Bottom DontDelete|ReadOnly
left DOMRect::Left DontDelete|ReadOnly
@end
*/
DOMRect::DOMRect(ExecState *exec, const DOM::Rect& r)
: DOMObject(exec->interpreter()->builtinObjectPrototype()), rect(r)
{
}
DOMRect::~DOMRect()
{
ScriptInterpreter::forgetDOMObject(rect.handle());
}
Value DOMRect::tryGet(ExecState *exec, const Identifier &p) const
{
return DOMObjectLookupGetValue<DOMRect,DOMObject>(exec, p,
&DOMRectTable, this);
}
Value DOMRect::getValueProperty(ExecState *exec, int token) const
{
switch (token) {
case Top:
return getDOMCSSValue(exec, rect.top());
case Right:
return getDOMCSSValue(exec, rect.right());
case Bottom:
return getDOMCSSValue(exec, rect.bottom());
case Left:
return getDOMCSSValue(exec, rect.left());
default:
return Value();
}
}
Value getDOMRect(ExecState *exec, const DOM::Rect& r)
{
return cacheDOMObject<DOM::Rect, KJS::DOMRect>(exec, r);
}
// -------------------------------------------------------------------------
const ClassInfo DOMCounter::info = { "Counter", 0, &DOMCounterTable, 0 };
/*
@begin DOMCounterTable 3
identifier DOMCounter::identifier DontDelete|ReadOnly
listStyle DOMCounter::listStyle DontDelete|ReadOnly
separator DOMCounter::separator DontDelete|ReadOnly
@end
*/
DOMCounter::DOMCounter(ExecState *exec, const DOM::Counter& c)
: DOMObject(exec->interpreter()->builtinObjectPrototype()), counter(c)
{
}
DOMCounter::~DOMCounter()
{
ScriptInterpreter::forgetDOMObject(counter.handle());
}
Value DOMCounter::tryGet(ExecState *exec, const Identifier &p) const
{
return DOMObjectLookupGetValue<DOMCounter,DOMObject>(exec, p,
&DOMCounterTable, this);
}
Value DOMCounter::getValueProperty(ExecState *, int token) const
{
switch (token) {
case identifier:
return String(counter.identifier());
case listStyle:
return String(counter.listStyle());
case separator:
return String(counter.separator());
default:
return Value();
}
}
Value getDOMCounter(ExecState *exec, const DOM::Counter& c)
{
return cacheDOMObject<DOM::Counter, KJS::DOMCounter>(exec, c);
}
} //namespace KJS
|