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
|
format {TclDevKit Project File}
fmtver 2.0
fmttool {TclDevKit TclApp PackageDefinition} 2.5
## Saved at : Sun Feb 09 12:43:25 PST 2020
## By : aku
##
## Generated by "sak.tcl tap"
## of tklib 0.7
########
#####
###
##
#
# ###############
# Complete bundle
Package {tklib 0.7}
Base @TAP_DIR@
Platform *
Desc {Tklib: Bundle of all packages}
Path pkgIndex.tcl
Path autoscroll
Path canvas
Path chatwidget
Path controlwidget
Path ctext
Path cursor
Path crosshair
Path datefield
Path diagrams
Path getstring
Path history
Path ico
Path ipentry
Path khim
Path mentry
Path menubar
Path ntext
Path notifywindow
Path persistentSelection
Path plotchart
Path scrollutil
Path style
Path swaplist
Path tablelist
Path tkpiechart
Path tooltip
Path wcb
Path widget
Path widgetl
Path widgetPlus
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::tag" (0.1)
# [5] | "canvas::drag" (0.1)
# [6] | "canvas::edit::polyline" (0.1)
# [7] | "canvas::gradient" (0.2)
# [8] | "canvas::highlight" (0.1)
# [9] | "canvas::mvg" (1)
# [10] | "canvas::zoom" (0.2.1)
# [11] | "canvas::edit::quadrilateral" (0.1)
# [12] | "canvas::edit::points" (0.1)
# -------+
Package {__canvas 0.0}
Platform *
Desc {Variations on a canvas}
Hidden
Base @TAP_DIR@/canvas
Path canvas_drag.tcl
Path canvas_epoints.tcl
Path canvas_epolyline.tcl
Path canvas_equad.tcl
Path canvas_gradient.tcl
Path canvas_highlight.tcl
Path canvas_mvg.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::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::edit::polyline 0.1}
See __canvas
Platform *
Desc {Editing a polyline on a canvas}
Package {canvas::gradient 0.2}
See __canvas
Platform *
Desc {Canvas with a gradient background}
Package {canvas::highlight 0.1}
See __canvas
Platform *
Desc {Manage the highlighting of canvas items or item groups}
Package {canvas::mvg 1}
See __canvas
Platform *
Desc {Canvas to ImageMagick MVG vector format}
Package {canvas::zoom 0.2.1}
See __canvas
Platform *
Desc {Zoom control for canvas::sqmap}
Package {canvas::edit::quadrilateral 0.1}
See __canvas
Platform *
Desc {Editing a quadrilateral on a canvas}
Package {canvas::edit::points 0.1}
See __canvas
Platform *
Desc {Editing a cloud of points on a canvas}
#
# ###############
# ###################
# Module "chatwidget"
# [1] | "chatwidget" (1.1.0)
# -------+
Package {chatwidget 1.1.0}
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] | "tachometer" (0.1)
# [2] | "rdial" (0.7)
# [3] | "radioMatrix" (1.0)
# [4] | "controlwidget" (0.1)
# [5] | "meter" (1.0)
# [6] | "bindDown" (1.0)
# [7] | "led" (1.0)
# [8] | "voltmeter" (0.1)
# -------+
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 {tachometer 0.1}
See __controlwidget
Platform *
Desc {Tklib package}
Package {rdial 0.7}
See __controlwidget
Platform *
Desc {Tklib package}
Package {radioMatrix 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 {meter 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 {voltmeter 0.1}
See __controlwidget
Platform *
Desc {Tklib package}
#
# ######################
# ##############
# 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 "crosshair"
# [1] | "crosshair" (1.2)
# -------+
Package {crosshair 1.2}
Platform *
Desc {Crosshairs for Tk canvas}
Base @TAP_DIR@/crosshair
Path crosshair.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" (1)
# [3] | "diagram::application" (1.2)
# [4] | "diagram::navigation" (1)
# [5] | "diagram::core" (1)
# [6] | "diagram::direction" (1)
# [7] | "diagram::element" (1)
# [8] | "diagram::point" (1)
# [9] | "diagram::basic" (1.0.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 1}
See __diagrams
Platform *
Desc {Diagram drawing}
Package {diagram::application 1.2}
See __diagrams
Platform *
Desc {Tklib package}
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::point 1}
See __diagrams
Platform *
Desc {Tklib package}
Package {diagram::basic 1.0.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.1)
# -------+
Package {history 0.1}
Platform *
Desc {Provides a history for Entry widgets}
Base @TAP_DIR@/history
Path history.tcl
Path pkgIndex.tcl
#
# ################
# ############
# Module "ico"
# [1] | "ico" (0.3.2)
# [2] | "ico" (1.1)
# -------+
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.2}
See __ico
Platform *
Desc {Reading and writing windows icons}
Package {ico 1.1}
See __ico
Platform *
Desc {Reading and writing windows icons}
#
# ############
# ################
# Module "ipentry"
# [1] | "ipentry" (0.3)
# -------+
Package {ipentry 0.3}
Platform *
Desc {An IP address entry widget}
Base @TAP_DIR@/ipentry
Path ipentry.tcl
Path pkgIndex.tcl
#
# ################
# #############
# Module "khim"
# [1] | "khim" (1.0.1)
# -------+
Package {khim 1.0.1}
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 "mentry"
# [1] | "mentry::common" (3.10)
# -------+
Package {mentry::common 3.10}
Platform *
Desc {Tklib package}
Base @TAP_DIR@/mentry
Path mentry.tcl
Path mentry_tile.tcl
Path mentryPublic.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.tcl
Path scripts/tclIndex
#
# ###############
# ################
# Module "menubar"
# [1] | "menubar::node" (0.5)
# [2] | "menubar::debug" (0.5)
# [3] | "menubar::tree" (0.5)
# [4] | "menubar" (0.5)
# -------+
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}
See __menubar
Platform *
Desc {Creates an instance of the Class.}
#
# ################
# ##############
# Module "ntext"
# -------+
Package {menubar 0.5}
Platform *
Desc {Creates an instance of the Class.}
Base @TAP_DIR@/ntext
Path ntext.tcl
Path pkgIndex.tcl
#
# ##############
# #####################
# Module "notifywindow"
# [1] | "notifywindow" (1.0)
# -------+
Package {notifywindow 1.0}
Platform *
Desc {Provides unobtrusive window for alerts/notifications from Tk applications}
Base @TAP_DIR@/notifywindow
Path notifywindow.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.4.1)
# -------+
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 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.4.1}
See __plotchart
Platform *
Desc {Simple plotting and charting package}
#
# ##################
# ###################
# Module "scrollutil"
# [1] | "scrollutil::common" (1.5)
# -------+
Package {scrollutil::common 1.5}
Platform *
Desc {Tklib package}
Base @TAP_DIR@/scrollutil
Path pkgIndex.tcl
Path scripts/mwutil.tcl
Path scripts/scrollableframe.tcl
Path scripts/scrollarea.tcl
Path scripts/scrollsync.tcl
Path scripts/tclIndex
Path scripts/wheelEvent.tcl
Path scrollutil.tcl
Path scrollutil_tile.tcl
Path scrollutilCommon.tcl
#
# ###################
# ##############
# Module "style"
# [1] | "style::lobster" (0.2)
# [2] | "style" (0.3)
# [3] | "style::as" (1.4.1)
# -------+
Package {__style 0.0}
Platform *
Desc {Tklib module}
Hidden
Base @TAP_DIR@/style
Path as.tcl
Path lobster.tcl
Path pkgIndex.tcl
Path style.tcl
Package {style::lobster 0.2}
See __style
Platform *
Desc {Tklib package}
Package {style 0.3}
See __style
Platform *
Desc {Tklib package}
Package {style::as 1.4.1}
See __style
Platform *
Desc {Tklib package}
#
# ##############
# #################
# Module "swaplist"
# [1] | "swaplist" (0.2)
# -------+
Package {swaplist 0.2}
Platform *
Desc {A dialog which allows a user to move options between two lists}
Base @TAP_DIR@/swaplist
Path pkgIndex.tcl
Path swaplist.tcl
#
# #################
# ##################
# Module "tablelist"
# [1] | "tablelist::common" (6.8)
# -------+
Package {tablelist::common 6.8}
Platform *
Desc {Tklib package}
Base @TAP_DIR@/tablelist
Path pkgIndex.tcl
Path scripts/mwutil.tcl
Path scripts/pencil.cur
Path scripts/repair.tcl
Path scripts/tablelistBind.tcl
Path scripts/tablelistConfig.tcl
Path scripts/tablelistEdit.tcl
Path scripts/tablelistImages.tcl
Path scripts/tablelistMove.tcl
Path scripts/tablelistSort.tcl
Path scripts/tablelistThemes.tcl
Path scripts/tablelistUtil.tcl
Path scripts/tablelistWidget.tcl
Path scripts/tclIndex
Path tablelist.tcl
Path tablelist_tile.tcl
Path tablelistPublic.tcl
#
# ##################
# ###################
# Module "tkpiechart"
# [1] | "tkpiechart" (6.6)
# -------+
Package {tkpiechart 6.6}
Platform *
Desc {tkpiechart canvas label class}
Base @TAP_DIR@/tkpiechart
Path boxlabel.tcl
Path canlabel.tcl
Path labarray.tcl
Path objselec.tcl
Path perilabel.tcl
Path pie.tcl
Path pielabel.tcl
Path pkgIndex.tcl
Path relirect.tcl
Path selector.tcl
Path slice.tcl
Path tkpiechart.tcl
#
# ###################
# ################
# Module "tooltip"
# [1] | "tipstack" (1.0.1)
# [2] | "tooltip" (1.4.6)
# -------+
Package {__tooltip 0.0}
Platform *
Desc {widget::listsimple widget}
Hidden
Base @TAP_DIR@/tooltip
Path pkgIndex.tcl
Path tipstack.tcl
Path tooltip.tcl
Package {tipstack 1.0.1}
See __tooltip
Platform *
Desc {Tklib package}
Package {tooltip 1.4.6}
See __tooltip
Platform *
Desc {widget::listsimple widget}
#
# ################
# ############
# Module "wcb"
# [1] | "Wcb" (3.6)
# [2] | "wcb" (3.6)
# -------+
Package {__wcb 0.0}
Platform *
Desc {Tklib module}
Hidden
Base @TAP_DIR@/wcb
Path pkgIndex.tcl
Path scripts/tclIndex
Path scripts/wcbCommon.tcl
Path scripts/wcbEntry.tcl
Path scripts/wcbListbox.tcl
Path scripts/wcbTablelist.tcl
Path scripts/wcbText.tcl
Path scripts/wcbTreeview.tcl
Path wcb.tcl
Package {Wcb 3.6}
See __wcb
Platform *
Desc {Tklib package}
Package {wcb 3.6}
See __wcb
Platform *
Desc {Tklib package}
#
# ############
# ###############
# Module "widget"
# [1] | "widget::statusbar" (1.2.1)
# [2] | "widget::superframe" (1.0.1)
# [3] | "widget::ruler" (1.1)
# [4] | "widget::screenruler" (1.2)
# [5] | "widget::calendar" (1.0.1)
# [6] | "widget" (3.1)
# [7] | "widget::scrolledtext" (1.0)
# [8] | "widget::dateentry" (0.96)
# [9] | "widget::dialog" (1.3.1)
# [10] | "widget::scrolledwindow" (1.2.1)
# [11] | "widget::toolbar" (1.2.1)
# [12] | "widget::panelframe" (1.1)
# [13] | "widget::arrowbutton" (1)
# [14] | "widget::menuentry" (1.0.1)
# -------+
Package {__widget 0.0}
Platform *
Desc {widget::listsimple widget, Various megawidgets}
Hidden
Base @TAP_DIR@/widget
Path arrowb.tcl
Path calendar.tcl
Path dateentry.tcl
Path dialog.tcl
Path mentry.tcl
Path panelframe.tcl
Path pkgIndex.tcl
Path ruler.tcl
Path scrollw.tcl
Path statusbar.tcl
Path stext.tcl
Path superframe.tcl
Path toolbar.tcl
Path widget.tcl
Package {widget::statusbar 1.2.1}
See __widget
Platform *
Desc {Tklib package}
Package {widget::superframe 1.0.1}
See __widget
Platform *
Desc {Tklib package}
Package {widget::ruler 1.1}
See __widget
Platform *
Desc {Tklib package}
Package {widget::screenruler 1.2}
See __widget
Platform *
Desc {Tklib package}
Package {widget::calendar 1.0.1}
See __widget
Platform *
Desc {Calendar Megawidget}
Package {widget 3.1}
See __widget
Platform *
Desc {Toolbar Megawidget}
Package {widget::scrolledtext 1.0}
See __widget
Platform *
Desc {Tklib package}
Package {widget::dateentry 0.96}
See __widget
Platform *
Desc {Date Entry Megawidget}
Package {widget::dialog 1.3.1}
See __widget
Platform *
Desc {Tklib package}
Package {widget::scrolledwindow 1.2.1}
See __widget
Platform *
Desc {widget::listsimple widget}
Package {widget::toolbar 1.2.1}
See __widget
Platform *
Desc {Toolbar Megawidget}
Package {widget::panelframe 1.1}
See __widget
Platform *
Desc {Tklib package}
Package {widget::arrowbutton 1}
See __widget
Platform *
Desc {Tklib package}
Package {widget::menuentry 1.0.1}
See __widget
Platform *
Desc {Tklib package}
#
# ###############
# ################
# Module "widgetl"
# [1] | "widget::listentry" (0.1.2)
# [2] | "widget::listsimple" (0.1.2)
# -------+
Package {__widgetl 0.0}
Platform *
Desc {widget::listsimple widget, widget::listentry widget}
Hidden
Base @TAP_DIR@/widgetl
Path listentry.tcl
Path listsimple.tcl
Path pkgIndex.tcl
Package {widget::listentry 0.1.2}
See __widgetl
Platform *
Desc {widget::listentry widget}
Package {widget::listsimple 0.1.2}
See __widgetl
Platform *
Desc {widget::listsimple widget}
#
# ################
# ###################
# Module "widgetPlus"
# [1] | "widgetPlus" (1.0b2)
# -------+
Package {widgetPlus 1.0}
Platform *
Desc {Enhanced Entry, Spinbox, and Combobox Widgets with Undo/Redo and other useful features}
Base @TAP_DIR@/widgetPlus
Path pkgIndex.tcl
Path widgetPlus.tcl
#
# ###################
# ################
# Module "widgetv"
# [1] | "widget::validator" (0.1)
# -------+
Package {widget::validator 0.1}
Platform *
Desc {widget::validator behaviour}
Base @TAP_DIR@/widgetv
Path pkgIndex.tcl
Path validator.tcl
#
# ################
#
##
###
#####
########
|