home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / classes / DirPanel.README < prev    next >
Encoding:
Text File  |  1992-07-04  |  3.7 KB  |  90 lines

  1. Copyright X 1992 by Scott Hess.
  2.  
  3. DirPanel
  4.  
  5. CATEGORY OF    SavePanel
  6.  
  7. CATEGORY OF    SavePanel : Panel : Window : Responder : Object
  8.  
  9. DECLARED IN    "DirPanel.h"
  10.  
  11.  
  12.  
  13. CATEGORY DESCRIPTION
  14.  
  15. DirPanel provides the ability to select directories for SavePanels and OpenPanels.  It does this by providing an Objective-C Category of SavePanel, and an alternative form of the -runModal* methods for selection of directories.  To run a directory selection panel, create an appropriate instance of SavePanel or OpenPanel, and call -dirPanelRunModal on it.  This method returns non-zero for success, or zero on Cancel, just like regular -runModal* does.  The directory selected may then be retrieved via the -directory method.
  16.  
  17. Though DirPanel makes great effort to retain most similarity to SavePanel and OpenPanel, sometimes it will act slightly differently.  I have made every attempt to make such differences err on the side of caution, which means that sometimes you have to apparently select an element twice.  This is better than selecting elements that you did not mean to select, though.  If you can quantify such a problem in a decent manner, send me email and I will attempt to fix it.
  18.  
  19. To include DirPanel in your project, simply include it as a class.
  20.  
  21. NeXTSTEP3.0 is supposed to have a fixed version of SavePanel/OpenPanel that allows the user to accomplish this type of thing in a NeXT-approved manner.  When I have access to a NS3.0pr, I will look into generalizing the DirPanel code in such a way that under NS3.0, it will call the NeXT-approved methods, while under NS2.x it will hack them.  In that way apps compiled for NS2.x would automatically take advantage of any improvements NeXT has managed in this functionality.  [Anyone out there with a NS3.0pr and some time on their hands can feel free to do this and send it to me.  The access to NS3.0pr is not the main problem - it's the "time on my hands" part that gets me every time.]
  22.  
  23. DirPanel is free.  Use it and abuse it as you see fit.
  24.  
  25. Scott Hess
  26. 12901 Upton Avenue South, #326
  27. Burnsville, MN  55337
  28. (612) 895-1208
  29. scott@gac.edu
  30. shess@ssesco.com
  31.  
  32.  
  33.  
  34. INSTANCE VARIABLES
  35.  
  36. Inherited from SavePanel    id    browser;
  37.     id    form;
  38.     id    okButton;
  39.  
  40. Declared in DirPanel    static BOOL    notCancel;
  41.     static id    realOkButton;
  42.  
  43. browser     Hacked at to keep more information visible at any one time, and also to provide double-click-ability for directories.
  44.  
  45. form     Area where textual user input may occur.
  46.  
  47. okButton     Hacked to allow processing of the current selection, and acceptance of it as needed.
  48.  
  49. notCancel     Flags when a 'psuedo-Cancel' is used to trick SavePanel into accepting a directory.
  50.  
  51. realOkButton     Stores the okButton while in -dirPanelRunModal.
  52.  
  53.  
  54.  
  55. METHOD TYPES
  56.  
  57. Simulating the okButton    - forward::
  58. - setEnabled:
  59.  
  60. Providing directory selection    - dirPanelRunModal
  61. X realOk:
  62.  
  63.  
  64.  
  65. INSTANCE METHODS
  66.  
  67.  
  68. dirPanelRunModal
  69. -(int)dirPanelRunModal
  70.  
  71. Hacks a SavePanel or SavePanel subclass instance to allow selection of directories, and then does a -runModal* on it.  Returns YES if there was a successful selection, with the selected directory accessable via -directory.  Returns NO if the selection was Cancelled.
  72.  
  73.  
  74. forward::
  75. - forward:(SEL)aSelector :(marg_list)argFrame
  76.  
  77. Forwards messages to realOkButton while in -dirPanelRunModal.
  78.  
  79.  
  80. realOk:
  81. - realOk:sender
  82.  
  83. Action which handles clicks on the okButton and double-clicks on browser while in -dirPanelRunModal.  If there is a value in the form, the data is extracted and loaded into the browser.  Otherwise, a 'puesdo-Cancel' is executed to exit the modal event loop, with appropriate values set up so that -dirPanelRunModal realizes that the Cancel was not real.
  84.  
  85.  
  86. setEnabled:
  87. - setEnabled:(BOOL)flag
  88.  
  89. Intercepts the okButton's -setEnabled: message, and substitutes YES for flag.  This causes the okButton to remain enabled in all cases.
  90.