summaryrefslogtreecommitdiffstats
path: root/src/tools/qfeatures.txt
blob: af6f620465ad8840a875dd2017622d05866f65a0 (plain)
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
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
Feature: WORKSPACE
Section: Widgets
Requires: SCROLLBAR VBOX TITLEBAR RESIZEHANDLER POPUPMENU LABEL TOOLBUTTON MAINWINDOW TOOLBAR MENUBAR
Name: QWorkSpace
SeeAlso: ???

Feature: WHEELEVENT
Section: Kernel
Requires:
Name: Wheel-mouse events
SeeAlso: ???

Feature: WMATRIX
Section: Data structures
Requires:
Name: QWMatrix
SeeAlso: ???

Feature: STL
Section: Data structures
Requires:
Name: Standard template library compatiblity
SeeAlso: ???

Feature: CANVAS
Section: Widgets
Requires: SCROLLVIEW BEZIER
Name: QCanvas
SeeAlso: ???

Feature: TOOLBOX
Section: Widgets
Requires: ICONSET SCROLLVIEW TOOLTIP LAYOUT TOOLBUTTON
Name: Tool box
SeeAlso: ???


Feature: TABLE
Section: Widgets
Requires: COMBOBOX HEADER CHECKBOX
Name: QTable
SeeAlso: ???

Feature: XML
Section: Data structures
Requires: TEXTSTREAM TEXTCODEC REGEXP_CAPTURE
Name: XML
SeeAlso: ???

Feature: SQL
Section: Database
Requires: STRINGLIST REGEXP_CAPTURE VARIANT SPRINTF DATESTRING
Name: SQL classes
SeeAlso: ???

Feature: SQL_FORM
Section: Database
Requires: SQL PROPERTIES
Name: QSqlForm
SeeAlso: ???

Feature: SQL_EDIT_WIDGETS
Section: Database
Requires: SQL SPINBOX COMBOBOX CHECKBOX DATETIMEEDIT
Name: SQL value editor widgets
SeeAlso: ???

Feature: SQL_VIEW_WIDGETS
Section: Database
Requires: SQL_FORM SQL_EDIT_WIDGETS TABLE
Name: SQL table widgets
SeeAlso: ???

Feature: STRINGLIST
Section: Data structures
Requires:
Name: QStringList
SeeAlso: ???

Feature: REGEXP
Section: Data structures
Requires:
Name: Regular expression capture
SeeAlso: ???

Feature: REGEXP_CAPTURE
Section: Data structures
Requires: REGEXP STRINGLIST
Name: Regular expression capture
SeeAlso: ???

Feature: TEMPLATE_VARIANT
Section: Data structures
Requires: VARIANT STRINGLIST
Name: Template classes in QVariant
SeeAlso: ???

Feature: VARIANT
Section: Data structures
Requires:
Name: QVariant
SeeAlso: ???

Feature: REGEXP_OPTIM
Section: Data structures
Requires: REGEXP
Name: Regular expression optimization
SeeAlso: ???

Feature: REGEXP_LOOKAHEAD
Section: Data structures
Requires: REGEXP
Name: Regular expression lookahead
SeeAlso: ???

Feature: REGEXP_INTERVAL
Section: Data structures
Requires: REGEXP
Name: Regular expression interval
SeeAlso: ???

Feature: REGEXP_ESCAPE
Section: Data structures
Requires: REGEXP
Name: Regular expression escape
SeeAlso: ???

Feature: REGEXP_CCLASS
Section: Data structures
Requires: REGEXP
Name: Regular expression character-class
SeeAlso: ???

Feature: REGEXP_BACKREF
Section: Data structures
Requires: REGEXP
Name: Regular expression back-reference
SeeAlso: ???

Feature: REGEXP_ANCHOR_ALT
Section: Data structures
Requires: REGEXP
Name: Regular expression anchors
SeeAlso: ???

Feature: REGEXP_WILDCARD
Section: Data structures
Requires: REGEXP
Name: Regular expression wildcard
SeeAlso: ???

Feature: SPRINTF
Section: Data structures
Requires: REGEXP
Name: QString::sprintf()
SeeAlso: ???

