mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-29 22:37:39 +00:00
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:
parent
e581ca3d27
commit
54d2644160
1 changed files with 10 additions and 1 deletions
|
@ -33,6 +33,7 @@
|
|||
|
||||
@class NSTableColumn;
|
||||
@class NSTableHeaderView;
|
||||
@class NSText;
|
||||
|
||||
@interface NSTableView : NSControl
|
||||
{
|
||||
|
@ -53,14 +54,22 @@
|
|||
id _target;
|
||||
int _clickedRow;
|
||||
int _clickedColumn;
|
||||
NSText *_textObject;
|
||||
int _editedRow;
|
||||
int _editedColumn;
|
||||
NSCell *_editedCell;
|
||||
|
||||
/*
|
||||
* Ivars Acting as Cache
|
||||
*/
|
||||
int _numberOfRows;
|
||||
int _numberOfColumns;
|
||||
/* YES if _delegate responds to tableView:willDisplayCell:forTableColumn:row: */
|
||||
/* YES if _delegate responds to
|
||||
tableView:willDisplayCell:forTableColumn:row: */
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue