home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / classes / FindPanel.README < prev    next >
Encoding:
Text File  |  1993-08-29  |  3.6 KB  |  76 lines

  1. This directory and its sub-directories contains the source code, support
  2. files, and documentation to a FindPanel class.  There is also an example
  3. project.  The FindPanel class is designed to be a mostly self-contained
  4. bundle which can be incorporated into a project with minimal effort.
  5.  
  6. This is version 1.0 (15 August 1993).
  7. This product requires NeXTSTEP 3.x or higher.
  8.  
  9.  
  10. Known bugs in 1.0:
  11.  - The only known bug in this software is in the FindPanel class's
  12.    internal _calcFindPanelTarget instance method.  The method assumes
  13.    that the responder chains of the key and main windows end with some
  14.    responder that has a next responder of nil (this "end of the chain"
  15.    responder need not be the windows themselves, though it is them if
  16.    the windows' next responders have not been explicitly set).  This
  17.    also means that a responder chain that loops is also a bad thing.
  18.    Under "normal" usage, this bug will not manifest itself.
  19.  
  20.  
  21. Written and maintained by Christopher J. Kane (kane@gac.edu).
  22. Please feel free to contact the author with any questions, comments,
  23. bug reports, or suggestions about this package.
  24.  
  25. ---------------------------------------------------------------------------
  26. README             - This file (cleverly enough)
  27. HowToUse.rtf         - Instructions for adding FindPanel to a project
  28. FindPanel.rtf         - Documentation for the FindPanel class
  29. FindPanelClass.rtf     - Documentation for the FindPanelClass category
  30. SearchableText.rtf     - Documentation for the SearchableText protocol
  31.  
  32. FindPanel/         - Source code for FindPanel bundle
  33.     FindPanel.h     - FindPanel class header file
  34.     FindPanel.m     -   and source file
  35.     FindPanelClass.h - FindPanelClass category header file
  36.     FindPanelClass.m -   and source file
  37.     SearchableText.h - Header file for SearchableText protocol
  38.     Makefile     \
  39.     PB.gdbinit      | Bundle project support files
  40.     PB.project     /
  41.     English.lproj     \
  42.     French.lproj      \
  43.     German.lproj       | Language directories (contain localized
  44.     Italian.lproj       |   string and FindPanel.nib files)
  45.     Spanish.lproj      /
  46.     Swedish.lproj     /
  47.  
  48. Searcher/         - Example project (NeXTSTEP 3.0 application)
  49. ---------------------------------------------------------------------------
  50.  
  51. Here is the copyright and license notice:
  52. ===========================================================================
  53. Copyright (c) 1993 Christopher J. Kane.  All rights reserved.
  54.  
  55. Permission to make and distribute copies of this software, and to use it
  56. for any purpose, is hereby granted, provided this copyright and license
  57. notice are preserved on all copies.  Modified versions of this software
  58. must be plainly marked as such, and must not be misrepresented as being
  59. the original software.  In no event may the original authorship of this
  60. software be explicitly misrepresented.  Authors of software developed with
  61. the aid of, or that incorporates, this software are under no obligation
  62. to the copyright holder other than those obligations outlined in this
  63. license; they need not credit the copyright holder nor the source of this
  64. software.
  65.  
  66. The copyright holder makes no express or implied warranty or representation
  67. of any kind with respect to this software, including any warranty that this
  68. software is error-free.  ANY IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS
  69. FOR A PARTICULAR PURPOSE IS HEREBY DISCLAIMED.  IN NO EVENT WILL THE COPY-
  70. RIGHT HOLDER BE LIABLE FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCI-
  71. DENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE.
  72. The copyright holder is under no obligation to provide any services, by way
  73. of maintenance, update, or otherwise.
  74. ===========================================================================
  75.  
  76.