mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 03:51:04 +00:00
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:
parent
9e46108d93
commit
aa2ca65a81
1 changed files with 10 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue