From aa2ca65a8194cd8de45ea55dc6298898d15f8a91 Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Fri, 16 Jun 2000 17:36:58 +0000 Subject: [PATCH] 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 --- Headers/gnustep/gui/NSTableView.h | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Headers/gnustep/gui/NSTableView.h b/Headers/gnustep/gui/NSTableView.h index 87bfa546a..b512b0d0f 100644 --- a/Headers/gnustep/gui/NSTableView.h +++ b/Headers/gnustep/gui/NSTableView.h @@ -50,6 +50,9 @@ NSTableHeaderView *_headerView; NSView *_cornerView; SEL _doubleAction; + id _target; + int _clickedRow; + int _clickedColumn; /* * Ivars Acting as Cache @@ -60,10 +63,10 @@ BOOL _del_responds; /* - * We cache column origins (precisely, the x coordinate of the left origin of - * each column). When a column width is changed through [NSTableColumn setWidth:], - * then [NSTableView tile] gets called, which updates the cache. - */ + * We cache column origins (precisely, the x coordinate of the left + * origin of each column). When a column width is changed through + * [NSTableColumn setWidth:], then [NSTableView tile] gets called, + * which updates the cache. */ float *_columnOrigins; /* if YES [which happens only during a sizeToFit], we are doing @@ -202,6 +205,9 @@ @end /* interface of NSTableView */ +@interface NSTableView (GNUPrivate) +- (void) _sendDoubleActionForColumn: (int)columnIndex; +@end /* * Informal protocol NSTableDataSource