Feature: QUUID_STRING
Section: Data structures
Requires: STRINGLIST
Name: Convert UUID to/from string
SeeAlso: ???

Feature: TEXTDATE
Section: Data structures
Requires: STRINGLIST DATESTRING
Name: Month and day names in dates
SeeAlso: ???

Feature: DATESTRING
Section: Data structures
Requires:
Name: QDate/QTime/QDateTime toString() and fromString()
SeeAlso: ???

Feature: ICONSET
Section: Images
Requires: IMAGEIO IMAGE_SMOOTHSCALE PALETTE IMAGE_HEURISTIC_MASK
Name: QIconSet
SeeAlso: ???

Feature: DIR
Section: File I/O
Requires: STRINGLIST REGEXP
Name: QDir
SeeAlso: ???

Feature: PALETTE
Section: Kernel
Requires:
Name: Palettes
SeeAlso: ???

Feature: TEXTSTREAM
Section: File I/O
Requires:
Name: QTextStream
SeeAlso: ???

Feature: DATASTREAM
Section: File I/O
Requires:
Name: QDataStream
SeeAlso: ???

Feature: LIBRARY
Section: File I/O
Requires: REGEXP
Name: Shared library wrapper
SeeAlso: ???

Feature: COMPONENT
Section: File I/O
Requires: QUUID_STRING SETTINGS SPRINTF LIBRARY DATESTRING
Name: Dynamic module linking
SeeAlso: ???

Feature: SETTINGS
Section: File I/O
Requires: DIR TEXTSTREAM REGEXP_CAPTURE
Name: Persistent application settings
SeeAlso: ???

Feature: SIGNALMAPPER
Section: Widgets
Requires:
Name: QSignalMapper
SeeAlso: ???

Feature: IMAGEIO
Section: Images
Requires: REGEXP
Name: Image formats
SeeAlso: ???

Feature: IMAGEIO_BMP
Section: Images
Requires: IMAGEIO DATASTREAM
Name: BMP image I/O
SeeAlso: ???

Feature: IMAGEIO_PPM
Section: Images
Requires: IMAGEIO
Name: PPM image I/O
SeeAlso: ???

Feature: IMAGEIO_XBM
Section: Images
Requires: IMAGEIO
Name: XBM image I/O
SeeAlso: ???

Feature: IMAGEIO_XPM
Section: Images
Requires: IMAGEIO SPRINTF TEXTSTREAM
Name: XPM image I/O
SeeAlso: ???

Feature: IMAGEIO_PNG
Section: Images
Requires: IMAGEIO
Name: PNG image I/O
SeeAlso: ???

Feature: IMAGEIO_MNG
Section: Images
Requires: IMAGEIO
Name: MNG image I/O
SeeAlso: ???

Feature: IMAGEIO_JPEG
Section: Images
Requires: IMAGEIO
Name: JPEG image I/O
SeeAlso: ???

Feature: ASYNC_IO
Section: Images
Requires:
Name: Asynchronous I/O
SeeAlso: ???

Feature: ASYNC_IMAGE_IO
Section: Images
Requires: IMAGEIO
Name: Asynchronous image I/O
SeeAlso: ???

Feature: MOVIE
Section: Images
Requires: ASYNC_IO ASYNC_IMAGE_IO
Name: Animated images
SeeAlso: ???

Feature: FREETYPE
Section: Fonts
Requires:
Name: Freetype font engine
SeeAlso: ???

Feature: BDF
Section: Fonts
Requires: TEXTSTREAM STRINGLIST
Name: BDF font files
SeeAlso: ???

Feature: FONTDATABASE
Section: Fonts
Requires: STRINGLIST
Name: QFontDatabase
SeeAlso: ???

Feature: TRANSLATION
Section: Internationalization
Requires: DATASTREAM
Name: Translations via QObject::tr()
SeeAlso: ???

Feature: TRANSLATION_UTF8
Section: Internationalization
Requires: TRANSLATION TEXTCODEC
Name: Translations via QObject::trUtf8()
SeeAlso: ???

Feature: TEXTCODEC
Section: Internationalization
Requires:
Name: Character set conversions
SeeAlso: ???

