home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 December / PCWorld_2000-12_cd.bin / Komunikace / Comanche / BWidget-1.2 / README.txt < prev    next >
Text File  |  2000-11-02  |  5KB  |  148 lines

  1. 05/21/1999
  2. BWidget ToolKit 1.2
  3. Copyright (c) 1998-1999 UNIFIX. 
  4.  
  5. --------------------------------------------------------------------------
  6. WHAT IS BWIDGET ?
  7.  
  8. The BWidget Toolkit is a high-level Widgets Set for Tcl/Tk built using
  9. native Tcl/Tk 8.x namespaces.
  10.  
  11. The BWidgets have a professional look&feel as in other well known Toolkits 
  12. (Tix or Incr Widget) but the concept is radically different because everything is 
  13. native so no platform compilation, no compiled extension library are needed. 
  14. The code is 100% Pure Tcl/Tk.
  15.  
  16.  
  17. --------------------------------------------------------------------------
  18. WIDGET LIST (1.2)
  19.  
  20. Simple Widgets 
  21.       Label           Extended Label widget
  22.       Entry           Extended Entry widget
  23.       Button          Extended Button widget
  24.       ArrowButton     Button widget with an arrow shape.
  25.       ProgressBar     Progress indicator widget
  26.       ScrollView      Display the visible area of a scrolled window
  27.       Separator       3D separator widget
  28.  
  29. Manager Widgets 
  30.       MainFrame       Manage toplevel with menu, toolbar and statusbar 
  31.       LabelFrame      Frame with a Label
  32.       TitleFrame      Frame with a title
  33.       ScrolledWindow  Generic scrolled widget
  34.       ScrollableFrame Scrollable frame containing widget
  35.       PanedWindow     Tiled layout manager widget
  36.       ButtonBox       Set of buttons with horizontal or vertical layout
  37.       PagesManager    Pages manager widget
  38.       NoteBook        Notebook manager widget
  39.       Dialog          Dialog abstraction with custom buttons
  40.  
  41. Composite Widgets 
  42.       LabelEntry      LabelFrame containing an Entry widget. 
  43.       ComboBox        ComboBox widget
  44.       SpinBox         SpinBox widget
  45.       Tree            Tree widget
  46.       ListBox         ListBox widget
  47.       MessageDlg      Message dialog box
  48.       ProgressDlg     Progress indicator dialog box
  49.       PasswdDlg       Login/Password dialog box (contributed by Stephane Lavirotte)
  50.       SelectFont      Font selection widget
  51.       SelectColor     Color selection widget
  52.  
  53. Commands Classes 
  54.       Widget          The Widget base class
  55.       DynamicHelp     Provide help to Tk widget or BWidget
  56.       DragSite        Commands set for Drag facilities
  57.       DropSite        Commands set for Drop facilities
  58.       BWidget         Utilities
  59.  
  60. --------------------------------------------------------------------------
  61. INSTALLATION AND USE
  62.  
  63. - On Unix Platform:
  64.   Uncompress the file BWidget-1.2.tar.Z or BWidget-1.2.tar.gz
  65.  
  66.   To use the BWidget:
  67.   - If you have uncompressed the archive file under the Tcl Library Path
  68.     directory, you only need to do:
  69.       % package require BWidget
  70.   - If not, you have to specify the BWidget installation path in auto_path
  71.     global variable:
  72.       % lappend auto_path <install_path>
  73.       % package require BWidget
  74.  
  75.   To launch the demo, you need to cd into the demo subdirectory:
  76.       $ cd <install_path>/demo
  77.       $ wish demo.tcl
  78.  
  79. - On Windows and others Platforms:
  80.   Uncompress the file BWidget-1.2.zip
  81.  
  82.   To use the BWidget:
  83.   - If you uncompressed the archive file under the Tcl Library Path
  84.     directory, you only need to do:
  85.       % package require BWidget
  86.   - If not, you have to specify the BWidget installation path in auto_path
  87.     global variable:
  88.       % lappend auto_path your_path
  89.       % package require BWidget
  90.  
  91.   To launch the demo :
  92.       Double click on demo.tcl in the demo subdirectory
  93.  
  94.  
  95. Distribution contains these directories:
  96.  
  97. BWidget-1.2   Root directory and BWidget Tcl sources
  98.    BWman        HTML manual pages
  99.    images       images used by BWidget
  100.    lang         Resources for language customization
  101.    demo         Demo sources
  102.  
  103.  
  104. --------------------------------------------------------------------------
  105. DOCUMENTATION
  106.  
  107. HTML manual pages are available in the BWman subdirectory.
  108. Points to index.html for frame version with tree navigation,
  109. or to contents.html for no frame version.
  110.  
  111. Look at http://www.unifix-online.com/BWidget for last revision
  112. of manual pages.
  113.  
  114.  
  115. --------------------------------------------------------------------------
  116. LICENSE
  117.  
  118. BWidget ToolKit 1.2
  119. Copyright (c) 1998-1999 UNIFIX. 
  120.  
  121. This library is free software; you can redistribute it and/or
  122. modify it under the terms of the GNU Library General Public
  123. License as published by the Free Software Foundation; either
  124. version 2 of the License, or (at your option) any later version.
  125.  
  126. This library is distributed in the hope that it will be useful,
  127. but WITHOUT ANY WARRANTY; without even the implied warranty of
  128. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  129. Library General Public License for more details.
  130.  
  131. You should have received a copy of the GNU Library General Public
  132. License along with this library; if not, write to the
  133. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  134. Boston, MA  02111-1307, USA.
  135.  
  136.  
  137. License is also in LICENSE.txt. You can find LGPL.txt too.
  138.  
  139. --------------------------------------------------------------------------
  140. CONTACTS
  141.  
  142. Mail         mailto:bwidget@unifix-online.com
  143. Home page    http://www.unifix-online.com/BWidget/
  144.  
  145. Bug Report and FAQ : See Home Page
  146.  
  147.  
  148.