Added some ivars; added new private method

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@6706 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2000-06-16 17:36:58 +00:00
parent 9e46108d93
commit aa2ca65a81

View file

@ -50,6 +50,9 @@
NSTableHeaderView *_headerView; NSTableHeaderView *_headerView;
NSView *_cornerView; NSView *_cornerView;
SEL _doubleAction; SEL _doubleAction;
id _target;
int _clickedRow;
int _clickedColumn;
/* /*
* Ivars Acting as Cache * Ivars Acting as Cache
@ -60,10 +63,10 @@
BOOL _del_responds; BOOL _del_responds;
/* /*
* We cache column origins (precisely, the x coordinate of the left origin of * We cache column origins (precisely, the x coordinate of the left
* each column). When a column width is changed through [NSTableColumn setWidth:], * origin of each column). When a column width is changed through
* then [NSTableView tile] gets called, which updates the cache. * [NSTableColumn setWidth:], then [NSTableView tile] gets called,
*/ * which updates the cache. */
float *_columnOrigins; float *_columnOrigins;
/* if YES [which happens only during a sizeToFit], we are doing /* if YES [which happens only during a sizeToFit], we are doing
@ -202,6 +205,9 @@
@end /* interface of NSTableView */ @end /* interface of NSTableView */
@interface NSTableView (GNUPrivate)
- (void) _sendDoubleActionForColumn: (int)columnIndex;
@end
/* /*
* Informal protocol NSTableDataSource * Informal protocol NSTableDataSource