Feature: CODECS
Section: Internationalization
Requires: TEXTCODEC
Name: Non-Unicode text conversions
SeeAlso: ???

Feature: BIG_CODECS
Section: Internationalization
Requires: CODEC_HEBREW
Name: Big Codecs (eg. CJK)
SeeAlso: ???

Feature: CODEC_HEBREW
Section: Internationalization
Requires: CODECS COMPLEXTEXT
Name: Hebrew Codec
SeeAlso: ???

Feature: UNICODETABLES
Section: Internationalization
Requires:
Name: Unicode property tables
SeeAlso: ???

Feature: MIME
Section: File I/O
Requires: DIR IMAGEIO TEXTCODEC
Name: MIME
SeeAlso: ???

Feature: RICHTEXT
Section: Widgets
Requires: STYLE LAYOUT STRINGLIST TEXTSTREAM
Name: RichText (HTML) display
SeeAlso: ???

Feature: TEXTCUSTOMITEM
Section: Widgets
Requires: RICHTEXT MIME
Name: RichText (HTML) tables and images
SeeAlso: ???


Feature: COMPLEXTEXT
Section: Internationalization
Requires: RICHTEXT
Name: Complex scripts (eg. BiDi)
SeeAlso: ???

Feature: DOM
Section: File I/O
Requires: XML MIME
Name: Document Object Model
SeeAlso: ???

Feature: SOUND
Section: Kernel
Requires:
Name: Playing sounds
SeeAlso: ???

Feature: QWS_SOUNDSERVER
Section: Qt/Embedded-specific
Requires: SOUND DIR DNS
Name: Server to play sound
SeeAlso: ???

Feature: PROPERTIES
Section: Kernel
Requires: VARIANT STRINGLIST ICONSET
Name: Properties
SeeAlso: ???

Feature: NETWORK
Section: Networking
Requires:
Name: Networking
SeeAlso: ???

Feature: DNS
Section: Networking
Requires: NETWORK STRINGLIST TEXTSTREAM SPRINTF
Name: DNS
SeeAlso: ???

Feature: URL
Section: Networking
Requires: DIR
Name: URL parser
SeeAlso: ???

Feature: NETWORKPROTOCOL
Section: Networking
Requires: TEXTCODEC URL
Name: Network file access
SeeAlso: ???

Feature: NETWORKPROTOCOL_FTP
Section: Networking
Requires: NETWORKPROTOCOL DNS TEXTDATE
Name: FTP file access
SeeAlso: ???

Feature: NETWORKPROTOCOL_HTTP
Section: Networking
Requires: NETWORKPROTOCOL DNS
Name: HTTP file access
SeeAlso: ???

Feature: PROCESS
Section: File I/O
Requires: STRINGLIST REGEXP
Name: External process invocation.
SeeAlso: ???

Feature: QWS_MULTIPROCESS
Section: Qt/Embedded-specific
Requires: NETWORK
Name: Multi-process architecture
SeeAlso: ???

Feature: COP
Section: Networking
Requires: DATASTREAM
Name: QCop IPC
SeeAlso: ???

Feature: QWS_KEYBOARD
Section: Qt/Embedded-specific
Requires:
Name: Console keyboard
SeeAlso: ???

Feature: QWS_KBD_SL5000
Section: Qt/Embedded-specific
Requires: QWS_KEYBOARD
Name: Keyboard for SHARP Zaurus SL5xxx devices
SeeAlso: ???

Feature: QWS_CURSOR
Section: Qt/Embedded-specific
Requires: CURSOR
Name: Visible cursor
SeeAlso: ???

Feature: QWS_ALPHA_CURSOR
Section: Qt/Embedded-specific
Requires:
Name: Alpha-blended cursor
SeeAlso: ???

Feature: QWS_MACH64
Section: Qt/Embedded-specific
Requires:
Name: Mach64 acceleration
SeeAlso: ???

Feature: QWS_VOODOO3
Section: Qt/Embedded-specific
Requires:
Name: Voodoo3 acceleration
SeeAlso: ???

Feature: QWS_MATROX
Section: Qt/Embedded-specific
Requires:
Name: Matrox MGA acceleration
SeeAlso: ???

