home *** CD-ROM | disk | FTP | other *** search
/ Best Tools for JAVA / Best Tools for JAVA.iso / JAVA_ALL / IDE / SUBARTIC / SUB_ARCT / INPUT / GROW_PRE.JAV < prev    next >
Encoding:
Text File  |  1996-10-04  |  1.5 KB  |  42 lines

  1. package sub_arctic.input;
  2.  
  3. /** 
  4.  * Input protocol for objects receiving input from the grow_press_drag agent.
  5.  * This agent is a hybrid positional-focus.  It responds to press events
  6.  * over an object, by making that object the grow_drag focus.  The actual
  7.  * input protocol is the same as grow_drag (i.e., the object never gets or 
  8.  * handles, the press, only the drag).<p>
  9.  *
  10.  * Note: this has not extra methods over grow_draggable -- we just need to 
  11.  * differentiate objects using this interface over those that use just 
  12.  * grow_draggable.
  13.  *
  14.  * @see sub_arctic.input.pressable
  15.  * @see sub_arctic.input.grow_draggable
  16.  * @see sub_arctic.input.grow_press_drag_agent
  17.  *
  18.  * @author Scott Hudson
  19.  */
  20. public interface grow_press_draggable extends grow_draggable {
  21.  
  22.   /* No extra methods over grow_draggable -- we just need to mark objects 
  23.    * using this via the grow_press_draggable interface name.
  24.    */
  25. }
  26. /*=========================== COPYRIGHT NOTICE ===========================
  27.  
  28. This file is part of the subArctic user interface toolkit.
  29.  
  30. Copyright (c) 1996 Scott Hudson and Ian Smith
  31. All rights reserved.
  32.  
  33. The subArctic system is freely available for most uses under the terms
  34. and conditions described in 
  35.   http://www.cc.gatech.edu/gvu/ui/sub_arctic/sub_arctic/doc/usage.html 
  36. and appearing in full in the lib/interactor.java source file.
  37.  
  38. The current release and additional information about this software can be 
  39. found starting at: http://www.cc.gatech.edu/gvu/ui/sub_arctic/
  40.  
  41. ========================================================================*/
  42.