Added editing related ivars

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@6743 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2000-06-20 18:20:40 +00:00
parent e581ca3d27
commit 54d2644160

View file

@ -33,6 +33,7 @@
@class NSTableColumn; @class NSTableColumn;
@class NSTableHeaderView; @class NSTableHeaderView;
@class NSText;
@interface NSTableView : NSControl @interface NSTableView : NSControl
{ {
@ -53,14 +54,22 @@
id _target; id _target;
int _clickedRow; int _clickedRow;
int _clickedColumn; int _clickedColumn;
NSText *_textObject;
int _editedRow;
int _editedColumn;
NSCell *_editedCell;
/* /*
* Ivars Acting as Cache * Ivars Acting as Cache
*/ */
int _numberOfRows; int _numberOfRows;
int _numberOfColumns; int _numberOfColumns;
/* YES if _delegate responds to tableView:willDisplayCell:forTableColumn:row: */ /* YES if _delegate responds to
tableView:willDisplayCell:forTableColumn:row: */
BOOL _del_responds; BOOL _del_responds;
/* YES if _delegate responds to
tableView:setObjectValue:forTableColumn:row: */
BOOL _del_editable;
/* /*
* We cache column origins (precisely, the x coordinate of the left * We cache column origins (precisely, the x coordinate of the left