summaryrefslogtreecommitdiffstats
path: root/src/tools/tqfeatures.txt
blob: d6a05abb4e4a5c486322e4d8e48266370a3e77bc (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
Feature: WORKSPACE
Section: Widgets
Requires: SCROLLBAR VBOX TITLEBAR RESIZEHANDLER POPUPMENU LABEL TOOLBUTTON MAINWINDOW TOOLBAR MENUBAR
Name: TQWorkspace
SeeAlso: ???

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

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

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

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

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


Feature: TABLE
Section: Widgets
Requires: COMBOBOX HEADER CHECKBOX
Name: TQTable
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: TQSqlForm
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: TQStringList
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: TQString::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: TQDate/TQTime/TQDateTime toString() and fromString()
SeeAlso: ???

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

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

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

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

Feature: DATASTREAM
Section: File I/O
Requires:
Name: TQDataStream
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: TQSignalMapper
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: TQFontDatabase
SeeAlso: ???

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

Feature: TRANSLATION_UTF8
Section: Internationalization
Requires: TRANSLATION TEXTCODEC
Name: Translations via TQObject::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: 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: CLIPBOARD
Section: Kernel
Requires: MIME
Name: Cut and paste
SeeAlso: ???

Feature: DRAGANDDROP
Section: Kernel
Requires: MIME 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 TQImage
SeeAlso: ???

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

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

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

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

Feature: IMAGE_TEXT
Section: Images
Requires: STRINGLIST
Name: Image file text strings
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: TQPicture
SeeAlso: ???

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

Feature: STYLE
Section: Widgets
Requires: DRAWUTIL
Name: TQStyle
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: 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: TQLabel
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: TQIconView
SeeAlso: ???

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

Feature: TEXTVIEW
Section: Widgets
Requires: TEXTEDIT
Name: TQTextView
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: TQTextBrowser
SeeAlso: ???

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

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

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

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

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

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

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

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

Feature: LISTVIEW
Section: Widgets
Requires: SCROLLVIEW HEADER LINEEDIT
Name: TQListView
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: TQColorDialog
SeeAlso: ???

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

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

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

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

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

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

Feature: PROGRESSDIALOG
Section: Widgets
Requires: DIALOG LABEL PUSHBUTTON PROGRESSBAR
Name: TQProgressDialog
SeeAlso: ???

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

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

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

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

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


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


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


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