home *** CD-ROM | disk | FTP | other *** search
- package sub_arctic.input;
-
- /**
- * Input protocol for objects receiving input from the grow_press_drag agent.
- * This agent is a hybrid positional-focus. It responds to press events
- * over an object, by making that object the grow_drag focus. The actual
- * input protocol is the same as grow_drag (i.e., the object never gets or
- * handles, the press, only the drag).<p>
- *
- * Note: this has not extra methods over grow_draggable -- we just need to
- * differentiate objects using this interface over those that use just
- * grow_draggable.
- *
- * @see sub_arctic.input.pressable
- * @see sub_arctic.input.grow_draggable
- * @see sub_arctic.input.grow_press_drag_agent
- *
- * @author Scott Hudson
- */
- public interface grow_press_draggable extends grow_draggable {
-
- /* No extra methods over grow_draggable -- we just need to mark objects
- * using this via the grow_press_draggable interface name.
- */
- }
- /*=========================== COPYRIGHT NOTICE ===========================
-
- This file is part of the subArctic user interface toolkit.
-
- Copyright (c) 1996 Scott Hudson and Ian Smith
- All rights reserved.
-
- The subArctic system is freely available for most uses under the terms
- and conditions described in
- http://www.cc.gatech.edu/gvu/ui/sub_arctic/sub_arctic/doc/usage.html
- and appearing in full in the lib/interactor.java source file.
-
- The current release and additional information about this software can be
- found starting at: http://www.cc.gatech.edu/gvu/ui/sub_arctic/
-
- ========================================================================*/
-