From: Scott H. <sco...@us...> - 2005-05-17 03:50:26
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3115/src/org/actionstep Modified Files: NSView.as Log Message: Added a stub method Index: NSView.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSView.as,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** NSView.as 17 May 2005 01:24:05 -0000 1.6 --- NSView.as 17 May 2005 03:49:49 -0000 1.7 *************** *** 675,678 **** --- 675,695 ---- //****************************************************** + //* Scrolling + //****************************************************** + + /** + * Scrolls this view's drawing surface the minimum distance for + * aRect to be completely visible. + * + * Returns TRUE if scrolling is performed, FALSE otherwise. + */ + public function scrollRectToVisible(aRect:NSRect):Boolean + { + //! IMPLEMENT + return false; + } + + + //****************************************************** //* Controlling Notifications //****************************************************** |