-
Notifications
You must be signed in to change notification settings - Fork 24
/
tklib.tap
1403 lines (1188 loc) · 27.8 KB
/
tklib.tap
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
format {TclDevKit Project File}
fmtver 2.0
fmttool {TclDevKit TclApp PackageDefinition} 2.5
## Saved at : Sun Dec 08 11:27:46 CET 2024
## By : aku
##
## Generated by "sak.tcl tap"
## of tklib 0.9
########
#####
###
##
#
# ###############
# Complete bundle
Package {tklib 0.9}
Base @TAP_DIR@
Platform *
Desc {Tklib: Bundle of all packages}
Path pkgIndex.tcl
Path autoscroll
Path canvas
Path chatwidget
Path controlwidget
Path crosshair
Path ctext
Path cursor
Path datefield
Path diagrams
Path getstring
Path history
Path ico
Path ipentry
Path khim
Path map
Path mentry
Path menubar
Path notifywindow
Path ntext
Path persistentSelection
Path plotchart
Path scrollutil
Path shtmlview
Path style
Path swaplist
Path tablelist
Path text
Path tkpiechart
Path tooltip
Path treeview
Path wcb
Path widget
Path widgetPlus
Path widgetl
Path widgetv
# ###################
# Module "autoscroll"
# [1] | "autoscroll" (1.1)
# -------+
Package {autoscroll 1.1}
Platform *
Desc {Provides for a scrollbar to automatically mapped and unmapped as needed}
Base @TAP_DIR@/autoscroll
Path autoscroll.tcl
Path pkgIndex.tcl
#
# ###################
# ###############
# Module "canvas"
# [1] | "canvas::sqmap" (0.3.1)
# [2] | "canvas::snap" (1.0.1)
# [3] | "canvas::track::lines" (0.1)
# [4] | "canvas::edit::circle" (0.1)
# [5] | "canvas::tag" (0.1)
# [6] | "canvas::drag" (0.1)
# [7] | "canvas::gradient" (0.2)
# [8] | "canvas::edit::polyline" (0.2)
# [9] | "canvas::edit::rectangle" (0.1)
# [10] | "canvas::highlight" (0.1)
# [11] | "canvas::pdf" (1.0.1)
# [12] | "canvas::mvg" (1)
# [13] | "canvas::edit::quadrilateral" (0.2)
# [14] | "canvas::zoom" (0.2.1)
# [15] | "canvas::edit::points" (0.3)
# -------+
Package {__canvas 0.0}
Platform *
Desc {Variations on a canvas}
Hidden
Base @TAP_DIR@/canvas
Path canvas_drag.tcl
Path canvas_ecircle.tcl
Path canvas_epoints.tcl
Path canvas_epolyline.tcl
Path canvas_equad.tcl
Path canvas_erectangle.tcl
Path canvas_gradient.tcl
Path canvas_highlight.tcl
Path canvas_mvg.tcl
Path canvas_pdf.tcl
Path canvas_snap.tcl
Path canvas_sqmap.tcl
Path canvas_tags.tcl
Path canvas_trlines.tcl
Path canvas_zoom.tcl
Path pkgIndex.tcl
Package {canvas::sqmap 0.3.1}
See __canvas
Platform *
Desc {Canvas with map background based on square tiles}
Package {canvas::snap 1.0.1}
See __canvas
Platform *
Desc {Canvas snapshot to Tk photo image}
Package {canvas::track::lines 0.1}
See __canvas
Platform *
Desc {Tklib package}
Package {canvas::edit::circle 0.1}
See __canvas
Platform *
Desc {Editing a circle on a canvas}
Package {canvas::tag 0.1}
See __canvas
Platform *
Desc {Manage a group of rubber band lines}
Package {canvas::drag 0.1}
See __canvas
Platform *
Desc {Manage the dragging of canvas items or item groups}
Package {canvas::gradient 0.2}
See __canvas
Platform *
Desc {Canvas with a gradient background}
Package {canvas::edit::polyline 0.2}
See __canvas
Platform *
Desc {Editing a polyline on a canvas}
Package {canvas::edit::rectangle 0.1}
See __canvas
Platform *
Desc {Editing a rectangle on a canvas}
Package {canvas::highlight 0.1}
See __canvas
Platform *
Desc {Manage the highlighting of canvas items or item groups}
Package {canvas::pdf 1.0.1}
See __canvas
Platform *
Desc {Canvas to PDF}
Package {canvas::mvg 1}
See __canvas
Platform *
Desc {Canvas to ImageMagick MVG vector format}
Package {canvas::edit::quadrilateral 0.2}
See __canvas
Platform *
Desc {Editing a quadrilateral on a canvas}
Package {canvas::zoom 0.2.1}
See __canvas
Platform *
Desc {Zoom control for canvas::sqmap}
Package {canvas::edit::points 0.3}
See __canvas
Platform *
Desc {Editing a cloud of points on a canvas}
#
# ###############
# ###################
# Module "chatwidget"
# [1] | "chatwidget" (1.1.4)
# -------+
Package {chatwidget 1.1.4}
Platform *
Desc {Provides a multi-paned view suitable for display of chat room or irc channel information}
Base @TAP_DIR@/chatwidget
Path chatwidget.tcl
Path pkgIndex.tcl
#
# ###################
# ######################
# Module "controlwidget"
# [1] | "rdial" (0.7)
# [2] | "tachometer" (0.2)
# [3] | "radioMatrix" (1.0)
# [4] | "bindDown" (1.0)
# [5] | "led" (1.0)
# [6] | "meter" (1.0)
# [7] | "controlwidget" (0.1)
# [8] | "voltmeter" (0.2)
# -------+
Package {__controlwidget 0.0}
Platform *
Desc {controlwidget}
Hidden
Base @TAP_DIR@/controlwidget
Path bindDown.tcl
Path controlwidget.tcl
Path led.tcl
Path pkgIndex.tcl
Path radioMatrix.tcl
Path rdial.tcl
Path tachometer.tcl
Path vertical_meter.tcl
Path voltmeter.tcl
Package {rdial 0.7}
See __controlwidget
Platform *
Desc {Tklib package}
Package {tachometer 0.2}
See __controlwidget
Platform *
Desc {Tklib package}
Package {radioMatrix 1.0}
See __controlwidget
Platform *
Desc {Tklib package}
Package {bindDown 1.0}
See __controlwidget
Platform *
Desc {Tklib package}
Package {led 1.0}
See __controlwidget
Platform *
Desc {Tklib package}
Package {meter 1.0}
See __controlwidget
Platform *
Desc {Tklib package}
Package {controlwidget 0.1}
See __controlwidget
Platform *
Desc {Collection of widgets for displaying and controlling numerical values}
Package {voltmeter 0.2}
See __controlwidget
Platform *
Desc {Tklib package}
#
# ######################
# ##################
# Module "crosshair"
# [1] | "crosshair" (1.2.1)
# -------+
Package {crosshair 1.2.1}
Platform *
Desc {Crosshairs for Tk canvas}
Base @TAP_DIR@/crosshair
Path crosshair.tcl
Path pkgIndex.tcl
#
# ##################
# ##############
# Module "ctext"
# [1] | "ctext" (3.3)
# -------+
Package {ctext 3.3}
Platform *
Desc {Ctext a text widget with highlighting support}
Base @TAP_DIR@/ctext
Path ctext.tcl
Path pkgIndex.tcl
#
# ##############
# ###############
# Module "cursor"
# [1] | "cursor" (0.3.1)
# -------+
Package {cursor 0.3.1}
Platform *
Desc {Procedures to handle CURSOR data}
Base @TAP_DIR@/cursor
Path cursor.tcl
Path pkgIndex.tcl
#
# ###############
# ##################
# Module "datefield"
# [1] | "datefield" (0.3)
# -------+
Package {datefield 0.3}
Platform *
Desc {Tk datefield widget}
Base @TAP_DIR@/datefield
Path datefield.tcl
Path pkgIndex.tcl
#
# ##################
# #################
# Module "diagrams"
# [1] | "diagram::attribute" (1)
# [2] | "diagram::application" (1.3)
# [3] | "diagram" (1)
# [4] | "diagram::navigation" (1)
# [5] | "diagram::core" (1)
# [6] | "diagram::direction" (1)
# [7] | "diagram::element" (1)
# [8] | "diagram::basic" (1.0.1)
# [9] | "diagram::point" (1)
# -------+
Package {__diagrams 0.0}
Platform *
Desc {Documentation toolbox}
Hidden
Base @TAP_DIR@/diagrams
Path application.tcl
Path attributes.tcl
Path basic.tcl
Path core.tcl
Path diagram.tcl
Path direction.tcl
Path element.tcl
Path navigation.tcl
Path pkgIndex.tcl
Path point.tcl
Package {diagram::attribute 1}
See __diagrams
Platform *
Desc {Tklib package}
Package {diagram::application 1.3}
See __diagrams
Platform *
Desc {Tklib package}
Package {diagram 1}
See __diagrams
Platform *
Desc {Diagram drawing}
Package {diagram::navigation 1}
See __diagrams
Platform *
Desc {Tklib package}
Package {diagram::core 1}
See __diagrams
Platform *
Desc {Tklib package}
Package {diagram::direction 1}
See __diagrams
Platform *
Desc {Tklib package}
Package {diagram::element 1}
See __diagrams
Platform *
Desc {Tklib package}
Package {diagram::basic 1.0.1}
See __diagrams
Platform *
Desc {Tklib package}
Package {diagram::point 1}
See __diagrams
Platform *
Desc {Tklib package}
#
# #################
# ##################
# Module "getstring"
# [1] | "getstring" (0.1)
# -------+
Package {getstring 0.1}
Platform *
Desc {A string dialog}
Base @TAP_DIR@/getstring
Path pkgIndex.tcl
Path tk_getString.tcl
#
# ##################
# ################
# Module "history"
# [1] | "history" (0.3)
# -------+
Package {history 0.3}
Platform *
Desc {Provides a history for Entry widgets}
Base @TAP_DIR@/history
Path history.tcl
Path pkgIndex.tcl
#
# ################
# ############
# Module "ico"
# [1] | "ico" (0.3.5)
# [2] | "ico" (1.1.3)
# -------+
Package {__ico 0.0}
Platform *
Desc {Windows ICO handling}
Hidden
Base @TAP_DIR@/ico
Path ico.tcl
Path ico0.tcl
Path pkgIndex.tcl
Package {ico 0.3.5}
See __ico
Platform *
Desc {Reading and writing windows icons}
Package {ico 1.1.3}
See __ico
Platform *
Desc {Reading and writing windows icons}
#
# ############
# ################
# Module "ipentry"
# [1] | "ipentry" (0.3.2)
# -------+
Package {ipentry 0.3.2}
Platform *
Desc {An IP address entry widget}
Base @TAP_DIR@/ipentry
Path ipentry.tcl
Path pkgIndex.tcl
#
# ################
# #############
# Module "khim"
# [1] | "khim" (1.0.3)
# -------+
Package {khim 1.0.3}
Platform *
Desc {Provides key bindings for entering international characters on a keyboard that does not support them}
Base @TAP_DIR@/khim
Path cs.msg
Path da.msg
Path de.msg
Path en.msg
Path es.msg
Path khim.tcl
Path pkgIndex.tcl
Path pl.msg
Path ROOT.msg
Path ru.msg
Path uk.msg
#
# #############
# ############
# Module "map"
# [1] | "map::point::file" (0.1)
# [2] | "map::area::map-display" (0.1)
# [3] | "map::display" (0.1)
# [4] | "map::provider::osm" (0.1)
# [5] | "map::box::store::memory" (0.1)
# [6] | "map::box::store::fs" (0.1)
# [7] | "map::point::map-display" (0.1)
# [8] | "map::box::table-display" (0.1)
# [9] | "map::track::map-display" (0.1)
# [10] | "map::area::display" (0.1)
# [11] | "map::track::entry" (0.1)
# [12] | "map::area::file" (0.1)
# [13] | "map::box::map-display" (0.1)
# [14] | "map::area::store::fs" (0.1)
# [15] | "map::box::entry" (0.1)
# [16] | "map::area::store::memory" (0.1)
# [17] | "map::track::display" (0.1)
# [18] | "map::point::store::memory" (0.1)
# [19] | "map::point::store::fs" (0.1)
# [20] | "map::area::table-display" (0.1)
# [21] | "map::track::file" (0.1)
# [22] | "map::point::table-display" (0.1)
# [23] | "map::box::display" (0.1)
# [24] | "map::track::store::fs" (0.1)
# [25] | "map::mark" (0.1)
# [26] | "map::track::store::memory" (0.1)
# [27] | "map::track::table-display" (0.1)
# [28] | "map::box::file" (0.1)
# -------+
Package {__map 0.0}
Platform *
Desc {Map display support}
Hidden
Base @TAP_DIR@/map
Path area-display.tcl
Path area-file.tcl
Path area-map-display.tcl
Path area-store-fs.tcl
Path area-store-mem.tcl
Path area-table-display.tcl
Path box-display.tcl
Path box-entry.tcl
Path box-file.tcl
Path box-map-display.tcl
Path box-store-fs.tcl
Path box-store-mem.tcl
Path box-table-display.tcl
Path display.tcl
Path mark.tcl
Path pkgIndex.tcl
Path point-file.tcl
Path point-map-display.tcl
Path point-store-fs.tcl
Path point-store-mem.tcl
Path point-table-display.tcl
Path provider-osm.tcl
Path track-display.tcl
Path track-entry.tcl
Path track-file.tcl
Path track-map-display.tcl
Path track-store-fs.tcl
Path track-store-mem.tcl
Path track-table-display.tcl
Package {map::point::file 0.1}
See __map
Platform *
Desc {Reading/writing tklib geo/point files}
Package {map::area::map-display 0.1}
See __map
Platform *
Desc {Map Action Engine - Layer to display area definitions}
Package {map::display 0.1}
See __map
Platform *
Desc {Map Display Widget}
Package {map::provider::osm 0.1}
See __map
Platform *
Desc {Tile provider using OpenStreetMap Mapnik as origin}
Package {map::box::store::memory 0.1}
See __map
Platform *
Desc {In-memory store for geo/box definitions}
Package {map::box::store::fs 0.1}
See __map
Platform *
Desc {Filesystem-based store of geo/box definitions}
Package {map::point::map-display 0.1}
See __map
Platform *
Desc {Map Action Engine - Layer to display point definitions}
Package {map::box::table-display 0.1}
See __map
Platform *
Desc {Widget to display a table of box definitions}
Package {map::track::map-display 0.1}
See __map
Platform *
Desc {Map Action Engine - Layer to display track definitions}
Package {map::area::display 0.1}
See __map
Platform *
Desc {Widget to display a single geo/area definition}
Package {map::track::entry 0.1}
See __map
Platform *
Desc {Map Action Engine - Track Entry}
Package {map::area::file 0.1}
See __map
Platform *
Desc {Reading/writing tklib geo/area files}
Package {map::box::map-display 0.1}
See __map
Platform *
Desc {Map Action Engine - Layer to display box definitions}
Package {map::area::store::fs 0.1}
See __map
Platform *
Desc {Filesystem-based store of geo/area definitions}
Package {map::box::entry 0.1}
See __map
Platform *
Desc {Map Action Engine - Box Entry}
Package {map::area::store::memory 0.1}
See __map
Platform *
Desc {In-memory store for geo/area definitions}
Package {map::track::display 0.1}
See __map
Platform *
Desc {Widget to display a single track definition}
Package {map::point::store::memory 0.1}
See __map
Platform *
Desc {In-memory store for geo/point definitions}
Package {map::point::store::fs 0.1}
See __map
Platform *
Desc {Filesystem-based store of geo/point definitions}
Package {map::area::table-display 0.1}
See __map
Platform *
Desc {Widget to display a table of area definitions}
Package {map::track::file 0.1}
See __map
Platform *
Desc {Reading/writing tklib geo/track files}
Package {map::point::table-display 0.1}
See __map
Platform *
Desc {Tklib package}
Package {map::box::display 0.1}
See __map
Platform *
Desc {Widget to display a single box definition}
Package {map::track::store::fs 0.1}
See __map
Platform *
Desc {Filesystem-based store of geo/track definitions}
Package {map::mark 0.1}
See __map
Platform *
Desc {Map Action Engine - Mark A Point}
Package {map::track::store::memory 0.1}
See __map
Platform *
Desc {In-memory store for geo/track definitions}
Package {map::track::table-display 0.1}
See __map
Platform *
Desc {Widget to display a table of track definitions}
Package {map::box::file 0.1}
See __map
Platform *
Desc {Reading/writing tklib geo/box files}
#
# ############
# ###############
# Module "mentry"
# [1] | "mentry::common" (4.3.1)
# [2] | "mwutil" (2.23)
# -------+
Package {__mentry 0.0}
Platform *
Desc {Tklib module}
Hidden
Base @TAP_DIR@/mentry
Path mentry.tcl
Path mentry_tile.tcl
Path mentryCommon.tcl
Path pkgIndex.tcl
Path scripts/mentryDateTime.tcl
Path scripts/mentryFixedPoint.tcl
Path scripts/mentryIPAddr.tcl
Path scripts/mentryIPv6Addr.tcl
Path scripts/mentryThemes.tcl
Path scripts/mentryWidget.tcl
Path scripts/mwutil/mwutil.tcl
Path scripts/mwutil/pkgIndex.tcl
Path scripts/tclIndex
Package {mentry::common 4.3.1}
See __mentry
Platform *
Desc {Tklib package}
Package {mwutil 2.23}
See __mentry
Platform *
Desc {Tklib package}
#
# ###############
# ################
# Module "menubar"
# [1] | "menubar::node" (0.5)
# [2] | "menubar::debug" (0.5)
# [3] | "menubar::tree" (0.5)
# [4] | "menubar" (0.5.1)
# -------+
Package {__menubar 0.0}
Platform *
Desc {Create and manipulate menubars}
Hidden
Base @TAP_DIR@/menubar
Path debug.tcl
Path menubar.tcl
Path node.tcl
Path pkgIndex.tcl
Path tree.tcl
Package {menubar::node 0.5}
See __menubar
Platform *
Desc {Tklib package}
Package {menubar::debug 0.5}
See __menubar
Platform *
Desc {Tklib package}
Package {menubar::tree 0.5}
See __menubar
Platform *
Desc {Tklib package}
Package {menubar 0.5.1}
See __menubar
Platform *
Desc {Creates an instance of the Class.}
#
# ################
# #####################
# Module "notifywindow"
# [1] | "notifywindow" (1.0.1)
# -------+
Package {notifywindow 1.0.1}
Platform *
Desc {Provides unobtrusive window for alerts/notifications from Tk applications}
Base @TAP_DIR@/notifywindow
Path notifywindow.tcl
Path pkgIndex.tcl
#
# #####################
# ##############
# Module "ntext"
# [1] | "ntext" (1.0)
# -------+
Package {ntext 1.0}
Platform *
Desc {Alternative Bindings for the Text Widget}
Base @TAP_DIR@/ntext
Path ntext.tcl
Path pkgIndex.tcl
#
# ##############
# ############################
# Module "persistentSelection"
# [1] | "persistentSelection" (1.0b1)
# -------+
Package {persistentSelection 1.0}
Platform *
Desc {Enhanced PRIMARY selection}
Base @TAP_DIR@/persistentSelection
Path persistentSelection.tcl
Path pkgIndex.tcl
#
# ############################
# ##################
# Module "plotchart"
# [1] | "xyplot" (1.0.1)
# [2] | "plotanim" (0.2)
# [3] | "Plotchart" (2.7.0)
# -------+
Package {__plotchart 0.0}
Platform *
Desc {Plotchart}
Hidden
Base @TAP_DIR@/plotchart
Path pkgIndex.tcl
Path plot3d.tcl
Path plotanim.tcl
Path plotannot.tcl
Path plotaxis.tcl
Path plotbind.tcl
Path plotbusiness.tcl
Path plotchart.tcl
Path plotcombined.tcl
Path plotconfig.tcl
Path plotcontour.tcl
Path plotdendrogram.tcl
Path plotgantt.tcl
Path plotobject.tcl
Path plotpack.tcl
Path plotpriv.tcl
Path plotscada.tcl
Path plotspecial.tcl
Path plotstatustimeline.tcl
Path plottable.tcl
Path scaling.tcl
Path xyplot.tcl
Package {xyplot 1.0.1}
See __plotchart
Platform *
Desc {Tklib package}
Package {plotanim 0.2}
See __plotchart
Platform *
Desc {Tklib package}
Package {Plotchart 2.7.0}
See __plotchart
Platform *
Desc {Simple plotting and charting package}
#
# ##################
# ###################
# Module "scrollutil"
# [1] | "scaleutil" (1.14.1)
# [2] | "mwutil" (2.23)
# [3] | "scrollutil::common" (2.4)
# [4] | "themepatch" (1.8)
# -------+
Package {__scrollutil 0.0}
Platform *
Desc {Tklib module}
Hidden
Base @TAP_DIR@/scrollutil
Path pkgIndex.tcl
Path scripts/attrib.tcl
Path scripts/notebookImages.tcl
Path scripts/pagesman.tcl
Path scripts/plainnotebook.tcl
Path scripts/scrollableframe.tcl
Path scripts/scrollarea.tcl
Path scripts/scrollednotebook.tcl
Path scripts/scrollsync.tcl
Path scripts/tclIndex
Path scripts/utils/indicatorImgs/gifIndicatorImgs.tcl
Path scripts/utils/indicatorImgs/svgIndicatorImgs.tcl
Path scripts/utils/indicatorImgs/tclIndex
Path scripts/utils/mwutil.tcl
Path scripts/utils/pkgIndex.tcl
Path scripts/utils/scaleutil.tcl
Path scripts/utils/themepatch.tcl
Path scripts/wheelEvent.tcl
Path scrollutil.tcl
Path scrollutil_tile.tcl
Path scrollutilCommon.tcl
Package {scaleutil 1.14.1}
See __scrollutil
Platform *
Desc {Tklib package}
Package {mwutil 2.23}
See __scrollutil
Platform *
Desc {Tklib package}
Package {scrollutil::common 2.4}
See __scrollutil
Platform *
Desc {Tklib package}
Package {themepatch 1.8}
See __scrollutil
Platform *
Desc {Tklib package}
#
# ###################
# ##################
# Module "shtmlview"
# [1] | "shtmlview::mkdoc" (0.1)
# [2] | "shtmlview::doctools" (0.1)
# [3] | "shtmlview::shtmlview" (1.1.2)
# -------+
Package {__shtmlview 0.0}
Platform *
Desc {Basic HTML and Markdown viewer widget}
Hidden
Base @TAP_DIR@/shtmlview
Path pkgIndex.tcl
Path shtmlview-doctools.tcl
Path shtmlview-mkdoc.tcl
Path shtmlview.tcl
Package {shtmlview::mkdoc 0.1}
See __shtmlview
Platform *
Desc {Tklib package}
Package {shtmlview::doctools 0.1}
See __shtmlview
Platform *
Desc {Tklib package}
Package {shtmlview::shtmlview 1.1.2}
See __shtmlview
Platform *
Desc {Extended Tcl/Tk text widget with basic support for rendering of HTML and Markdown}
#
# ##################
# ##############
# Module "style"
# [1] | "style::lobster" (0.2)
# [2] | "style::as" (1.4.1)
# [3] | "style" (0.3)
# -------+