Feature: QWS_REPEATER
Section: Qt/Embedded-specific
Requires:
Name: Repeater display
SeeAlso: ???

Feature: QWS_VFB
Section: Qt/Embedded-specific
Requires:
Name: Virtual frame buffer
SeeAlso: ???

Feature: QWS_TRANSFORMED
Section: Qt/Embedded-specific
Requires: QWS_LINUXFB
Name: Transformed frame buffer
SeeAlso: ???

Feature: QWS_LINUXFB
Section: Qt/Embedded-specific
Requires:
Name: Linux framebuffer
SeeAlso: ???

Feature: QWS_VNC
Section: Qt/Embedded-specific
Requires: NETWORK
Name: Remote frame buffer (VNC)
SeeAlso: ???

Feature: QWS_SHADOWFB
Section: Qt/Embedded-specific
Requires: 
Name: Shadow frame buffer
SeeAlso: ???

Feature: QWS_DEPTH_1
Section: Qt/Embedded-specific
Requires:
Name: 1-bit monochrome
SeeAlso: ???

Feature: QWS_DEPTH_4
Section: Qt/Embedded-specific
Requires:
Name: 4-bit grayscale
SeeAlso: ???

Feature: QWS_VGA_16
Section: Qt/Embedded-specific
Requires:
Name: 4-bit VGA
SeeAlso: ???

Feature: QWS_DEPTH_8GRAYSCALE
Section: Qt/Embedded-specific
Requires:
Name: 8-bit grayscale
SeeAlso: ???

Feature: QWS_DEPTH_8
Section: Qt/Embedded-specific
Requires:
Name: 8-bit color
SeeAlso: ???

Feature: QWS_DEPTH_16
Section: Qt/Embedded-specific
Requires:
Name: 15 or 16-bit color
SeeAlso: ???

Feature: QWS_DEPTH_24
Section: Qt/Embedded-specific
Requires:
Name: 24-bit color
SeeAlso: ???

Feature: QWS_DEPTH_32
Section: Qt/Embedded-specific
Requires:
Name: 32-bit color
SeeAlso: ???

Feature: QWS_DEPTH_32_BGR
Section: Qt/Embedded-specific
Requires: QWS_DEPTH_32
Name: 32-bit color, BGR order
SeeAlso: ???

Feature: QWS_MANAGER
Section: Qt/Embedded-specific
Requires:
Name: Window Manager
SeeAlso: ???

Feature: QWS_KDE2_WM_STYLE
Section: Qt/Embedded-specific
Requires: QWS_MANAGER
Name: The "KDE2" style
SeeAlso: ???

Feature: QWS_HYDRO_WM_STYLE
Section: Qt/Embedded-specific
Requires: QWS_MANAGER
Name: The "Hydro" style
SeeAlso: ???

Feature: QWS_BEOS_WM_STYLE
Section: Qt/Embedded-specific
Requires: QWS_MANAGER
Name: The "BeOS" style
SeeAlso: ???

Feature: QWS_KDE_WM_STYLE
Section: Qt/Embedded-specific
Requires: QWS_MANAGER
Name: The "KDE" style
SeeAlso: ???

Feature: QWS_WINDOWS_WM_STYLE
Section: Qt/Embedded-specific
Requires: QWS_MANAGER
Name: The "Windows" style
SeeAlso: ???

Feature: QWS_MOUSE_AUTO
Section: Qt/Embedded-specific
Requires:
Name: Autodetecting mouse driver
SeeAlso: ???

Feature: QWS_MOUSE_MANUAL
Section: Qt/Embedded-specific
Requires:
Name: Non-autodetecting mouse driver
SeeAlso: ???

Feature: QWS_SAVEFONTS
Section: Qt/Embedded-specific
Requires:
Name: Saving of fonts
SeeAlso: ???

Feature: QWS_GFX_SPEED
Section: Qt/Embedded-specific
Requires:
Name: Favour code size over graphics speed
SeeAlso: ???

Feature: QWS_PROPERTIES
Section: Qt/Embedded-specific
Requires:
Name: Qt/Embedded window system properties.
SeeAlso: ???

