mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
Added ivars for selection
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@7248 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7da60fcdb8
commit
3bcdae1966
1 changed files with 10 additions and 1 deletions
|
@ -54,6 +54,14 @@
|
|||
id _target;
|
||||
int _clickedRow;
|
||||
int _clickedColumn;
|
||||
NSMutableArray *_selectedColumns;
|
||||
NSMutableArray *_selectedRows;
|
||||
int _selectedColumn;
|
||||
int _selectedRow;
|
||||
BOOL _allowsMultipleSelection;
|
||||
BOOL _allowsEmptySelection;
|
||||
BOOL _allowsColumnSelection;
|
||||
BOOL _selectingColumns;
|
||||
NSText *_textObject;
|
||||
int _editedRow;
|
||||
int _editedColumn;
|
||||
|
@ -194,7 +202,6 @@
|
|||
- (void) scrollColumnToVisible: (int)columnIndex;
|
||||
|
||||
/* Text delegate methods */
|
||||
/* ALL TODOS */
|
||||
- (BOOL) textShouldBeginEditing: (NSText *)textObject;
|
||||
- (void) textDidBeginEditing: (NSNotification *)aNotification;
|
||||
- (void) textDidChange: (NSNotification *)aNotification;
|
||||
|
@ -216,6 +223,8 @@
|
|||
|
||||
@interface NSTableView (GNUPrivate)
|
||||
- (void) _sendDoubleActionForColumn: (int)columnIndex;
|
||||
- (void) _selectColumn: (int)columnIndex
|
||||
modifiers: (unsigned int)modifiers;
|
||||
@end
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue