home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------------------------------------
- //
- // KeyDownMatrix
- //
- // Inherits From: Matrix
- //
- // Declared In: KeyDownMatrix.h
- //
- // Class Description
- //
- // KeyDownMatrix is a subclass of Matrix that overrides the
- // mouseDown: method in order to make the browser (most likely
- // an instance of KeyDownBrowser) the First Responder.
- //
- // Added two instance methods (numRows, numCols). These should
- // be category methods to Matrix, but didn't want to presume this
- // for the user.
- //
- //
- // Disclaimer
- //
- // You may freely copy, distribute and reuse this software and its
- // associated documentation. I disclaim any warranty of any kind,
- // expressed or implied, as to its fitness for any particular use.
- //
- //---------------------------------------------------------------------------------------------------------
- #import <appkit/appkit.h>
-
- @interface KeyDownMatrix : Matrix
-
- {
- }
-
- - (int) numRows;
- - (int) numCols;
-
- @end