Feature: CLIPBOARD
Section: Kernel
Requires: QWS_PROPERTIES MIME
Name: Cut and paste
SeeAlso: ???

Feature: DRAGANDDROP
Section: Kernel
Requires: MIME QWS_PROPERTIES IMAGEIO_XPM
Name: Drag and drop
SeeAlso: ???

Feature: MIMECLIPBOARD
Section: Kernel
Requires: CLIPBOARD
Name: Cut and paste non-text
SeeAlso: ???

Feature: DRAWUTIL
Section: Kernel
Requires: SPRINTF PALETTE
Name: Drawing utility functions
SeeAlso: ???

Feature: IMAGE_TRUECOLOR
Section: Images
Requires:
Name: TrueColor QImage
SeeAlso: ???

Feature: IMAGE_SMOOTHSCALE
Section: Images
Requires:
Name: Smooth QImage scaling
SeeAlso: ???

Feature: IMAGE_DITHER_TO_1
Section: Images
Requires:
Name: Dither QImage to 1-bit image
SeeAlso: ???

Feature: IMAGE_HEURISTIC_MASK
Section: Images
Requires:
Name: QImage::createHeuristicMask()
SeeAlso: ???

Feature: IMAGE_MIRROR
Section: Images
Requires:
Name: QImage mirroring
SeeAlso: ???

Feature: IMAGE_TEXT
Section: Images
Requires: STRINGLIST
Name: Image file text strings
SeeAlso: ???

Feature: IMAGE_16_BIT
Section: Qt/Embedded-specific
Requires: IMAGE_TRUECOLOR
Name: 16-bit QImage
SeeAlso: ???

Feature: CURSOR
Section: Kernel
Requires:
Name: Cursors
SeeAlso: ???

Feature: COLORNAMES
Section: Painting
Requires:
Name: Named colors
SeeAlso: ???

Feature: TRANSFORMATIONS
Section: Painting
Requires: WMATRIX
Name: Scaling and rotation
SeeAlso: ???

Feature: PIXMAP_TRANSFORMATION
Section: Painting
Requires: WMATRIX
Name: Pixmap transformations
SeeAlso: ???

Feature: IMAGE_TRANSFORMATION
Section: Painting
Requires: PIXMAP_TRANSFORMATION
Name: Image transformations
SeeAlso: ???

Feature: SVG
Section: Painting
Requires: DOM TRANSFORMATIONS SPRINTF
Name: Scalable Vector Graphics (SVG)
SeeAlso: ???

Feature: BEZIER
Section: Painting
Requires:
Name: Bezier curves
SeeAlso: ???

Feature: PRINTER
Section: Painting
Requires: TEXTSTREAM SPRINTF FONTDATABASE DATESTRING REGEXP_CAPTURE
Name: Printing
SeeAlso: ???

Feature: PICTURE
Section: Painting
Requires: DATASTREAM IMAGEIO
Name: QPicture
SeeAlso: ???

Feature: LAYOUT
Section: Kernel
Requires:
Name: Automatic widget layout
SeeAlso: ???

Feature: STYLE
Section: Widgets
Requires: DRAWUTIL
Name: QStyle
SeeAlso: ???

Feature: WIDGET_TOPEXTRA
Section: Kernel
Requires: IMAGE_HEURISTIC_MASK
Name: Window icon and caption
SeeAlso: ???

Feature: DIALOG
Section: Widgets
Requires:
Name: Dialogs
SeeAlso: ???

Feature: SEMIMODAL
Section: Widgets
Requires: DIALOG
Name: Semi-modal dialogs
SeeAlso: ???

Feature: FRAME
Section: Widgets
Requires: STYLE
Name: Framed widgets
SeeAlso: ???

Feature: EFFECTS
Section: Kernel
Requires:
Name: Special widget effects (fading, scrolling)
SeeAlso: ???

Feature: LABEL
Section: Widgets
Requires: FRAME
Name: QLabel
SeeAlso: ???

Feature: TOOLBAR
Section: Widgets
Requires: MAINWINDOW
Name: Toolbars
SeeAlso: ???

Feature: BUTTON
Section: Widgets
Requires:
Name: Buttons
SeeAlso: ???

