summaryrefslogtreecommitdiffstats
path: root/src/corelib/global/qfeatures.txt
blob: ec4945fa0d6970dd67219f2328c8a7ff8f670ce5 (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
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
# Kernel

Feature: PROPERTIES
Description: Supports scripting Qt-based applications.
Section: Kernel
Requires:
Name: Properties
SeeAlso: ???

Feature: TEXTHTMLPARSER
Description: Parser for HTML
Section: Kernel
Requires:
Name: HtmlParser
SeeAlso: ???

Feature: TEXTODFWRITER
Description: Provides an ODF writer
Section: Kernel
Requires: XMLSTREAMWRITER
Name: OdfWriter
SeeAlso: ???

Feature: CSSPARSER
Description: Parser for Style Sheets
Section: Kernel
Requires:
Name: CssParser
SeeAlso: ???

Feature: CONCURRENT
Description: Provides a high-level multi-threaded APIs
Section: Kernel
Requires:
Name: QtConcurrent
SeeAlso: ???

Feature: DRAGANDDROP
Description: Supports the drag and drop mechansim.
Section: Kernel
Requires: QWS_PROPERTIES IMAGEFORMAT_XPM
Name: Drag and drop
SeeAlso: ???

Feature: SESSIONMANAGER
Description: Supports session management.
Section: Kernel
Requires:
Name: Session Manager
SeeAlso: ???

Feature: SHORTCUT
Description: Supports keyboard accelerators and shortcuts.
Section: Kernel
Requires:
Name: QShortcut
SeeAlso: ???

Feature: ACTION
Description: Supports widget actions.
Section: Kernel
Requires:
Name: QAction
SeeAlso: ???

Feature: SOFTKEYMANAGER
Description: Supports softkeys.
Section: Gui
Requires: ACTION
Name: QSoftKeyManager
SeeAlso: ???

Feature: CURSOR
Description: Supports mouse cursors.
Section: Kernel
Requires:
Name: QCursor
SeeAlso: ???

Feature: CLIPBOARD
Description: Supports cut and paste operations.
Section: Kernel
Requires: QWS_PROPERTIES
Name: QClipboard
SeeAlso: ???

Feature: WHEELEVENT
Description: Supports wheel events.
Section: Kernel
Requires:
Name: QWheelEvent
SeeAlso: ???

Feature: TABLETEVENT
Description: Supports tablet events.
Section: Kernel
Requires:
Name: QTabletEvent
SeeAlso: ???

Feature: SOUND
Description: Supports playing audio files.
Section: Kernel
Requires:
Name: Sounds
SeeAlso: ???

Feature: EFFECTS
Description: Supports special widget effects (e.g. fading and scrolling).
Section: Kernel
Requires:
Name: Effects
SeeAlso: ???

Feature: SHAREDMEMORY
Description: Provides access to a shared memory segment.
Section: Kernel
Requires:
Name: QSharedMemory
SeeAlso: ???

Feature: SYSTEMSEMAPHORE
Description: Provides a general counting system semaphore.
Section: Kernel
Requires:
Name: QSystemSemaphore
SeeAlso: ???

Feature: XMLSTREAM
Description: Provides a simple streaming API for XML.
Section: Kernel
Requires:
Name:
SeeAlso: ???

Feature: XMLSTREAMREADER
Description: Provides a well-formed XML parser with a simple streaming API.
Section: Kernel
Requires: XMLSTREAM
Name: QXmlStreamReader
SeeAlso: ???

Feature: XMLSTREAMWRITER
Description: Provides a XML writer with a simple streaming API.
Section: Kernel
Requires: XMLSTREAM
Name: QXmlStreamWriter
SeeAlso: ???

Feature: IM
Description: Inputmethods with QInputContext
Section: Kernel
Requires: LIBRARY
Name: QInputContext
SeeAlso: ???
# Data structures

Feature: STL
Description: Supports standard template library compatiblity.
Section: Data structures
Requires:
Name: Standard Template Library
SeeAlso: ???

Feature: QUUID_STRING
Description: Supports convertion between UUID and strings.
Section: Data structures
Requires:
Name:  Universally Unique Identifier Convertion
SeeAlso: ???

Feature: TEXTDATE
Description: Supports month and day names in dates.
Section: Data structures
Requires:
Name: Text Date
SeeAlso: ???

Feature: DATESTRING
Description: Supports convertion between dates and strings.
Section: Data structures
Requires: TEXTDATE
Name: QDate/QTime/QDateTime
SeeAlso: ???

# File I/O

Feature: PROCESS
Description: Supports external process invocation.
Section: File I/O
Requires:
Name: QProcess
SeeAlso: ???

Feature: TEXTSTREAM
Description: Supports reading and writing of text.
Section: File I/O
Requires:
Name: QTextStream
SeeAlso: ???

Feature: TEMPORARYFILE
Description: Provides an I/O device that operates on temporary files.
Section: File I/O
Requires:
Name: QTemporaryFile
SeeAlso: ???

Feature: LIBRARY
Description: Supports a shared library wrapper.
Section: File I/O
Requires: SETTINGS
Name: QLibrary
SeeAlso: ???

Feature: SETTINGS
Description: Supports persistent application settings.
Section: File I/O
Requires: TEXTSTREAM
Name: QSettings
SeeAlso: ???

Feature: DOM
Description: Supports the Document Object Model.
Section: File I/O
Requires:
Name: Document Object Model
SeeAlso: ???

Feature: FILESYSTEMMODEL
Description: Provides a data model for the local filesystem.
Section: File I/O
Requires: FILESYSTEMWATCHER
Name: QFileSystemModel
SeeAlso: ???

Feature: FILESYSTEMWATCHER
Description: Provides an interface for monitoring files and directories
for modications.
Section: File I/O
Requires:
Name: QFileSystemWatcher
SeeAlso: ???

# Widgets

Feature: TREEWIDGET
Description: Supports views using tree models.
Section: Widgets
Requires: TREEVIEW
Name: QTreeWidget
SeeAlso: ???

Feature: LISTWIDGET
Description: Supports item-based list widgets.
Section: Widgets
Requires: LISTVIEW
Name: QListWidget
SeeAlso: ???

Feature: TABLEWIDGET
Description: Supports item-based table views.
Section: Widgets
Requires: TABLEVIEW
Name: QTableWidget
SeeAlso: ???

Feature: DATETIMEEDIT
Description: Supports editing dates and times.
Section: Widgets
Requires: CALENDARWIDGET DATESTRING
Name: QDateTimeEdit
SeeAlso: ???

Feature: STACKEDWIDGET
Description: Supports stacked widgets.
Section: Widgets
Requires:
Name: QStackedWidget
SeeAlso: ???

Feature: TEXTBROWSER
Description: Supports HTML document browsing.
Section: Widgets
Requires: TEXTEDIT
Name: QTextBrowser
SeeAlso: ???

Feature: SPLASHSCREEN
Description: Supports splash screens that can be shown during application startup.
Section: Widgets
Requires:
Name: Splash screen widget
SeeAlso: ???

Feature: SPLITTER
Description: Supports user controlled splitter widgets.
Section: Widgets
Requires: RUBBERBAND
Name: QSplitter
SeeAlso: ???

Feature: LCDNUMBER
Description: Supports LCD-like digits.
Section: Widgets
Requires:
Name: QLCDNumber
SeeAlso: ???

Feature: MENU
Description: Supports popup-menus.
Section: Widgets
Requires: ACTION
Name: QMenu
SeeAlso: ???

Feature: LINEEDIT
Description: Supports single-line edits.
Section: Widgets
Requires:
Name: QLineEdit
SeeAlso: ???

Feature: SPINBOX
Description: Supports spin boxes handling integers and discrete sets of values.
Section: Widgets
Requires: SPINWIDGET LINEEDIT VALIDATOR
Name: QSpinBox
SeeAlso: ???

Feature: TABBAR
Description: Supports tab bars, e.g. for use in tabbed dialogs.
Section: Widgets
Requires: TOOLBUTTON
Name: QTabBar
SeeAlso: ???

Feature: TABWIDGET
Description: Supports stacking tabbed widgets.
Section: Widgets
Requires: TABBAR STACKEDWIDGET
Name: QTabWidget
SeeAlso: ???

Feature: COMBOBOX
Description: Supports comboboxes presenting a list of options to the user.
Section: Widgets
Requires: LINEEDIT STANDARDITEMMODEL LISTVIEW 
Name: QComboBox
SeeAlso: ???

Feature: FONTCOMBOBOX
Description: Supports a combobox that lets the user select a font family.
Section: Widgets
Requires: COMBOBOX STRINGLISTMODEL
Name: QFontComboBox
SeeAlso: ???

Feature: TOOLBUTTON
Description: Supports quick-access buttons to commands and options.
Section: Widgets
Requires: ACTION
Name: QToolButton
SeeAlso: ???

Feature: TOOLBAR
Description: Supports movable panels containing a set of controls.
Section: Widgets
Requires: MAINWINDOW
Name: QToolBar
SeeAlso: ???

Feature: TOOLBOX
Description:  Supports columns of tabbed widget items.
Section: Widgets
Requires: TOOLBUTTON SCROLLAREA
Name: QToolBox
SeeAlso: ???

Feature: GROUPBOX
Description: Supports group box frames.
Section: Widgets
Requires:
Name: QGroupBox
SeeAlso: ???

Feature: BUTTONGROUP
Description: Supports organizing groups of button widgets.
Section: Widgets
Requires: GROUPBOX
Name: QButtonGroup
SeeAlso: ???

Feature: MAINWINDOW
Description: Supports main application windows.
Section: Widgets
Requires: MENU RESIZEHANDLER TOOLBUTTON
Name: QMainWindow
SeeAlso: ???

Feature: DOCKWIDGET
Description: Supports docking widgets inside a QMainWindow or floated as
a top-level window on the desktop.
Section: Widgets
Requires: RUBBERBAND MAINWINDOW
Name: QDockwidget
SeeAlso: ???

Feature: WORKSPACE
Description: Supports workspace windows, e.g. used in an MDI application.
Section: Widgets
Requires: SCROLLBAR MAINWINDOW MENUBAR
Name: QWorkSpace
SeeAlso: ???

Feature: MDIAREA
Description: Provides an area in which MDI windows are displayed.
Section: Widgets
Requires: SCROLLAREA
Name: QMdiArea
SeeAlso: ???

Feature: RESIZEHANDLER
Description: Supports an internal resize handler.
Section: Widgets
Requires:
Name: Resize Handler
SeeAlso: ???

Feature: STATUSBAR
Description: Supports presentation of status information.
Section: Widgets
Requires:
Name: QStatusBar
SeeAlso: ???

Feature: MENUBAR
Description: Supports pull-down menu items.
Section: Widgets
Requires: MENU TOOLBUTTON
Name: QMenuBar
SeeAlso: ???

Feature: CONTEXTMENU
Description: Supports pop-up menus on right mouse click
Section: Widgets
Requires: MENU
Name: Context menu
SeeeAlso: ???

Feature: PROGRESSBAR
Description: Supports presentation of operation progress.
Section: Widgets
Requires:
Name: QProgressBar
SeeAlso: ???

Feature: SLIDER
Description: Supports sliders controlling a bounded value.
Section: Widgets
Requires:
Name: QSlider
SeeAlso: ???

Feature: SCROLLBAR
Description: Supports scrollbars allowing the user access parts of a
document that is larger than the widget used to display it.
Section: Widgets
Requires: SLIDER
Name: QScrollBar
SeeAlso: ???

Feature: DIAL
Description: Supports rounded range control, e.g. like a speedometer.
Section: Widgets
Requires: SLIDER
Name: QDial
SeeAlso: ???

Feature: SCROLLAREA
Description: Supports scrolling views onto widgets.
Section: Widgets
Requires: SCROLLBAR
Name: QScrollArea
SeeAlso: ???

Feature: GRAPHICSVIEW
Description: Supports the graphicsview classes.
Section: Widgets
Requires: SCROLLAREA
Name: QGraphicsView
SeeAlso: ???

Feature: GRAPHICSEFFECT
Description: Supports the graphicseffect classes.
Section: Widgets
Requires: GRAPHICSVIEW
Name: QGraphicsEffect
SeeAlso: ???

Feature: SPINWIDGET
Description: Supports spinbox control widgets.
Section: Widgets
Requires:
Name: Spin Widget
SeeAlso: ???

Feature: TEXTEDIT
Description: Supports rich text editing.
Section: Widgets
Requires: SCROLLAREA PROPERTIES
Name: QTextEdit
SeeAlso: ???

Feature: SYNTAXHIGHLIGHTER
Description: Supports custom syntax highlighting.
Section: Widgets
Requires: TEXTEDIT
Name: QSyntaxHighlighter
SeeAlso: ???

Feature: RUBBERBAND
Description: Supports using rubberbands to indicate selections and boundaries.
Section: Widgets
Requires:
Name: QRubberBand
SeeAlso: ???

Feature: TOOLTIP
Description: Supports presentation of tooltips.
Section: Widgets
Requires:
Name: QToolTip
SeeAlso: ???

Feature: STATUSTIP
Description: Supports status tip functionality and events.
Section: Widgets
Requires:
Name: Status Tip
SeeAlso: ???

Feature: SIGNALMAPPER
Description: Supports bundling of signals from identifiable senders.
Section: Widgets
Requires:
Name: QSignalMapper
SeeAlso: ???

Feature: WHATSTHIS
Description: Supports displaying "What's this" help.
Section: Widgets
Requires: TOOLBUTTON 
Name: QWhatsThis
SeeAlso: ???

Feature: VALIDATOR
Description: Supports validation of input text.
Section: Widgets
Requires:
Name: QValidator
SeeAlso: ???

Feature: SIZEGRIP
Description: Supports corner-grips for resizing a top-level windows.
Section: Widgets
Requires:
Name: QSizeGrip
SeeAlso: ???

Feature: CALENDARWIDGET
Description: Provides a monthly based calendar widget allowing the user to select
a date.
Section: Widgets
Requires: TABLEVIEW MENU TEXTDATE SPINBOX TOOLBUTTON
Name: QCalendarWidget
SeeAlso: ???

Feature: PRINTPREVIEWWIDGET
Description: Provides a widget for previewing page layouts for printer output.
a date.
Section: Widgets
Requires: GRAPHICSVIEW PRINTER MAINWINDOW
Name: QPrintPreviewWidget
SeeAlso: ???

# Dialogs

Feature: MESSAGEBOX
Description: Supports message boxes displaying
informative messages and simple questions.
Section: Dialogs
Requires:
Name: QMessageBox
SeeAlso: ???

Feature: COLORDIALOG
Description: Supports a dialog widget for specifying colors.
Section: Dialogs
Requires: SPINBOX
Name: QColorDialog
SeeAlso: ???

Feature: FILEDIALOG
Description: Supports a dialog widget for selecting files or directories.
Section: Dialogs
Requires: DIRMODEL TREEVIEW COMBOBOX TOOLBUTTON BUTTONGROUP TOOLTIP SPLITTER STACKEDWIDGET PROXYMODEL
Name: QFileDialog
SeeAlso: ???

Feature: FONTDIALOG
Description: Supports a dialog widget for selecting fonts.
Section: Dialogs
Requires: STRINGLISTMODEL COMBOBOX VALIDATOR GROUPBOX
Name: QFontDialog
SeeAlso: ???

Feature: PRINTDIALOG
Description: Supports a dialog widget for specifying printer configuration.
Section: Dialogs
Requires: PRINTER COMBOBOX BUTTONGROUP SPINBOX TREEVIEW TABWIDGET
Name: QPrintDialog
SeeAlso: ???

Feature: PRINTPREVIEWDIALOG
Description: Provides a dialog for previewing and configuring page layouts for printer output.
Section: Dialogs
Requires: PRINTPREVIEWWIDGET PRINTDIALOG TOOLBAR
Name: QPrintPreviewDialog
SeeAlso: ???

Feature: PROGRESSDIALOG
Description: Supports feedback on the progress of a slow operation.
Section: Dialogs
Requires: PROGRESSBAR
Name: QProgressDialog
SeeAlso: ???

Feature: INPUTDIALOG
Description: Supports a simple convenience dialog to get a single value from the user.
Section: Dialogs
Requires: COMBOBOX SPINBOX STACKEDWIDGET
Name: QInputDialog
SeeAlso: ???

Feature: TABDIALOG
Description: Supports a stack of tabbed widgets.
Section: Dialogs
Requires: TABBAR
Name: Q3TabDialog
SeeAlso: ???

Feature: ERRORMESSAGE
Description:  Supports an error message display dialog.
Section: Dialogs
Requires: TEXTEDIT
Name: QErrorMessage
SeeAlso: ???

Feature: WIZARD
Description: Provides a framework for wizards.
Section: Dialogs
Requires: PROPERTIES
Name: QWizard
SeeAlso: ???

# ItemViews

Feature: ITEMVIEWS
Description: Supports the model/view architecture managing the relationship
between data and the way it is presented to the user.
Section: ItemViews
Requires: RUBBERBAND SCROLLAREA
Name: The Model/View Framework
SeeAlso: ???

Feature: DIRMODEL
Description: Supports a data model for the local filesystem.
Section: ItemViews
Requires: ITEMVIEWS FILESYSTEMMODEL 
Name: QDirModel
SeeAlso: ???

Feature: STANDARDITEMMODEL
Description: Supports a generic model for storing custom data.
Section: ItemViews
Requires: ITEMVIEWS
Name: QStandardItemModel
SeeAlso: ???

Feature: PROXYMODEL
Description: Supports processing of data passed between another model and a view.
Section: ItemViews
Requires: ITEMVIEWS
Name: QAbstractProxyModel
SeeAlso: ???

Feature: SORTFILTERPROXYMODEL
Description: Supports sorting and filtering of data passed between
another model and a view.
Section: ItemViews
Requires: PROXYMODEL
Name: QSortFilterProxyModel
SeeAlso: ???

Feature: STRINGLISTMODEL
Description: Supports a model that supplies strings to views.
Section: ItemViews
Requires: ITEMVIEWS
Name: QStringListModel
SeeAlso: ???

Feature: LISTVIEW
Description: Supports a list or icon view onto a model.
Section: ItemViews
Requires: ITEMVIEWS
Name: QListView
SeeAlso: ???

Feature: TABLEVIEW
Description: Supports a default model/view implementation of a table view.
Section: ItemViews
Requires: ITEMVIEWS
Name: QTableView
SeeAlso: ???

Feature: TREEVIEW
Description: Supports a default model/view implementation of a tree view.
Section: ItemViews
Requires: ITEMVIEWS
Name: QTreeView
SeeAlso: ???

Feature: DATAWIDGETMAPPER
Description: Provides mapping between a section of a data model to widgets.
Section: ItemViews
Requires: ITEMVIEWS PROPERTIES
Name: QDataWidgetMapper
SeeAlso: ???

Feature: COLUMNVIEW
Description: Provides a model/view implementation of a column view.
Section: ItemViews
Requires: LISTVIEW
Name: QColumnView
SeeAlso: ???

# Styles

Feature: STYLE_WINDOWS
Description: Supports a Microsoft Windows-like look and feel.
Section: Styles
Requires:
Name: QWindowsStyle
SeeAlso: ???

Feature: STYLE_MOTIF
Description: Supports a Motif look and feel.
Section: Styles
Requires:
Name: QMotifStyle
SeeAlso: ???

Feature: STYLE_CDE
Description:  Supports a CDE look and feel.
Section: Styles
Requires: STYLE_MOTIF
Name: QCDEStyle
SeeAlso: ???

Feature: STYLE_PLASTIQUE
Description: Supports a widget style similar to the Plastik style available in KDE.
Section: Styles
Requires: STYLE_WINDOWS IMAGEFORMAT_XPM
Name: QPlastiqueStyle
SeeAlso: ???

Feature: STYLE_WINDOWSXP
Description: Supports a Microsoft WindowsXP-like look and feel.
Section: Styles
Requires: STYLE_WINDOWS
Name: QWindowsXPStyle
SeeAlso: ???

Feature: STYLE_WINDOWSVISTA
Description: Supports a Microsoft WindowsVista-like look and feel.
Section: Styles
Requires: STYLE_WINDOWSXP
Name: QWindowsVistaStyle
SeeAlso: ???

Feature: STYLE_CLEANLOOKS
Description: Supports a Gnome CleanLooks-like look and feel.
Section: Styles
Requires: STYLE_WINDOWS IMAGEFORMAT_XPM
Name: QCleanLooksStyle
SeeAlso: ???

Feature: STYLE_WINDOWSCE
Description: WindowsCE look and feel
Section: Styles
Requires: STYLE_WINDOWS IMAGEFORMAT_XPM
Name: QWindowsCEStyle
SeeAlso: ???

Feature: STYLE_WINDOWSMOBILE
Description: WindowsMobile look and feel
Section: Styles
Requires: STYLE_WINDOWS IMAGEFORMAT_XPM
Name: QWindowsMobileStyle
SeeAlso: ???

Feature: STYLE_STYLESHEET
Description:
Section: Styles
Requires: STYLE_WINDOWS PROPERTIES CSSPARSER
Name: QStyleSheetStyle
SeeAlso: ???

# Images

Feature: IMAGEFORMATPLUGIN
Description: Supports writing an image format plugin.
Section: Images
Requires:
Name: QImageIOPlugin
SeeAlso: ???

Feature: MOVIE
Description: Supports animated images.
Section: Images
Requires:
Name: QMovie
SeeAlso: ???

Feature: IMAGEFORMAT_BMP
Description: Supports Microsoft's  Bitmap image file format.
Section: Images
Requires:
Name: BMP Image Format
SeeAlso: ???

Feature: IMAGEFORMAT_PPM
Description: Supports the Portable Pixmap image file format.
Section: Images
Requires:
Name: PPM Image Format
SeeAlso: ???

Feature: IMAGEFORMAT_XBM
Description: Supports the X11 Bitmap image file format.
Section: Images
Requires:
Name: XBM Image Format
SeeAlso: ???

Feature: IMAGEFORMAT_XPM
Description: Supports the X11 Pixmap image file format.
Section: Images
Requires: TEXTSTREAM
Name: XPM Image Format
SeeAlso: ???

Feature: IMAGEFORMAT_PNG
Description: Supports the Portable Network Graphics image file format.
Section: Images
Requires:
Name: PNG Image Format
SeeAlso: ???

Feature: IMAGEFORMAT_JPEG
Description: Supports the Joint Photographic Experts Group image file format.
Section: Images
Requires:
Name: JPEG Image Format
SeeAlso: ???

Feature: IMAGE_HEURISTIC_MASK
Description: Supports creating a 1-bpp heuristic mask for images.
Section: Images
Requires:
Name: QImage::createHeuristicMask()
SeeAlso: ???

Feature: IMAGE_TEXT
Description: Supports image file text strings.
Section: Images
Requires:
Name: Image Text
SeeAlso: ???

# Painting

Feature: DIRECTPAINTER
Description: Supports direct access to the video hardware.
Section: Painting
Requires:
Name: QDirectPainter
SeeAlso: ???

Feature: PICTURE
Description: Supports recording and replaying QPainter commands.
Section: Painting
Requires:
Name: QPicture
SeeAlso: ???

Feature: COLORNAMES
Description: Supports color names such as "red", used by QColor
and by some HTML documents.
Section: Painting
Requires:
Name: Color Names
SeeAlso: ???

Feature: PRINTER
Description: Supports printing
Section: Painting
Requires: TEXTSTREAM PICTURE TEMPORARYFILE
Name: QPrinter
SeeAlso: ???

Feature: CUPS
Description Supports the Common UNIX Printing System
Section: Painting
Requires: PRINTER LIBRARY
Name: Common UNIX Printing System
SeeAlso: ???

Feature: PAINTONSCREEN
Description: Supports the Qt::WA_PaintOnScreen widget attribute.
Section: Painting
Requires:
Name: Qt::WA_PaintOnScreen
SeeAlso: ???

Feature: PAINT_DEBUG
Description: Debug painting with the environment variables QT_FLUSH_UPDATE and QT_FLUSH_PAINT
Section: Painting
Requires:
Name: Painting Debug Utilities
SeeAlso: ???

Feature: RASTERCALLBACKS
Description: Supports subclassing the QPaintEngineRaster with callback functions.
Section: Painting
Requires:
Name: Raster Paint Engine callback functions
SeeAlso: ???

# Fonts

Feature: FREETYPE
Description: Supports the FreeType 2 font engine (and its supported font formats).
Section: Fonts
Requires:
Name: Freetype Font Engine
SeeAlso: ???

Feature: QWS_QPF
Description: Supports Qt's pre-rendered fonts, a light-weight non-scalable font format
specific to Qt for Embedded Linux.
Section: Fonts
Requires:
Name: Qt Prerendered Font Format
SeeAlso: ???

Feature: QWS_QPF2
Description: Supports Qt's second generation of pre-rendered fonts, a light-weight
non-scalable font format specific to Qt for Embedded Linux.
Section: Fonts
Requires:
Name: Qt Prerendered Font Format 2
SeeAlso: ???

# Internationalization

Feature: TEXTCODECPLUGIN
Description: Supports custom text codecs that can be loaded dynamically into applications.
Section: Internationalization
Requires: TEXTCODEC LIBRARY
Name: QTextCodecPlugin
SeeAlso: ???

Feature: TRANSLATION
Description: Supports translations using QObject::tr().
Section: Internationalization
Requires:
Name: Translation
SeeAlso: ???

Feature: TRANSLATION_UTF8
Description: Supports translations using QObject::trUtf8().
Section: Internationalization
Requires: TRANSLATION TEXTCODEC
Name: Translation (UTF-8 representation)
SeeAlso: ???

Feature: TEXTCODEC
Description: Supports conversions between text encodings.
Section: Internationalization
Requires:
Name: QTextCodec
SeeAlso: ???

Feature: CODECS
Description: Supports non-unicode text conversions.
Section: Internationalization
Requires: TEXTCODEC
Name: Codecs
SeeAlso: ???

Feature: BIG_CODECS
Description: Supports big codecs, e.g. CJK.
Section: Internationalization
Requires:
Name: Big Codecs
SeeAlso: ???

Feature: QWS_INPUTMETHODS
Description: Supports international input methods.
Section: Internationalization
Requires: IM
Name: QWSInputMethod
SeeAlso: ???

# Networking

Feature: URLINFO
Description: Supports storage of URL information.
Section: Networking
Requires:
Name: QUrlInfo
SeeAlso: ???

Feature: HOSTINFO
Description: Supports host name lookups.
Section: Networking
Requires: TEXTSTREAM
Name: QHostInfo
SeeAlso: ???

Feature: FTP
Description: Supports FTP file access.
Section: Networking
Requires: URLINFO TEXTDATE
Name: File Transfer Protocol
SeeAlso: ???

Feature: HTTP
Description: Supports HTTP file access.
Section: Networking
Requires: HOSTINFO
Name: Hyper Text Transfer Protocol
SeeAlso: ???

Feature: UDPSOCKET
Description: Supports User Datagram Protocol sockets.
Section: Networking
Requires:
Name: QUdpSocket
SeeAlso: ???

Feature: NETWORKPROXY
Description: Supports configuring network layer proxy support to the Qt network classes.
Section: Networking
Requires:
Name: QNetworkProxy
SeeAlso: ???

Feature: SOCKS5
Description: Supports SOCKS v5 network proxy.
Section: Networking
Requires: NETWORKPROXY
Name:  SOCKS5
SeeAlso: ???

Feature: COP
Description: Supports the QCOP protocol, which is a many-to-many
communication protocol for transferring messages on various
channels, and Inter Process Communications (IPC).
Section: Networking
Requires:
Name: QCopChannel
SeeAlso: ???

Feature: NETWORKINTERFACE
Description: Supports listing the host's IP addresses and network interfaces
Section: Networking
Requires:
Name: QNetworkInterface
SeeAlso: ???

Feature: NETWORKDISKCACHE
Description: Supports a disk cache for network resources
Section: Networking
Requires: TEMPORARYFILE
Name: QNetworkDiskCache
SeeAlso: ???

# Utilities

Feature: COMPLETER
Description: Provides completions based on an item model.
Section: Utilities
Requires: PROXYMODEL
Name: QCompleter
SeeAlso: ???

Feature: FSCOMPLETER
Description: Provides completions based on an item model.
Section: Utilities
Requires: FILESYSTEMMODEL COMPLETER
Name: QCompleter
SeeAlso: ???

Feature: DESKTOPSERVICES
Description: Provides methods for accessing common desktop services.
Section: Utilities
Requires:
Name: QDesktopServices
SeeAlso: ???

Feature: SYSTEMTRAYICON
Description: Provides an icon for an application in the system tray.
Section: Utilities
Requires: 
Name: QSystemTrayIcon
SeeAlso: ???

Feature: UNDOCOMMAND
Description: Applies (redo or) undo of a single change in a document.
Section: Utilities
Requires:
Name: QUndoCommand
SeeAlso: ???

Feature: UNDOSTACK
Description: Provides the ability to (redo or) undo a list of changes in a document.
Section: Utilities
Requires: UNDOCOMMAND
Name: QUndoStack
SeeAlso: ???

Feature: UNDOGROUP
Description:
Section: Utilities
Requires: UNDOSTACK
Name: QUndoGroup
SeeAlso: ???

Feature: UNDOVIEW
Description: A widget which shows the contents of an undo stack.
Section: Utilities
Requires: UNDOSTACK LISTVIEW
Name: QUndoView
SeeAlso: ???

Feature: ACCESSIBILITY
Description: Provides accessibility support.
Section: Utilities
Requires: PROPERTIES MENUBAR
Name: Accessibility
SeeAlso: ???

Feature: ANIMATION
Description: Provides a framework for animations.
Section: Utilities
Requires: PROPERTIES
Name: Animation
SeeAlso: ???

Feature: STATEMACHINE
Description: Provides hierarchical finite state machines.
Section: Utilities
Requires: PROPERTIES
Name: State machine
SeeAlso: ???


# SVG

Feature: SVG
Description: Provides classes for displaying the contents of SVG files.
Section: SVG
Requires: XMLSTREAMREADER CSSPARSER
Name: QtSvg module
SeeAlso: ???

Feature: GRAPHICSSVGITEM
Description: Provides a QGraphicsItem that can be used to render the contents of SVG files.
Section: SVG
Requires: SVGRENDERER GRAPHICSVIEW
Name: QGraphicsSvgItem
SeeAlso: ???

Feature: SVGGENERATOR
Description: Provides a paint device that is used to create SVG drawings.
Section: SVG
Requires: SVG
Name: QSvgGenerator
SeeAlso: ???

Feature: SVGRENDERER
Description: Provides a class used to draw the contents of SVG files onto paint devices.
Section: SVG
Requires: SVG
Name: QSvgRenderer
SeeAlso: ???

Feature: SVGWIDGET
Description: Provides a widget that is used to display the contents of SVG files.
Section: SVG
Requires: SVGRENDERER
Name: QSvgWidget
SeeAlso: ???


# Qt for Embedded Linux

Feature: QWS_SOUNDSERVER
Description: Supports servers playing sounds.
Section: Qt for Embedded Linux
Requires: SOUND HOSTINFO QWS_MULTIPROCESS
Name: Sound Server
SeeAlso: ???

Feature: QWS_MULTIPROCESS
Description: Supports multi-process architecture.
Section: Qt for Embedded Linux
Requires:
Name: Multi-Process
SeeAlso: ???

Feature: QWS_KEYBOARD
Description: Supports the console keyboard.
Section: Qt for Embedded Linux
Requires:
Name: Keyboard
SeeAlso: ???

Feature: QWS_CURSOR
Description: Supports visible cursors.
Section: Qt for Embedded Linux
Requires: CURSOR
Name: Cursor
SeeAlso: ???

Feature: QWS_ALPHA_CURSOR
Description: Supports alpha-blended cursors.
Section: Qt for Embedded Linux
Requires:
Name: Alpha Cursor
SeeAlso: ???

Feature: QWS_MANAGER
Description: Supports the window manager.
Section: Qt for Embedded Linux
Requires: QWS_DECORATION_DEFAULT
Name: Manager
SeeAlso: ???

Feature: QWS_DECORATION_DEFAULT
Description: Supports default decoration of the top level windows.
Section: Qt for Embedded Linux
Requires:
Name: Decoration
SeeAlso: ???

Feature: QWS_DECORATION_WINDOWS
Description: Supports a "Windows" style decoration of the top level windows.
Section: Qt for Embedded Linux
Requires: QWS_DECORATION_DEFAULT
Name: Decoration (Windows Style)
SeeAlso: ???

Feature: QWS_DECORATION_STYLED
Description: Supports styled decoration of the top level windows.
Section: Qt for Embedded Linux
Requires: QWS_DECORATION_DEFAULT
Name: Decoration (Styled)
SeeAlso: ???

Feature: QWS_MOUSE
Description: Supports mouse drivers.
Section: Qt for Embedded Linux
Requires:
Name: Mouse
SeeAlso: ???

Feature: QWS_MOUSE_AUTO
Description: Supports auto-detected mouse drivers.
Section: Qt for Embedded Linux
Requires:
Name: Mouse (Auto)
SeeAlso: ???

Feature: QWS_MOUSE_MANUAL
Description: Supports non-autodetected mouse drivers.
Section: Qt for Embedded Linux
Requires:
Name: Mouse (Non-Auto)
SeeAlso: ???

Feature: QWS_PROPERTIES
Description: Supports window system properties.
Section: Qt for Embedded Linux
Requires:
Name: Properties
SeeAlso: ???

Feature: SXE
Description: Supports Safe Execution Environment (experimental).
Section: Qt for Embedded Linux
Requires: QWS_MULTIPROCESS
Name: SXE
SeeAlso: ???

Feature: QWSEMBEDWIDGET
Description: Provides embedding of a top-level window.
Section: Qt for Embedded Linux
Requires:
Name: QWSEmbedWidget
SeeAlso: ???

Feature: QWS_PROXYSCREEN
Description: Provides a proxy helper class used by some screen drivers.
Section: Qt for Embedded Linux
Requires:
Name: QProxyScreen
SeeAlso: ???

Feature: QWS_VNC
Description: Provides VNC screen driver
Section: Qt for Embedded Linux
Requires: QWS_PROXYSCREEN
Name: QVncScreen
SeeAlso: ???

Feature: QWS_TRANSFORMED
Description: Provides Transformed screen driver
Section: Qt for Embedded Linux
Requires: QWS_PROXYSCREEN
Name: QVncTransformed
SeeAlso: ???

Feature: QWS_DYNAMICSCREENTRANSFORMATION
Description: Enables dynamic setting of screen transformation/rotation.
Section: Qt for Embedded Linux
Requires: QWS_PROXYSCREEN
Name: Dynamic screen transformation.
SeeAlso: ???

# Windows

Feature: WIN_ACTIVEQT
Description: Support for ActiveQt
Section: Windows
Requires: PROPERTIES
Name: ActiveQt
SeeAlso: ???

# Phonon

Feature: PHONON_PLATFORMPLUGIN
Description: Support for platform plugin
Section: Phonon
Requires: LIBRARY
Name: Phonon::PlatformPlugin
SeeAlso: ???

Feature: PHONON_EFFECT
Description: Support for Audio Effect
Section: Phonon
Requires:
Name: Phonon::Effect
SeeAlso: ???

Feature: PHONON_AUDIOCAPTURE
Description: Support for Audio Capture
Section: Phonon
Requires:
Name: Support for Audio Capture
SeeAlso: ???

Feature: PHONON_EFFECTWIDGET
Description: Support for Audio Effect Widget
Section: Phonon
Requires: PHONON_EFFECT COMBOBOX SPINBOX
Name: Phonon::EffectWidget
SeeAlso: ???

Feature: PHONON_VOLUMEFADEREFFECT
Description: Support for Volume Fader Effect class
Section: Phonon
Requires: PHONON_EFFECT
Name: Phonon::VolumeFaderEffect
SeeAlso: ???


Feature: PHONON_OBJECTDESCRIPTIONMODEL
Description: Support for Object Description Model
Section: Phonon
Requires:
Name: Phonon::ObjectDescriptionModel
SeeAlso: ???

Feature: PHONON_VIDEO
Description: Support for Video
Section: Phonon
Requires:
Name: Phonon::VideoWidget
SeeAlso: ???

Feature: PHONON_VIDEOPLAYER
Description: Support for the Video Player class
Section: Phonon
Requires: PHONON_VIDEO
Name: Phonon::VideoPlayer
SeeAlso: ???


Feature: PHONON_SEEKSLIDER
Description: Support for the Seek Slider class
Section: Phonon
Requires: SLIDER
Name: Phonon::SeekSlider
SeeAlso: ???

Feature: PHONON_VOLUMESLIDER
Description: Support for the Volume Slider class
Section: Phonon
Requires: SLIDER TOOLBUTTON
Name: Phonon::VolumeSlider
SeeAlso: ???

Feature: PHONON_MEDIACONTROLLER
Description: Support for the MediaController class
Section: Phonon
Requires:
Name: Phonon::MediaController
SeeAlso: ???

Feature: PHONON_ABSTRACTMEDIASTREAM
Description: Support for streaming of raw data (QIODevice...)
Section: Phonon
Requires:
Name: Phonon::AbstractMediaStream
SeeAlso: ???

Feature: PHONON_SETTINGSGROUP
Description: Phonon settingsgroup
Section: Phonon
Requires: SETTINGS
Name: Phonon::AbstractMediaStream
SeeAlso: ???