home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / CDROM / FAQs / Objective-C / classes < prev    next >
Encoding:
Internet Message Format  |  1996-10-17  |  51.3 KB

  1. Path: informatik.tu-muenchen.de!fu-berlin.de!news.mathworks.com!howland.erols.net!surfnet.nl!news.tue.nl!usenet
  2. From: tiggr@es.ele.tue.nl (Tiggr)
  3. Newsgroups: comp.lang.objective-c,comp.answers,news.answers
  4. Subject: comp.lang.objective-c FAQ, part 2/3: ClassWare Listing
  5. Supersedes: <classes_842976002@es.ele.tue.nl>
  6. Followup-To: comp.lang.objective-c
  7. Date: 17 Oct 1996 16:00:04 GMT
  8. Organization: Eindhoven University of Technology, the Netherlands
  9. Lines: 1322
  10. Approved: news-answers-request@mit.edu
  11. Expires: 26 Nov 1996 16:00:01 GMT
  12. Message-ID: <classes_845568001@es.ele.tue.nl>
  13. Reply-To: tiggr@es.ele.tue.nl (Tiggr)
  14. NNTP-Posting-Host: krait.es.ele.tue.nl
  15. Summary: This second part of the comp.lang.objective-c FAQ postings
  16.     gives an overview of available class libraries.
  17. Xref: informatik.tu-muenchen.de comp.lang.objective-c:5926 comp.answers:21750 news.answers:84432
  18.  
  19. Archive-name: Objective-C/classes
  20. Version: $Id: classes,v 3.29 1996/09/20 15:51:43 tiggr Exp $
  21.  
  22.  
  23.  
  24.                 Objective-C
  25.  
  26.                  ClassWare Listing
  27.  
  28.  
  29.  
  30. This is the second of three FAQ postings for comp.lang.objective-c.  This
  31. posting lists available kits and classes, to aid the reader in answering the
  32. question `to re-use or to re-invent?'.    In order to keep this list up to date
  33. and as interesting and diverse as possible, send your additions, deletions
  34. and suggestions to tiggr@es.ele.tue.nl.
  35.  
  36. The available classes and kits are categorized as follows:
  37.  
  38.     Stepstone    Stepstone libraries,
  39.             for use with Stepstone's environment
  40.     NeXT        NeXT kits, for use with NEXTSTEP
  41.     FSF        FSF maintained/released classes
  42.             for use with GNU CC
  43.  
  44.     Third Party    commercial classes
  45.         OS/2 Objective C class library
  46.         BARCODEKIT
  47.         SERIALPORTKIT
  48.         BPG Blocks
  49.         Objective-C Views---UI library for MS Windows
  50.         OBJECT:Math---extensible match and string handling
  51.         Store---OO user level virtual file system
  52.         DOME 3.0---distributed object management environment
  53.         Computer Algebra Kit [gnu, nextstep, stepstone]
  54.         Objective-Framework, Objective-Browser
  55.  
  56.     GPL        classes released under the GPL
  57.         objcX    [gnu]
  58.         Tcl/Objective-C Interface Library [gnu, nextstep]
  59.         Tiggr's Objective-C Library    [gnu, nextstep]
  60.  
  61.     Public Domain    public domain classes---no GPL
  62.         IconKit    [nextstep]
  63.         MiscKit    [nextstep / openstep]
  64.         MusicKit    [nextstep]
  65.         ObjectPak---collection class library [gnu, nextstep, stepstone]
  66.  
  67. Stepstone
  68.  
  69.     Bundled with the compiler is ICpak 101 Foundation Class Library.  This
  70.     library provides twenty classes and more than three hundred methods
  71.     including such things as Collections (OrdCltn, Stack, Set, Dictionary,
  72.     SortCltn), Arrays (IdArray, IntArray), String, Sequences, Automatic
  73.     Object I/O (ASCII Filer), etc.
  74.  
  75.     The ICpak 201 Graphical User Interface library is used to build iconic
  76.     multi window user interfaces for workstation applications.    The library
  77.     consists of 58 classes and over 1,100 methods.  Classes include such
  78.     things as Controllers, Menu's, Menu Items, Icons, Windows(StdLayer),
  79.     Timers, Buttons, Text, etc, etc.  ICpak 201 is ported to X Windows,
  80.     OpenWindows, Motif and SunView and provides a consistent user interface/
  81.     look-and-feel between all platforms.
  82.  
  83.     Contact
  84.  
  85.     The Stepstone Corporation
  86.     75 Glen Road
  87.     Sandy Hook, CT 06482
  88.     tel: +1 203 426-1875
  89.     fax: +1 203 270-0106
  90.     telex: 506127
  91.  
  92. NeXT
  93.  
  94.     Common Classes
  95.  
  96.     Several classes provided with NeXTSTEP do not belong to a specific
  97.     kit: Object (core of the runtime system, root of the general class
  98.     hierarchy), Storage, List (an abstract array), HashTable (to store
  99.     (key, object) associations), NXStringTable (to store (key, string)
  100.     associations) and NXBundle (file-resources management and dynamic
  101.     loading).
  102.  
  103.     Application Kit
  104.  
  105.     The Application Kit defines a set of Objective-C classes and
  106.     protocols, C functions, and assorted constants and data types that
  107.     are used by virtually every NeXTSTEP application.  The pith of the
  108.     Kit are the tools it provides for implementing a graphical,
  109.     event-driven user interface:
  110.  
  111.         The Application Kit provides classes---most notably Window and
  112.         View---that make drawing on the screen exquisitely succinct.
  113.         Much of the unromantic work that's involved in
  114.         drawing---communicating with hardware devices and screen
  115.         buffers, clearing areas of the screen before drawing,
  116.         coordinating overlapping drawing areas---is taken care of for
  117.         you, letting you concentrate on the much more gratifying task of
  118.         supplying code that simply draws.  And even this task is
  119.         assisted by many of the other classes and a number of C
  120.         functions that provide drawing code for you.
  121.  
  122.         The Application Kit makes event handling extremely simple.    The
  123.         Responder class, from which many of the Kit's classes inherit,
  124.         defines a mechanism by which the user's actions are passed to
  125.         the objects in your application that can best respond to them.
  126.         The Application class, which inherits from Responder,
  127.         establishes the low-level connections that makes this system
  128.         possible.  It provides methods that inform your application of
  129.         watershed events, such as when the user makes the application
  130.         active and inactive, and when the user logs out or turns off the
  131.         computer.
  132.  
  133.     By using these tools, you bless your application with a look and
  134.     feel that's similar to other applications, making it easier for the
  135.     user to recognize and use.
  136.  
  137.     (Introduction from the NeXTSTEP General Reference, "Application Kit"
  138.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  139.     All rights reserved.)
  140.  
  141.     Database Kit
  142.  
  143.     The Database Kit provides a comprehensive set of tools, classes, and
  144.     protocols for building applications that use a high-level
  145.     entity-relationship model to manipulate database servers such as
  146.     those provided by Oracle or Sybase.  The kit provides services that
  147.     include:
  148.  
  149.         Communication with client-server databases.
  150.  
  151.         Modeling properties (attributes and relationships) of each
  152.         database.
  153.  
  154.         Record management and buffering.
  155.  
  156.         Data flow between record managers and the application user
  157.         interface.
  158.  
  159.         User interface objects for display and editing.
  160.  
  161.     (Introduction from the NeXTSTEP General Reference, "Database Kit"
  162.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  163.     All rights reserved.)
  164.  
  165.     Distributed Objects
  166.  
  167.     The Distributed Objects system provides a relatively simple way for
  168.     applications to communicate with one another by allowing them to
  169.     share Objective-C objects, even amongst applications running on
  170.     different machines across a network.  They are useful for
  171.     implementing client-server and cooperative applications.  The
  172.     Distributed Objects system subsumes the network aspects of typical
  173.     remote procedure call (RPC) programming, and allow an application to
  174.     send messages to remote objects using ordinary Objective-C syntax.
  175.  
  176.     The Distributed Objects system takes the form of two classes,
  177.     NXConnection and NXProxy.  NXConnection objects are primarily
  178.     bookkeepers that manage resources passed between applications.
  179.     NXProxy objects are local objects that represent remote objects.
  180.     When a remote object is passed to your application, it is passed in
  181.     the form of a proxy that stands in for the remote object; messages
  182.     to the proxy are forwarded to the remote object, so for most intents
  183.     and purposes the proxy can be treated as though it were the object
  184.     itself.     Note that direct access to instance variables of the remote
  185.     object isn't available through the proxy.
  186.  
  187.     (Introduction from the NeXTSTEP General Reference, "Distributed Objects"
  188.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  189.     All rights reserved.)
  190.  
  191.     Indexing Kit
  192.  
  193.     The Indexing Kit is a set of programmatic tools for managing data,
  194.     especially the large amounts of data characteristic of information
  195.     intensive applications.     Much as the Application Kit provides a
  196.     framework for a graphical interface, the Indexing Kit provides a
  197.     framework for data management.
  198.  
  199.     The Indexing Kit supplies facilities for building custom databases
  200.     and for searching the UNIX file system.     Key benefits include
  201.     guaranteed data integrity, excellent performance, thread-safe
  202.     operation, tight integration with the NeXTSTEP programming
  203.     environment, and the ability to efficiently store and retrieve
  204.     Objective-C objects and unstructured data like text, sound, and
  205.     images.
  206.  
  207.     The Indexing Kit consists of:
  208.  
  209.         A transaction-oriented foundation for storing and retrieving
  210.         persistent data, using virtual memory mapping for efficient
  211.         random access to parts of a file without reading or writing the
  212.         entire file. Transactions guarantee data integrity on persistent
  213.         storage media, and are also used to manage concurrent access to
  214.         shared data.
  215.  
  216.         Fast sequential and associative access to stored data.
  217.         Associative access is untyped, in that the programmer defines
  218.         the data types of keys and their ordering by means of a
  219.         comparison function or a format string.
  220.  
  221.         A simple data management capability based on the Objective-C
  222.         run-time system.  Records can be moved efficiently between
  223.         working memory and the storage substrate in the form of
  224.         Objective-C objects.  Multiple indexes can be built over
  225.         programmer-defined attributes, so that records can be ordered
  226.         and retrieved by the values of their indexed attributes.
  227.  
  228.         A general query processing facility, including a declarative
  229.         query language and its interpreter.     Queries can be applied to
  230.         individual objects, to collections of objects, or to the
  231.         attribute/value lists produced by Indexing Kit's customizable
  232.         text processing tools.
  233.  
  234.         High-level file system searching facilities based on the
  235.         supporting layers described above, including fast literal
  236.         searching of file contents.
  237.  
  238.     (Introduction from the NeXTSTEP General Reference, "Indexing Kit"
  239.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  240.     All rights reserved.)
  241.  
  242.     Mach Kit
  243.  
  244.     The Mach Kit provides an object-oriented interface to some of the
  245.     features of the Mach operating system.    At this time, it is most
  246.     useful to applications that make use of the Distributed Objects
  247.     system, since these applications rely upon Mach's message sending
  248.     abilities to transport objects, ports, and data between processes.
  249.     The Mach Kit may also be useful for drivers and multi threaded
  250.     applications.  The Mach Kit provides several classes and protocols,
  251.     listed below.
  252.  
  253.     (Introduction from the NeXTSTEP General Reference, "Mach Kit"
  254.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  255.     All rights reserved.)
  256.  
  257.     NetInfo Kit
  258.  
  259.     The NetInfo Kit is a collection of classes and a single function
  260.     used to provide a connection to and interface with NetInfo domains.
  261.     The NetInfo Kit provides classes for basic interface with a domain
  262.     as well as specialized panels.
  263.  
  264.     (Introduction from the NeXTSTEP General Reference, "NetInfo Kit"
  265.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  266.     All rights reserved.)
  267.  
  268.     3D Kit
  269.  
  270.     The 3D Graphics Kit enables NeXTSTEP applications to model and
  271.     render 3-dimensional scenes.  Much as the Application Kit's 2D
  272.     graphics capabilities are based on the Display PostScript
  273.     interpreter, the 3D Kit's capabilities are based on the Interactive
  274.     RenderMan renderer.  There are both similarities and differences in
  275.     the inner workings of the two implementations.
  276.  
  277.     One similarity is that both are implemented with a client-server
  278.     model, in which client applications send drawing code to the Window
  279.     Server, which does the actual drawing.    Another similarity is that
  280.     N3DCamera---the 3D Kit's View---generates all drawing code, both 2D
  281.     and 3D, when its drawSelf: method is invoked.  This keeps the
  282.     Application Kit's display mechanism intact for both PostScript and
  283.     RenderMan drawing.
  284.  
  285.     One difference in the implementations is in the code generated for
  286.     drawing. For 2D drawing, a View sends PostScript code to the Window
  287.     Server's Display PostScript interpreter.  For 3D drawing, a View
  288.     sends RenderMan Interface Bytestream (RIB) code to the Window
  289.     Server's Interactive RenderMan renderer.
  290.  
  291.     (Introduction from the NeXTSTEP General Reference, "3D Graphics Kit"
  292.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  293.     All rights reserved.)
  294.  
  295.     Sound Kit
  296.  
  297.     The Sound Kit is designed to provide both low- and high-level access
  298.     to sound hardware on workstations running NeXTSTEP, including
  299.     support for a wide variety of sound formats, real-time mixing and
  300.     compression.  The Sound Kit consists of five general categories of
  301.     objects:
  302.  
  303.         Sound Device Objects
  304.  
  305.         Sound Device objects, like NXSoundIn and NXSoundOut,
  306.         wrap the low-level hardware and sound drivers into
  307.         simple, extensible packages.
  308.  
  309.         Sound Streams
  310.  
  311.         Sound Stream objects, like NXPlayStream or NXRecordStream,
  312.         allow the sound output of many simultaneous programs to be
  313.         mixed, scaled, and processed before being sent out the Sound
  314.         objects.
  315.  
  316.         The Sound Object
  317.  
  318.         The Sound object is NeXTSTEP's fundamental sound data
  319.         storage and playback/recording facility.
  320.  
  321.         The SoundView Object
  322.  
  323.         NeXTSTEP's Sound View is a graphical display of sound data
  324.         that interacts well with the NeXTSTEP GUI.
  325.  
  326.         The Sound Meter Object
  327.  
  328.         The Sound Meter displays the current running amplitude of a
  329.         playing or recording sound (in mono), much like volume
  330.         meters on amplifiers or tape decks.
  331.  
  332.     In addition to this library, NeXT provides two sets of sound driver
  333.     and sound access functions.
  334.  
  335.     NXLiveVideoView
  336.  
  337.     The NXLiveVideoView class provides API for interactive display of
  338.     live video on the screen of a NeXTdimension Computer.  The
  339.     NXLiveVideoView class specification provides a complete discussion
  340.     of the NeXTdimension Computer's video capabilities and the API
  341.     provided by NXLiveVideoView.
  342.  
  343.     (Introduction from the NeXTSTEP General Reference, "Video"
  344.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  345.     All rights reserved.)
  346.  
  347.     Applications
  348.  
  349.     There are several classes which solely exist to enable the
  350.     programmer to add functionality to specific existing NEXTSTEP
  351.     applications:
  352.  
  353.         IBPalette, IBInspector
  354.  
  355.         These classes allow developers to expand the functionality
  356.         of the Interface Builder application, creating their own
  357.         palettes of objects that can be dragged into an interface,
  358.         and inspectors to set and view the attributes of those
  359.         objects.
  360.  
  361.         Layout
  362.  
  363.         This class allows developers to add their own modules to the
  364.         Preferences application.
  365.  
  366.         WMInspector
  367.  
  368.         This class allows developers to add their own file contents
  369.         inspectors to the Workspace Manager application.
  370.  
  371.     Portable Distributed Objects (PDO)
  372.  
  373.     PDO makes it possible to deploy server-based objects on non-NEXTSTEP
  374.     server machines.  PDO provides this framework by extending the same
  375.     seamless object framework that NEXTSTEP developers already use for
  376.     local and distributed objects.
  377.  
  378.     Enterprise Objects Framework (EOF)
  379.  
  380.     Enterprise Objects Framework seamlessly extends the power of
  381.     NEXTSTEP's object-oriented paradigm to the development of
  382.     client-server database applications.
  383.  
  384.     Other
  385.  
  386.     Before NeXTSTEP 3.0, MusicKit was distributed as part of NEXTSTEP.
  387.     MusicKit is now maintained and made available by CCRMA (see the
  388.     entry under `Public Domain Kits').  Also until the advent of
  389.     NeXTSTEP 3.0, PhoneKit was part of NeXTSTEP.  PhoneKit classes
  390.     provided easy to ISDN connections.
  391.  
  392.     Contact
  393.  
  394.     NeXT Computer, Inc.
  395.     900 Chesapeake Drive
  396.     Redwood City, CA 94063
  397.     tel: +1 800 848 NEXT
  398.     fax: +1 415 780 2801
  399.     email: NeXTanswers@NeXT.COM
  400.  
  401. FSF
  402.  
  403.     Object
  404.  
  405.     Object is the root class which comes as part of the Objective-C
  406.     runtime library provided with the GNU CC compiler.
  407.  
  408.     GNU Objective-C Class Library
  409.  
  410.     The GNU Objective C Class Library, version 0.1.19, is now available.
  411.  
  412.     What is the GNU Objective C Class Library?
  413.     ==========================================
  414.  
  415.         It is a library of general-purpose, non-graphical Objective C
  416.         objects designed in the Smalltalk tradition.  It includes
  417.         collection objects for maintaining groups of objects and C
  418.         types, streams for I/O to various destinations, coders for
  419.         formating objects and C types to streams, ports for network
  420.         packet transmission, distributed objects (remote object
  421.         messaging), pseudo-random number generators, string handling,
  422.         and time handling facilities.
  423.  
  424.     Noteworthy changes since version `0.1.10'
  425.     =========================================
  426.  
  427.       * Now using `src', `config' and `doc' directories to un-clutter
  428.         the top-level directory.
  429.  
  430.       * New GNUStep classes implemented: NSDictionary,
  431.         NSMutableDictionary; concrete classes NSGDictionary,
  432.         NSGMutableDictionary; enumeration classes
  433.         NSGDictionaryKeyEnumerator, NSGDictionaryObjectEnumerator.
  434.  
  435.       * More methods in NSData are implemented, thanks to Albin Jones.
  436.  
  437.       * More methods in NSString are implemented; we have new classes
  438.         NSCharacterSet and NSBitmapCharSet; all thanks to Adam Fedor.
  439.  
  440.       * And several bug fixes.  See the ChangeLog for details.
  441.  
  442.     Where can you get it?  How can you compile it?
  443.     ==============================================
  444.  
  445.         The library requires gcc 2.7.0 or higher.  The library does not
  446.         work with the NEXTSTEP 3.2 compiler because that version of
  447.         NeXT's cc cannot handle nested functions.  Until a later release
  448.         from NeXT, NEXTSTEP users will have to install gcc.  See the
  449.         `INSTALL' file for more instructions about compiling and
  450.         installing the library.
  451.  
  452.         The library has been successfully compiled and tested with the
  453.         following configurations: mips-sgi-irix5.2
  454.  
  455.         Some previous snapshots of the library worked with these
  456.         configurations, but they haven't been tested recently (We are
  457.         looking for a volunteer to write a test suite using dejagnu):
  458.         sparc-sun-sunos4.1.3, m68k-next-nextstep3.0, rs6000-ibm-aix3.2,
  459.         sparc-sun-solaris2.3, i386-unknown-linux, i386-sun-solaris2.4,
  460.         i386-unknown-sysv4.0, Ultrix 4.2, HP/UX 9.01.  It is known not
  461.         to work with: alpha-dec-osf
  462.  
  463.         The `.tar' file is compressed with GNU gzip.  Gzip can be
  464.         obtained by anonymous ftp at any of the GNU archive sites.
  465.  
  466.         For info about FTP via email, send email to
  467.         `ftpmail@decwrl.dec.com' with no subject line, and two-line body
  468.         with line one `help' and line two `quit'.
  469.  
  470.         The most recent (not necessarily tested) snapshots of the
  471.         library will be placed in `ftp://alpha.gnu.ai.mit.edu/gnu'.
  472.  
  473.     Contact
  474.  
  475.             R. Andrew McCallum
  476.             mccallum@gnu.ai.mit.edu
  477.  
  478.     Contact
  479.  
  480.     Free Software Foundation
  481.     59 Temple Place -- Suite 330
  482.     Boston, MA   02111
  483.     +1-617-542-5942
  484.  
  485.  
  486. Third Party Kits
  487.  
  488.     OS/2 Objective C class library
  489.  
  490.     This visual development environment provides Objective C classes
  491.     for most of the window classes provided by OS/2 PM.  Instead of
  492.     writing ANSI C applications you can use the features provided by
  493.     Objective C to create OS/2 applications using the Graphical User
  494.     Interface Presentation Manager.
  495.  
  496.     Also included is a small library to simplify access to DBase III
  497.     database files in your programs.
  498.  
  499.     The library, current version 0.8, is available as
  500.     ftp://ftp.leo.org/pub/comp/os/os2/gnu/emx+gcc/contrib/vd08.zip.
  501.     All documentation needed is included in Postscript format.
  502.  
  503.     Contact
  504.  
  505.         Thomas Baier
  506.         Center for Computational Intelligence
  507.         Technische Universitaet Wien
  508.         Resselgasse 3/CI
  509.         A-1040 Wien, Austria
  510.         Phone: +43-1-58801-4100
  511.         E-Mail: baier@ci.tuwien.ac.at
  512.  
  513.     Hot Technologies
  514.  
  515.     BARCODEKIT
  516.  
  517.         BarCodeKit is a comprehensive collection of object palettes for
  518.         creating international standard bar codes.    BarCodeKit allows
  519.         both developers and organizations to quickly add bar coding to
  520.         custom NEXTSTEP applications.  By combining the power of object
  521.         orientation and PostScript into a comprehensive library of bar
  522.         code symbologies, BarCodeKit represents the state of the art in
  523.         bar code technology.  Developers can seamlessly add bar coding to
  524.         an existing application in a matter of minutes by using any of
  525.         the 35 pretested and reusable objects in the BarCodeKit library
  526.         of palettes.  Previously, adding bar coding to an application
  527.         meant weeks or months of development, incompatibility with
  528.         different bar code readers and the use of costly proprietary bar
  529.         code printers.
  530.  
  531.         The BarCodeKit features a full range of bar code symbologies
  532.         including Code 3 of 9, Code 39 Extended, UPC-A, UPC-E, HRI, NDC,
  533.         EAN-8, EAN-13, JAN-8, JAN-13, ISBN, ISSN, SICI, SISAC, POSTNET,
  534.         ABC, FIM, BRM, Interleaved Two of Five, MSI, Codabar, Code 11,
  535.         Code 93, Code 128, Code 16K and Code 49.  It complies to
  536.         international, national, military and commercial bar coding
  537.         standards including EAN, JAN, CEN, ANSI, MIL, USS and HIBCC.
  538.         Furthermore, it provides developers with flexibility; bar codes
  539.         created using the kit can be scaled and rotated to fit a
  540.         specific area on a label or document and saved in EPS, EPSI (EPS
  541.         with interchange bitmap preview for non Display PostScript
  542.         computers), or TIFF formats.  BarCodeKit is an excellent
  543.         complement to NEXTSTEP's Application Kit and Database Kit It was
  544.         nominated for a Best of Breed Award by the editors of NeXTWORLD
  545.         Magazine.
  546.  
  547.     SERIALPORTKIT
  548.  
  549.         SerialPortKit is a fundamental class library and palette that
  550.         makes communication with serial peripherals easy to add into
  551.         your custom NEXTSTEP applications without any of the drawbacks
  552.         of other solutions.     You can use SerialPortKit to communicate
  553.         with a variety of serial peripherals such as modems, printers,
  554.         terminals, audio/video equipment, bar code readers, magnetic
  555.         stripe readers, controllers and data acquisition devices.  The
  556.         SerialPortKit contains a single SerialPort class which
  557.         interfaces to our SerialPortServer. Additional classes for
  558.         specific peripherals are available in our SerialPeripheralsKit
  559.         or through our consulting service.
  560.  
  561.         You can easily incorporate the SerialPortKit into your custom
  562.         applications due to its professionally designed and truly
  563.         object-oriented programming interface. The included Interface
  564.         Builder palette, source code examples, on-line indexed reference
  565.         manuals and tutorial further removes the tedious task of
  566.         traditional serial port programming.  Requires SerialPortServer
  567.         or SerialPortServer Lite which are available also from Hot
  568.         Technologies.
  569.  
  570.     Contact
  571.  
  572.         Hot Technologies
  573.         75 Cambridge Parkway, Suite E-504
  574.         Cambridge, MA 02142-1238 USA
  575.         tel: + 1 617 252 0088
  576.         fax: + 1 617 876 8901
  577.         email: info@hot.com (NeXTmail)
  578.  
  579.     Berkeley Productivity Group
  580.  
  581.     BPG BLOCKS
  582.  
  583.         BPG BLOCKS is an open extensible manufacturing framework which
  584.         supports a variety of applications including factory definition,
  585.         real-time tracking, real-time scheduling, short-term planning,
  586.         shift scheduling, production planning and capacity analysis.
  587.         BPG BLOCKS creates a virtual reality which represents the real
  588.         factory including the people, machines, material, processes,
  589.         their dynamics and interactions.  BPG BLOCKS is based on an easy
  590.         to understand design where every software object represents
  591.         either a real-world entity, or an important concept in the
  592.         manufacturing domain.  BPG BLOCKS' object-oriented manufacturing
  593.         model mirrors the real world, captures numerous manufacturing
  594.         details accurately, supports commonly used abstractions, and
  595.         allows decisions to be made based on aggregate information.     BPG
  596.         BLOCKS forms the basis for building custom applications which
  597.         meet the unique needs of your particular manufacturing
  598.         facility.
  599.  
  600.     Objective-C Views
  601.  
  602.         Objective-C Views is a user interface class library for
  603.         Microsoft Windows.
  604.  
  605.     Contact
  606.  
  607.         Christopher Lozinski
  608.         BPG
  609.         35032 Maidstone Court
  610.         Newark, CA 94560
  611.         tel: +1 510 795-6086
  612.         fax: +1 510 795-8077
  613.         email: info@bpg.com
  614.  
  615.  
  616.     M. Onyschuk and Associates Inc.
  617.  
  618.     OBJECT:Math
  619.  
  620.         OBJECT:Math is a comprehensive set of tools and 23 Objective-C
  621.         classes used to add extensible math and string handling to your
  622.         custom and commercial applications:
  623.  
  624.         Compiler---The OBJECT:Math Compiler converts math and string
  625.         expressions (as might be typed into a spreadsheet cell,
  626.         plotting package, etc.) into Objective-C objects.
  627.  
  628.         Unbundler---The OBJECT:Math Unbundler object allows
  629.         end-users to extend their OBJECT:Math applications with
  630.         custom-built or third-party OBJECT:Math function bundles.
  631.  
  632.         User Interface Objects---OBJECT:Math comes complete with a
  633.         Lotus Improv style function picker, a variable editor, and
  634.         objects used to display OBJECT:Math expression trees and
  635.         other tree structures.
  636.  
  637.         As product sources are available the product may even be of
  638.         interest to non-NeXT Objective-C programmers.
  639.  
  640.     Contact
  641.  
  642.         Mark Onyschuk
  643.         M. Onyschuk and Associates Inc.
  644.         tel: +1 416 462 3954
  645.         email: ask-oa@plexus.guild.org
  646.  
  647.  
  648.     Stream Technologies Inc.
  649.  
  650.     Store
  651.  
  652.         Store is an Object Oriented User Level Virtual File System.
  653.         It is described extensively in `Store - Object Oriented Virtual
  654.         File System' by Timo Lehtinen, which is available by anonymous
  655.         FTP from ftp://ftp.sti.fi/pub/sti/doc/papers/store.ps.
  656.  
  657.     Contact
  658.  
  659.         Stream Technologies Inc.
  660.         Valkj\"arventie 2
  661.         SF-02130 Espoo
  662.         Finland
  663.         tel: +358 0 4357 7348
  664.         fax: +358 0 4357 7340
  665.         email: info@sti.fi
  666.  
  667.  
  668.     SuiteSoftware
  669.  
  670.     DOME 3.0
  671.  
  672.         Developers who need to create truly distributed applications now
  673.         have a Distributed Object Management Environment.  Suite's DOME
  674.         is a complete distributed object-oriented architecture with
  675.         class libraries, application development tools and run-time
  676.         environment.
  677.  
  678.         With DOME, systems can be developed for diverse platforms,
  679.         created using all of the features of different platforms, while
  680.         minimizing their complexities and disparities.
  681.  
  682.         DOME addresses application development with a layered approach.
  683.         Figure 1 above [where?] shows DOME, the relationships of the
  684.         various components or services, and how they communicate with
  685.         one another.
  686.  
  687.         Suite's DOME 3.0 lays the foundation for a truly distributed
  688.         computing environment. All basic functionality needed to create
  689.         a true Distributed Object Management Environment are present.
  690.         The business benefits of DOME are time and money.  DOME reduces
  691.         the time needed to build applications that work across
  692.         distributed and heterogeneous environments.     All companies today
  693.         face the problem that old applications run on physically
  694.         disparate environments.  The DBMSs, network protocols and
  695.         operating systems are not homogenous.  New application
  696.         development is being forced to build applications that work with
  697.         the old applications.  Computers on the desktop are a reality.
  698.         DOME facilitates building new applications that take advantage
  699.         of the new high performance workstations while making it easy to
  700.         tie the new applications to the old applications, i.e.,
  701.         application interoperability.  All of this can be done much
  702.         easier and quicker, with fewer maintenance problems with DOME.
  703.  
  704.         Features
  705.  
  706.         Messaging
  707.  
  708.             - Store and forward (i.e., queueing)
  709.             - Multicast and Broadcast support
  710.             - Link Services
  711.             - Scripting support
  712.             - Uses Directory Services
  713.  
  714.             - User definable Messages
  715.             - Message packing and unpacking
  716.             - Message translation
  717.             - Large Messages
  718.             - Multiple levels of message recovery
  719.             - Priority Message Queuing
  720.             - Selective Message reception
  721.             - Logical Addressing (Uses Directory Services)
  722.  
  723.         Directory Services
  724.  
  725.             - Scripts
  726.             - Object location
  727.             - Parent/child and peer-to-peer
  728.             - Aliasing (i.e., logical names)
  729.             - Concerns (i.e., the ability to notify users of an
  730.               object of a change)
  731.             - Application, process, user, node object support
  732.             - Caching
  733.  
  734.         Time Services
  735.  
  736.             - Time arithmetic
  737.             - Time stamps
  738.             - String formatting
  739.             - Time zone conversions
  740.  
  741.         DDM
  742.  
  743.             - SQL92 (DML and DDL)
  744.             - Horizontal fragmentation (i.e., data stored in more
  745.               than one location by value)
  746.             - Vertical fragmentation (i.e., data stored in more than
  747.               one location by type of data)
  748.             - Replication (partial and full)
  749.             - Triggers and Procedures
  750.             - Flow of Control (If..Then..Else, While, Return,
  751.               Begin..End)
  752.             - SQL92/Sybase interoperability
  753.             - Support for legacy databases
  754.             - Distribution of data handled by DBA and DA, not the
  755.               application programmer
  756.  
  757.         DOMEShell
  758.  
  759.             - Scripting, full lexical parsing, regular expressions,
  760.               flow control, buffer management.
  761.             - Ability to invoke all DOME services from within script
  762.  
  763.         EventServices
  764.  
  765.             - Event Queueing
  766.             - Callbacks
  767.             - Event Priority Scheduling
  768.  
  769.         Management Services
  770.  
  771.             - Process recovery
  772.             - Utilities
  773.  
  774.         Programming Services
  775.  
  776.             - Trace facilities
  777.             - Playback capability for debugging and audit purposes
  778.             - Error Logging
  779.             - Error Recovery
  780.             - Exception Handling
  781.  
  782.         Object Services
  783.  
  784.             - Object store
  785.             - Object location
  786.             - Object registration
  787.  
  788.     Contact
  789.  
  790.         SuiteSoftware
  791.         Anaheim, USA
  792.         tel: +1 714 938 8850
  793.         fax: +1 714 978 1840
  794.         email: info@suite.com
  795.  
  796.  
  797.     Computer Algebra Kit
  798.  
  799.     Objects for Multiprecision Arithmetic and Computer Algebra
  800.  
  801.     The Computer Algebra Kit is a collection of Objective C objects
  802.     for arbitrary precision integer arithmetic, efficient polynomial
  803.     arithmetic over arbitrary coefficient domains, and for computing
  804.     with matrices of integers, polynomials, fractions etc.  Each
  805.     carefully designed object comes with a clean, exquisite header
  806.     file and a man page containing both a description of the object
  807.     and a discussion of all public, class and instance methods.
  808.  
  809.     The Computer Algebra Kit comes with the source of an application,
  810.     called "MySystem", consisting of trivial subclasses of the classes
  811.     in the toolkit.  Once compiled however, this small system provides
  812.     interactive access to many of the features of the Computer Algebra
  813.     Kit.  The "MySystem" application can be used as a shell for adding
  814.     functionality to the Computer Algebra Kit, by extending the
  815.     subclasses, or as a starting point for building your own symbolic
  816.     "front-end" system to numerical code.
  817.  
  818.     Version: 1.2.2
  819.     Number of Objects: 15
  820.     Key Objects:
  821.       - Integer object for fast, exact, multiprecision integer
  822.         arithmetic
  823.       - Polynomial object for advanced, polynomial arithmetic, over
  824.         arbitrary domains
  825.       - Matrix object for working with matrices of polynomials,
  826.         fractions etc.
  827.  
  828.     Binary Bulk of Library: between 1.0 and 1.5 MB dep. platform
  829.     Source Bulk of Library: about 65,000 lines of generated Objective C
  830.  
  831.     Portability: Stepstone, GNU, NeXT Objective C compatible
  832.  
  833.     Platforms: Linux, SunOS, Solaris, AIX, IRIX, NeXT available now,
  834.         others coming soon!
  835.  
  836.     For more information, or to download a copy of this library of
  837.     objects, please refer to the Computer Algebra Kit's web:
  838.     "http://www.can.nl/~stes".
  839.  
  840.     Contact
  841.  
  842.         David Stes
  843.         Computer Algebra Objects
  844.             Valdenoja 22,P2,2C
  845.             39012 Santander - Spain
  846.             e-mail : stes@mundivia.es
  847.             tel: +34 (42) 39 24 30
  848.  
  849.  
  850.     TipTop Software
  851.  
  852.     Objective-Framework (Objective-Tcl, Objective-Perl, ...)
  853.  
  854.         The Objective-Framework from TipTop Software
  855.         (http://www.tiptop.com) system provides true language
  856.         independence to the Objective-C (e.g., OpenStep) object model.
  857.         Objective-Framework provides a seamless integration of the
  858.         Objective-C runtime system with other languages.
  859.         Objective-Framework not only breaks the barrier between
  860.         interpreted and compiled code, but it also breaks the barrier
  861.         between various programming languages!  Objective-Tcl and
  862.         Objective-Perl are two languages currently available.  More to
  863.         come...
  864.  
  865.         Some of the benefits of Objective-Framework include:
  866.  
  867.           - Rapid application prototyping and development environment.
  868.         The Objective-Framework languages, Objective-Tcl and
  869.         Objective-Perl, provide a dynamic interactive interpretive
  870.         environment.  You get immediate feedback to all your
  871.         programming actions in this environment, so you can
  872.         prototype and develop much more rapidly.  You can define and
  873.         redefine classes on-the-fly, at runtime, skipping the
  874.         traditional code-compile-lik-debug development cycle.
  875.  
  876.           - True language independence.  You can seamlessly
  877.         mix-and-match languages.  Thus you can use Objective-Perl
  878.         for heavy-duty text processing, use Objective-Tcl for highly
  879.         interactive (e.g., exploratory) programming, etc.  Classes
  880.         can have mixed implementation; certain methods can be
  881.         implemented in Objective-C, other methods can be implemented
  882.         in Objective-Tcl, yet some other methods can be implemented
  883.         in Objective-Perl, etc.  It is transparent and irrelevant to
  884.         the sender of a message which language implements the
  885.         corresponding method---the method looks "native" to the
  886.         caller.
  887.  
  888.           - Extend existing applications.  The Objective-Framework
  889.         runtime library can be linked with any NEXTSTEP/OpenStep
  890.         application to easily provide a high-level control
  891.         (scripting) languages.
  892.  
  893.           - Interactive Enterprise Object Framework (EOF) development
  894.         environment.  Objective-Tcl and Objective-Perl are very
  895.         useful for EOF development, since this kind of development
  896.         consists of writing high-level glue code which is hard to
  897.         write in a low-level compiled language such as Objective-C,
  898.         and easy to write in high-level languages such as Tcl or
  899.         Perl.
  900.  
  901.           - Testing environment.  Objective-Tcl and Objective-Perl are
  902.         ideally suited for regression testing.
  903.  
  904.         A more detailed description of the Objective-Framework
  905.         functionality is availble at
  906.         http://www.tiptop.com/Objective/WhitePaper.htmld/.  See also
  907.         http://www.tiptop.com for more info.
  908.  
  909.         Fully functional evaluation version is available:
  910.  
  911.         ftp://ftp.tiptop.com/pub/Objective/ObjSys.pkg.tar
  912.  
  913.     Objective-Browser
  914.  
  915.         Objective-Browser (OB) is a graphical runtime introspection and
  916.         debugging tool.  The browser allows you to view live objects
  917.         within a running application in many object-specific ways.  OB
  918.         allows you to easily investigate the structure and methods of
  919.         various objects and classes.  For example, methods, instance
  920.         variables, and other object information can be viewed and edited
  921.         during execution.
  922.  
  923.         To a user, OB appears as a hierarchical browsing tool, similar
  924.         to the file system browser.  Each node in the browser represents
  925.         an object or some other piece of information (e.g., a method)
  926.         with an arbitrary number of subnodes.  For example, when looking
  927.         at an object, instance variables or methods appear as subnodes.
  928.  
  929.         OB is extensible.  You can provide object-specific browser nodes
  930.         and custom inspectors for any object in the system.  OB can be
  931.         used from any application which is linked with the Objective-Tcl
  932.         runtime---the browser is dynamically loaded when needed.
  933.  
  934.     Contact Information:
  935.  
  936.         TipTop Software
  937.         PO Box 30681
  938.         Bethesda, MD 20824-0681
  939.         USA
  940.         tel: +1-301-656-3837
  941.         fax: +1-301-656-8432
  942.         www: http://www.tiptop.com
  943.         email: info@tiptop.com
  944.  
  945. GPL Kits
  946.  
  947.     objcX
  948.  
  949.     An alpha version of an GNU Objective-C class library for X/Motif
  950.     Windows is available via anonymous ftp from
  951.     ftp://ftp.slac.stanford.edu/software/ObjC/objcX-0.87.tar.gz
  952.  
  953.     For lack of a good witty name, the library is called objcX.  The
  954.     library requires gcc 2.7.0 or later and libobjects 0.1.10 or later.
  955.  
  956.     Because we built this library to support porting NeXTSTEP
  957.     applications to X/Motif and because our GUI programming experience
  958.     has been with NeXTSTEP, this class library has a strongly
  959.     resemblance to NeXT's AppKit.  However, it is only a Objective-C
  960.     wrapper to Motif widgets and does not support Display PostScript,
  961.     rich text, pasteboard, drag and drop, services or many other things
  962.     associated with the NeXTSTEP environment that are not available
  963.     under X windows.
  964.  
  965.     From version 0.8, the nib translator is part of the objcX
  966.     distribution, as well as some examples of using objcX.
  967.  
  968.     These announcements are also a call for help.  The library and the
  969.     translator program could use much more work in two areas...
  970.  
  971.      - first the library could be flushed out with more features to
  972.        support larger applications
  973.  
  974.      - second, I would like to contribute the library to the GNU
  975.        project.  But it is based on Motif widgets which is not free
  976.        software.  Thus, work is needed to replace Motif widgets with
  977.        widgets based on free software.
  978.  
  979.     To stay informed, join the mailing list gnustep-l@netcom.com by
  980.     sending a subscription email to gnustep-l-request@netcom.com.
  981.  
  982.     Contact
  983.  
  984.         Paul F. Kunz    Paul_Kunz@slac.stanford.edu (NeXT mail ok)
  985.         Stanford Linear Accelerator Center, Stanford University
  986.         Voice: (415) 926-2884   (NeXT) Fax: (415) 926-3587
  987.  
  988.  
  989.     Tcl/Objective-C Interface Library
  990.  
  991.     A library of Objective-C objects and support functions for
  992.     communication between Objective-C and Tcl/Tk.  From Tcl you can send
  993.     messages to Objective-C objects and get textual representations of
  994.     what's returned.  Thus it provides a way to interactively type
  995.     messages and see the results, all inside the rich structure of the
  996.     Tcl scripting language---almost an Objective-C interpreter.  The
  997.     library also provides an Objective-C object that will forward all of
  998.     its messages to the Tcl interpreter in textual format.
  999.  
  1000.     The library does NOT provide:
  1001.       * Handling arguments of non-atomic C types.
  1002.       * Tk widgets based NeXTSTEP AppKit objects.
  1003.       * The ability to create new Objective-C classes
  1004.         or methods from Tcl.
  1005.  
  1006.     The library is available by anonymous ftp at
  1007.         ftp.cs.rochester.edu:pub/libcoll/libtclobjc-1.0.tar.gz
  1008.  
  1009.     The library requires gcc (2.5.8 or higher) or NeXT's cc and tcl-7.3.
  1010.     If you have tk-3.6, the library can be configured to use it.  If you
  1011.     have libreadline, the library can be configured to use it.  Gcc and
  1012.     libreadline are available at any of the GNU archive sites; tcl and
  1013.     tk are available at ftp.cs.berkeley.edu.
  1014.  
  1015.     Contact
  1016.  
  1017.         R. Andrew McCallum          ARPA: mccallum@cs.rochester.edu
  1018.         Computer Science Department      UUCP: uunet!cs.rochester.edu!mccallum
  1019.         University of Rochester      VOX: (716) 275-2527
  1020.         Rochester, NY  14627-0226      FEET: CSB  Rm. 625
  1021.  
  1022.     Tiggr's Objective-C Library
  1023.  
  1024.     TL is a basic Objective-C library, which happens to incorporate a
  1025.     Lisp interpreter, which provides a seamless integration between
  1026.     Objective-C and Lisp.  (It is neither common lisp nor emacs lisp; it
  1027.     is probably best described by the name tiggr's lisp.)  TL provides
  1028.     mark & sweep garbage collection to instances of TLObject or a
  1029.     subclass thereof.
  1030.  
  1031.     TL provides the following classes: The `root' object TLObject, a
  1032.     patch for existing root objects (like TLPatchObject), TLString (and
  1033.     TLMutableString), TLRange, TLDictionary plus enumerators
  1034.     (TLDictionaryEnumerator, TLDictionaryDictEnumerator,
  1035.     TLDictionaryKeyEnumerator, TLDictionaryValueEnumerator), basic
  1036.     streams (TLFDStream, TLFILEStream), TLSocketStream
  1037.     (TLInetSocketStream, TLUnixSocketStream) plus addresses
  1038.     (TLInetAddress, TLUnixAddress), TLStringStream
  1039.     (TLConstantStringStream, TLMutableStringStream), TLBase64Stream
  1040.     (TLBase64InputStream, TLBase64OutputStream), various other streams
  1041.     (TLBufferedStream, TLHTTPStream, TLSneakStream, TLStreamStream,
  1042.     TLSyslogStream, TLTelnetStream, TLWrapStream), lisp specific classes
  1043.     (TLCons, TLConsEnumerator, TLLDelegate, TLLInvocation, TLLLambda,
  1044.     TLLLex, TLLSubroutine, TLLTag, TLNil, TLSymbol, TLSymbolValue) and
  1045.     various others: TLDate, TLMimeItem, TLNumber, TLRunLoop, TLURL,
  1046.     TLVector and TLVectorEnumerator.  Furthermore, it includes a host of
  1047.     Lisp invokable (but C written and thus also C invokable) functions.
  1048.  
  1049.     If reference counting is not provided by another library, TL
  1050.     provides reference counting and an NSAutoreleasePool.
  1051.  
  1052.     TL has been tested on HP9000/735 HP-UX 9.05 with the GNU runtime,
  1053.     and on a NeXTstation Mono Turbo NS3.3 with the NeXT runtime.
  1054.  
  1055.     TL is distributed under the GNU General Public License.  TL comes
  1056.     WITHOUT ANY WARRANTY.  See the file LICENSE in the TL distribution
  1057.     for details.
  1058.  
  1059.     TL is available through anonymous FTP at
  1060.     ftp://ftp.es.ele.tue.nl/pub/tiggr/tl.tar.gz.
  1061.  
  1062.     Contact
  1063.  
  1064.         Pieter J. `Tiggr' Schoenmakers
  1065.         email: tiggr@es.ele.tue.nl
  1066.         tel: +31 40 2473387 (work, voice)
  1067.  
  1068. Public Domain Kits
  1069.  
  1070.     IconKit
  1071.  
  1072.     IconKit is an Objective-C class library for building drag-and-drop
  1073.     applications.  It recreates the shelves, browsers, folders, and
  1074.     suitcases that are present throughout the basic NEXTSTEP
  1075.     applications:
  1076.  
  1077.         - The file browser and shelf in Workspace.
  1078.         - The bookshelves in Librarian.
  1079.         - The project browser in ProjectBuilder.
  1080.         - The suitcases in InterfaceBuilder.
  1081.         - The feature browser used to configure a DBTableView.
  1082.  
  1083.     IconKit contains all the objects one needs to build new applications
  1084.     of this kind.  It is fully integrated with InterfaceBuilder,
  1085.     providing a palette and inspectors for all the IconKit classes.  It
  1086.     comes complete with source code, documentation, and an example
  1087.     application that mimics the NEXTSTEP Workspace file viewer.
  1088.  
  1089.     IconKit is freely distributable and free for noncommercial use.  It
  1090.     costs money for a commercial license, but you are allowed to use
  1091.     IconKit get your application working before deciding whether to
  1092.     purchase it.  The General Objectware License that covers this policy
  1093.     is broadly applicable, and other developers are encouraged to adopt
  1094.     it for their own software.
  1095.  
  1096.     IconKit should work on any system running NEXTSTEP 3.0 or later.
  1097.  
  1098.  
  1099.     Distribution
  1100.     ------------
  1101.  
  1102.     IconKit may be freely distributed, in whole or in part, provided
  1103.     only that the included ReadMe file and the General Objectware
  1104.     License are neither removed nor altered in any way.  The complete
  1105.     kit is available from either of the two archive locations,
  1106.  
  1107.     ftp.cs.orst.edu:
  1108.         /pub/next/sources/objects/IconKit-1.2.*
  1109.         /pub/next/binaries/util/FileViewer-1.2.*
  1110.  
  1111.     ftp.informatik.uni-muenchen.de
  1112.         /pub/comp/platforms/next/Developer/objc/iconkit/IconKit-1.2.*
  1113.  
  1114.     FileViewer is a compiled MAB version of an example application that
  1115.     recreates the NEXTSTEP file browser.  Complete source is included in
  1116.     IconKit-1.2.
  1117.  
  1118.     In the event that you cannot locate IconKit at either of these two
  1119.     locations, you should contact the author to receive the complete
  1120.     distribution.  All questions and correspondence are welcome!
  1121.  
  1122.     Contact
  1123.  
  1124.         H. Scott Roy
  1125.         2573 Stowe Ct.
  1126.         Northbrook, IL  60062-8103
  1127.         email: hsr@cs.stanford.edu
  1128.  
  1129.     Various authors
  1130.  
  1131.     MiscKit
  1132.  
  1133.         [Abridged press release].
  1134.  
  1135.         ANNOUNCING THE RELEASE OF THE MISCKIT VERSION 1.8.0
  1136.  
  1137.         Update to Kit of Free Objective-C Objects Is Now Available
  1138.  
  1139.         PROVO, UT, Sept. 5, 1996 -- A new release of the MiscKit has
  1140.         been made publically available.  It contains many new objects
  1141.         and fixes all problems reported since the previous release.
  1142.         The MiscKit may be obtained via ftp to any of the following
  1143.         site:
  1144.  
  1145.         ftp://next-ftp.peak.org/pub/next/sources/classes/MiscKit1.8.0.s.gnutar.gz
  1146.         ftp://ftp.thoughtport.com/pub/next/misckit/MiscKit1.8.0.s.gnutar.gz
  1147.         ftp://ftp.informatik.uni-muenchen.de/pub/comp/platforms/next/Developer/objc/misckit/MiscKit1.8.0.s.gnutar.gz
  1148.  
  1149.         The binary packages are not available at this time, but will
  1150.         be made available as soon as possible--which, due to time
  1151.         constraints, will likely not be until the end of September at
  1152.         the soonest.
  1153.  
  1154.         The thoughtport.com site always has the most recent official
  1155.         MiscKit distribution available in /pub/next/misckit with all
  1156.         previous versions archived in /pub/next/misckit/old.
  1157.  
  1158.         The MiscKit is an easy to install kit consisting of
  1159.         Objective-C objects, Interface Builder palettes, bundles, and
  1160.         other useful programming resources.  All the resources in the
  1161.         MiscKit have been donated by various Internet personalities
  1162.         for the benefit of other NEXTSTEP programmers.
  1163.  
  1164.         Objects include data structures (string, tree, stack, queue,
  1165.         priority queue, linked list), interface widgets (find panel,
  1166.         textfield, button and slider subclasses, clock and calendar
  1167.         views, icon wells, progress pie/bar), macros, other useful
  1168.         objects (lock file, log file, time, stopwatch, serial port,
  1169.         colors, subprocess, remote subprocess, file), frameworks for
  1170.         building complex interfaces (MiscMergeKit, MiscInspectorKit,
  1171.         InfoMenuKit) and even some useful example applications...plus
  1172.         much more!
  1173.  
  1174.         To make the MiscKit more attractive to developers, use of the
  1175.         MiscKit resources is absolutely free of charge, no matter how
  1176.         the resources are used.  Redistribution of the MiscKit is also
  1177.         encouraged.  Many developers are reluctant to use objects
  1178.         which are under the GNU "Copyleft".  As a result, the MiscKit
  1179.         has its own license which allows developers to reuse the code
  1180.         freely, even in commercial projects.  Everything possible has
  1181.         been done to encourage the use of the MiscKit to speed
  1182.         development efforts.
  1183.  
  1184.         Any developer who has generally useful objects, palettes, or
  1185.         other programming resources and would like to donate them to
  1186.         the MiscKit effort is welcome to do so.  Contact Don Yacktman
  1187.         at don@misckit.com for information on how to prepare a MiscKit
  1188.         submission.  By making a submission to the MiscKit, a
  1189.         developer can avoid the hassles of packaging up a formal
  1190.         distribution of their resources and in turn help add to a
  1191.         growing centralized pool of useful resources.
  1192.  
  1193.         The misckit mailing lists are temporarily out of order and we
  1194.         hope to have them up and working at a new site soon.  Until
  1195.         then, inquiries and subscription requests should be made to
  1196.         don@misckit.com.  If you request a subscription, be sure to
  1197.         specify whether you wish to be part of the development
  1198.         discussion or only receive MiscKit-based press releases.  When
  1199.         the mailing lists are once again up and running, a press
  1200.         release will be sent out to and let everyone know about the
  1201.         changes in addresses and any other important details.
  1202.  
  1203.         Please note that the creation of the "misckit.com" domain does
  1204.         NOT mean that the MiscKit is "going commercial" in any way--it
  1205.         will always be free and open as it has been in the past.
  1206.         Nothing has changed and NO special significance should be read
  1207.         into the use of ".com" instead of ".org".
  1208.  
  1209.         The MiscKit has evolved from the DAYMiscKit and several
  1210.         objects released over the past few years by Don Yacktman and
  1211.         other USENET personalities.
  1212.  
  1213.     Contact
  1214.  
  1215.         Don Yacktman
  1216.         (801)221-0344
  1217.         don@misckit.com
  1218.  
  1219.  
  1220.     CCRMA
  1221.  
  1222.     MusicKit
  1223.  
  1224.         The Music Kit provides tools for designing music
  1225.         applications. These tools address three topics: music
  1226.         representation, performance, and synthesis (digital sound
  1227.         generation and processing).     The Objective-C classes defined in
  1228.         the Music Kit fall neatly into these three areas.
  1229.  
  1230.         The design goal of the Music Kit is to combine the interactive
  1231.         gestural control of MIDI with the precise timbral control of
  1232.         MUSIC 5-type systems in an extensible, object-oriented
  1233.         environment. To this end, the Music Kit is capable of fully
  1234.         representing MIDI.    The Music Kit accepts MIDI in and can send
  1235.         MIDI out through the two serial ports at the back of the
  1236.         computer. Nonetheless, the Music Kit isn't limited by the MIDI
  1237.         specification; for example, its resolution of frequency and
  1238.         amplitude is much finer than MIDI's highly quantized values.
  1239.  
  1240.         The Music Kit generates sounds by sending synthesis instructions
  1241.         to the DSP.     The generality of the synthesis software far
  1242.         surpasses that of commercial synthesizers.    While most
  1243.         synthesizers employ only one type of synthesis-the Yamaha DX-7
  1244.         uses only frequency modulation, for example-the Music Kit can
  1245.         implement virtually any sound synthesis strategy.  And since the
  1246.         synthesis engine (the DSP) and the control stream are brought
  1247.         together in a single high-performance computer, the Music Kit
  1248.         makes possible an unprecedented level of expressive control.
  1249.         (from Documentation/MusicKit+DSP/General/SoundMusicDSP.rtfd)
  1250.  
  1251.         MusicKit used to be supplied by NeXT as part of NeXTSTEP (pre
  1252.         3.0).  It is now maintained by CCRMA and available in two
  1253.         packages:
  1254.  
  1255.         ftp://ccrma-ftp.stanford.edu/pub/NeXT/MusicKit_4.1.1.pkg.tar
  1256.  
  1257.             NI-fat Class library, header files, documentation,
  1258.             programming examples, and a suite of applications
  1259.             (size = 13MB).
  1260.  
  1261.           ftp://ccrma-ftp.stanford.edu/pub/NeXT/MusicKitSource_4.1.1.pkg.tar
  1262.  
  1263.             Source of the MusicKit class library (size = 5MB).
  1264.  
  1265.     Contact
  1266.  
  1267.         email: musickit@ccrma.stanford.edu
  1268.  
  1269.  
  1270.     ObjectPak
  1271.  
  1272.     `ObjectPak' is not just `another' collection class library.
  1273.     ObjectPak is a rewrite from scratch of the objects described in
  1274.     Brad Cox' book. ObjectPak is largely compatible in interface with
  1275.     the collection classes of Stepstone's ICpak101 (but not with the
  1276.     ICpak101 foundation classes), and hence also with the Smalltalk
  1277.     Collection Classes from Adele Goldberg's book.  The library comes
  1278.     with source code, header files, RTF and HTML documentation.
  1279.  
  1280.     Runtime dependencies are left out of ObjectPak.  You can therefore
  1281.     work with the same objects on any current or future implementation
  1282.     of Objective C, yet take advantage of each particular environment:
  1283.     ObjectPak has been tested on NextStep, Stepstone and GNU Objective
  1284.     C, and has been ported to several Unix platforms (Linux, Solaris,
  1285.     AIX).
  1286.  
  1287.     Classes in ObjectPak
  1288.     --------------------
  1289.     ObjPak    root class of ObjectPak
  1290.     ObjStr    string objects
  1291.     ObjCltn   collections of objects, ordered
  1292.     ObjSet    sets of objects, no duplicate entries
  1293.     ObjDic    dictionaries, key-value tables
  1294.     ObjSort   instances keep their contents sorted in a tree
  1295.     ObjSeq    sequencing over groups of objects
  1296.  
  1297.     ObjectPak is an ideal starting-point for writing all sorts of text
  1298.     filters or processors in Objective C : as a demonstration of what
  1299.     can be done, the library comes with a small program to print a
  1300.     collection, a set without duplicates, a dictionary or a sorted
  1301.     list of the words in a text file.
  1302.  
  1303.     ObjectPak is public domain software; get a copy from the Computer
  1304.     Algebra Objects web-site, located at "http://www.can.nl/~stes".
  1305.  
  1306.     Contact
  1307.  
  1308.         David Stes
  1309.         Computer Algebra Objects
  1310.         Hoge Meerheuvel 5
  1311.         B-2960 Brecht - Belgium
  1312.         e-mail : stes@cage.rug.ac.be
  1313.  
  1314.  
  1315. ADMINISTRATIVIA
  1316.  
  1317.     The information in this file comes AS IS, WITHOUT ANY WARRANTY.  You may
  1318.     use the information contained in this file or distribute this file, as
  1319.     long as you do not modify it, make money out of it or take the credits.
  1320.  
  1321.     All trademarks appearing in this file are owned by their respective
  1322.     owner.  To increase the information content in this file, any indication
  1323.     to that effect is not present in the FAQ other than in this paragraph.
  1324.  
  1325. A Japanese language version of this FAQ is maintained by Norihiro Itoh
  1326. <nito@argotechnos.co.jp>.  It is posted to fj.archives.answers
  1327. regularly.  A hypertext version is maintained by Toru Sato
  1328. <www-admin@cnds.canon.co.jp> and available at:
  1329. http://www.cnds.canon.co.jp/Japanese_EUC/Contribution/FAQ_Objective-C/objc_faq_J.html
  1330.  
  1331. A World Wide Web hypertext version of this FAQ is maintained by Brian Harvey
  1332. <theharv@csld.ucr.edu>.  It is http://csld.ucr.edu/NeXTSTEP/objc_faq.html.
  1333. Another WWW version of this FAQ is maintained by Steve Dekorte
  1334. <dekorte@suite.com> at http://www.batech.com/~dekorte/Objective-C/objc.html
  1335.  
  1336. The first version of this FAQ was written by Bill Shirly, helped by the
  1337. feedback and information given to him by a lot of people.  The current
  1338. version is maintained by Tiggr, supported by feedback from Glen Diener,
  1339. Christopher Lozinski, Sean Luke and a lot of other people.  Mail your bug
  1340. reports, comments, suggestions and additions to tiggr@es.ele.tue.nl.
  1341.