Feature: CHECKBOX
Section: Widgets
Requires: BUTTON STYLE
Name: Check-boxes
SeeAlso: ???

Feature: RADIOBUTTON
Section: Widgets
Requires: BUTTON STYLE
Name: Radio-buttons
SeeAlso: ???

Feature: TOOLBUTTON
Section: Widgets
Requires: BUTTON ICONSET STYLE
Name: Tool-buttons
SeeAlso: ???

Feature: GRID
Section: Widgets
Requires: LAYOUT FRAME
Name: Grid layout widgets
SeeAlso: ???

Feature: GROUPBOX
Section: Widgets
Requires: FRAME LAYOUT
Name: Group boxes
SeeAlso: ???

Feature: BUTTONGROUP
Section: Widgets
Requires: GROUPBOX BUTTON RADIOBUTTON
Name: Button groups
SeeAlso: ???

Feature: HGROUPBOX
Section: Widgets
Requires: GROUPBOX
Name: Horizontal group boxes
SeeAlso: ???

Feature: VGROUPBOX
Section: Widgets
Requires: HGROUPBOX
Name: Vertical group boxes
SeeAlso: ???

Feature: HBUTTONGROUP
Section: Widgets
Requires: BUTTONGROUP
Name: Horizontal button groups
SeeAlso: ???

Feature: VBUTTONGROUP
Section: Widgets
Requires: HBUTTONGROUP
Name: Vertical button groups
SeeAlso: ???

Feature: HBOX
Section: Widgets
Requires: LAYOUT FRAME
Name: Horizontal box layout widgets
SeeAlso: ???

Feature: VBOX
Section: Widgets
Requires: HBOX
Name: Vertical box layout widgets
SeeAlso: ???

Feature: MAINWINDOW
Section: Widgets
Requires: STRINGLIST POPUPMENU TITLEBAR RESIZEHANDLER TOOLBUTTON STATUSBAR
Name: Main-windows
SeeAlso: ???

Feature: RESIZEHANDLER
Section: Widgets
Requires: FRAME
Name: Internal resize handler
SeeAlso: ???

Feature: MENUDATA
Section: Widgets
Requires: ICONSET VARIANT
Name: Menu-oriented widgets
SeeAlso: ???

Feature: POPUPMENU
Section: Widgets
Requires: MENUDATA FRAME
Name: Popup-menus
SeeAlso: ???

Feature: MENUBAR
Section: Widgets
Requires: POPUPMENU
Name: Menu bars
SeeAlso: ???

Feature: PUSHBUTTON
Section: Widgets
Requires: BUTTON STYLE
Name: Push-buttons
SeeAlso: ???

Feature: PROGRESSBAR
Section: Widgets
Requires: FRAME
Name: Progress bars
SeeAlso: ???

Feature: RANGECONTROL
Section: Widgets
Requires:
Name: Range-control widgets
SeeAlso: ???

Feature: SCROLLBAR
Section: Widgets
Requires: RANGECONTROL STYLE
Name: Scroll bars
SeeAlso: ???

Feature: SLIDER
Section: Widgets
Requires: RANGECONTROL STYLE
Name: Sliders
SeeAlso: ???

Feature: DIAL
Section: Widgets
Requires: RANGECONTROL STYLE
Name: Dials
SeeAlso: ???

Feature: SPINWIDGET
Section: Widgets
Requires: FRAME
Name: Spinbox control widget
SeeAlso: ???

Feature: SCROLLVIEW
Section: Widgets
Requires: SCROLLBAR FRAME
Name: Scrollable view widgets
SeeAlso: ???

Feature: ICONVIEW
Section: Widgets
Requires: SCROLLVIEW IMAGEIO_XPM IMAGE_HEURISTIC_MASK
Name: QIconView
SeeAlso: ???

Feature: GRIDVIEW
Section: Widgets
Requires: SCROLLVIEW
Name: QGridView
SeeAlso: ???

Feature: TEXTVIEW
Section: Widgets
Requires: TEXTEDIT
Name: QTextView
SeeAlso: ???

Feature: TEXTEDIT
Section: Widgets
Requires: RICHTEXT SCROLLVIEW
Name: Rich text edit
SeeAlso: ???

Feature: SYNTAXHIGHLIGHTER
Section: Widgets
Requires: TEXTEDIT
Name: Rich text syntax highlighting
SeeAlso: ???

Feature: SPLASHSCREEN
Section: Widgets
Requires: IMAGEIO
Name: Splash screen widget
SeeAlso: ???


Feature: TABLEVIEW
Section: Widgets
Requires: SCROLLBAR
Name: Table-like widgets
SeeAlso: ???

Feature: LINEEDIT
Section: Widgets
Requires: FRAME
Name: Single-line edits
SeeAlso: ???

Feature: MULTILINEEDIT
Section: Widgets
Requires: TEXTEDIT
Name: Multi-line edits
SeeAlso: ???

Feature: SPINBOX
Section: Widgets
Requires: RANGECONTROL SPINWIDGET LINEEDIT VALIDATOR
Name: Spin boxes
SeeAlso: ???

Feature: SPLITTER
Section: Widgets
Requires: FRAME LAYOUT
Name: Splitters
SeeAlso: ???

Feature: STATUSBAR
Section: Widgets
Requires: LAYOUT STYLE
Name: Status bars
SeeAlso: ???

Feature: TABBAR
Section: Widgets
Requires: TOOLBUTTON
Name: Tab-bars
SeeAlso: ???

Feature: TABWIDGET
Section: Widgets
Requires: TABBAR WIDGETSTACK
Name: Tab widgets
SeeAlso: ???

Feature: TOOLTIP
Section: Widgets
Requires: LABEL
Name: Tool tips
SeeAlso: ???

Feature: VALIDATOR
Section: Widgets
Requires:
Name: Input validators
SeeAlso: ???

Feature: WHATSTHIS
Section: Widgets
Requires: TOOLTIP TOOLBUTTON
Name: "What's this" help
SeeAlso: ???

Feature: WIDGETSTACK
Section: Widgets
Requires: FRAME
Name: Widget stacks
SeeAlso: ???

Feature: TEXTBROWSER
Section: Widgets
Requires: TEXTVIEW MIME
Name: QTextBrowser
SeeAlso: ???

Feature: LISTBOX
Section: Widgets
Requires: SCROLLVIEW STRINGLIST
Name: QListBox
SeeAlso: ???

Feature: ACCEL
Section: Kernel
Requires: SPRINTF
Name: Keyboard accelerators and shortcuts
SeeAlso: ???

Feature: SIZEGRIP
Section: Widgets
Requires: STYLE
Name: QSizeGrip
SeeAlso: ???

Feature: HEADER
Section: Widgets
Requires: STYLE ICONSET
Name: QHeader
SeeAlso: ???

Feature: TITLEBAR
Section: Kernel
Requires: STYLE
Name: Internal titlebar widget
SeeAlso: ???

Feature: LCDNUMBER
Section: Widgets
Requires: FRAME
Name: QLCDNumber
SeeAlso: ???

Feature: ACTION
Section: Kernel
Requires: TOOLBUTTON COMBOBOX
Name: QAction
SeeAlso: ???

Feature: COMBOBOX
Section: Widgets
Requires: LISTBOX LINEEDIT POPUPMENU
Name: QComboBox
SeeAlso: ???

Feature: LISTVIEW
Section: Widgets
Requires: SCROLLVIEW HEADER LINEEDIT
Name: QListView
SeeAlso: ???

Feature: STYLE_WINDOWS
Section: Widgets
Requires: STYLE
Name: Windows style
SeeAlso: ???

Feature: STYLE_MOTIF
Section: Widgets
Requires: STYLE
Name: Motif style
SeeAlso: ???

Feature: STYLE_INTERLACE
Section: Widgets
Requires: STYLE_MOTIF
Name: Interlace-friendly style
SeeAlso: ???

Feature: STYLE_COMPACT
Section: Widgets
Requires: STYLE_WINDOWS
Name: Compact Windows style
SeeAlso: ???

Feature: STYLE_PLATINUM
Section: Widgets
Requires: STYLE_WINDOWS
Name: Platinum style
SeeAlso: ???

Feature: STYLE_AQUA
Section: Widgets
Requires: STYLE_WINDOWS IMAGE_TRANSFORMATION
Name: Aqua style
SeeAlso: ???

Feature: STYLE_CDE
Section: Widgets
Requires: STYLE_MOTIF TRANSFORMATIONS
Name: CDE style
SeeAlso: ???

Feature: STYLE_SGI
Section: Widgets
Requires: STYLE_MOTIF TRANSFORMATIONS BUTTON SCROLLBAR SLIDER LINEEDIT  MENUBAR
Name: SGI style
SeeAlso: ???

Feature: STYLE_MOTIFPLUS
Section: Widgets
Requires: STYLE_MOTIF TRANSFORMATIONS BUTTON SCROLLBAR SLIDER
Name: Motif-plus style
SeeAlso: ???

Feature: COLORDIALOG
Section: Widgets
Requires: DIALOG LABEL PUSHBUTTON LINEEDIT VALIDATOR GRIDVIEW LAYOUT
Name: QColorDialog
SeeAlso: ???

Feature: MESSAGEBOX
Section: Widgets
Requires: DIALOG PUSHBUTTON LABEL
Name: QMessageBox
SeeAlso: ???

Feature: TABDIALOG
Section: Widgets
Requires: DIALOG PUSHBUTTON LAYOUT TABWIDGET
Name: QTabDialog
SeeAlso: ???

Feature: WIZARD
Section: Widgets
Requires: DIALOG WIDGETSTACK PUSHBUTTON LAYOUT LABEL
Name: QWizard
SeeAlso: ???

Feature: FILEDIALOG
Section: Widgets
Requires: MESSAGEBOX LISTVIEW NETWORKPROTOCOL COMBOBOX SEMIMODAL REGEXP_CAPTURE TOOLBUTTON BUTTONGROUP VBOX SPLITTER PROGRESSBAR WIDGETSTACK DATESTRING
Name: QFileDialog
SeeAlso: ???

Feature: FONTDIALOG
Section: Widgets
Requires: DIALOG FONTDATABASE COMBOBOX LABEL CHECKBOX PUSHBUTTON VGROUPBOX VALIDATOR
Name: QFontDialog
SeeAlso: ???

Feature: PRINTDIALOG
Section: Widgets
Requires: DIALOG LISTVIEW PRINTER COMBOBOX LABEL BUTTONGROUP SPINBOX RADIOBUTTON PUSHBUTTON DIR
Name: QPrintDialog
SeeAlso: ???

Feature: PROGRESSDIALOG
Section: Widgets
Requires: SEMIMODAL LABEL PUSHBUTTON PROGRESSBAR
Name: QProgressDialog
SeeAlso: ???

Feature: INPUTDIALOG
Section: Widgets
Requires: DIALOG COMBOBOX LABEL PUSHBUTTON SPINBOX WIDGETSTACK LAYOUT
Name: QInputDialog
SeeAlso: ???

Feature: ERRORMESSAGE
Section: Widgets
Requires: DIALOG PUSHBUTTON LABEL CHECKBOX TEXTVIEW
Name: QErrorMessage
SeeAlso: ???

Feature: SESSIONMANAGER
Section: Kernel
Requires: STRINGLIST
Name: Session management
SeeAlso: ???

Feature: DATETIMEEDIT
Section: Widgets
Requires: RICHTEXT SPINWIDGET DATESTRING
Name: QDateTimeEdit
SeeAlso: ???

Feature: TEXTCODECPLUGIN
Section: Internationalization
Requires: COMPONENT TEXTCODEC
Name: QTextCodecPlugin
SeeAlso: ???


Feature: IMAGEFORMATPLUGIN
Section: Images
Requires: COMPONENT IMAGEIO
Name: QImageFormatPlugin
SeeAlso: ???


Feature: WIDGETPLUGIN
Section: Widgets
Requires: COMPONENT ICONSET
Name: QWidgetPlugin
SeeAlso: ???


Feature: DIRECTPAINTER
Section: Painting
Requires:
Name: QDirectPainter
SeeAlso: ???


Feature: DIALOGBUTTONS
Section: Widgets
Requires: LAYOUT STYLE PUSHBUTTON
Name: Experimental internal class
SeeAlso: ???