mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 13:20:47 +00:00
Started work of prefixing ivars with underscore; added two methods.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5306 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1885bd56bc
commit
3d70d7a7c0
1 changed files with 12 additions and 8 deletions
|
@ -65,14 +65,16 @@ typedef enum _NSMatrixMode {
|
|||
NSSize intercell;
|
||||
NSColor *backgroundColor;
|
||||
NSColor *cellBackgroundColor;
|
||||
id delegate;
|
||||
id target;
|
||||
SEL action;
|
||||
SEL doubleAction;
|
||||
SEL errorAction;
|
||||
id selectedCell;
|
||||
int selectedRow;
|
||||
int selectedColumn;
|
||||
id _delegate;
|
||||
NSText* _textObject;
|
||||
BOOL _tabKeyTraversesCells;
|
||||
id _target;
|
||||
SEL _action;
|
||||
SEL _doubleAction;
|
||||
SEL _errorAction;
|
||||
id _selectedCell;
|
||||
int _selectedRow;
|
||||
int _selectedColumn;
|
||||
BOOL allowsEmptySelection;
|
||||
BOOL selectionByRect;
|
||||
BOOL drawsBackground;
|
||||
|
@ -233,6 +235,8 @@ typedef enum _NSMatrixMode {
|
|||
- (id) previousText;
|
||||
- (void) setNextText: (id)anObject;
|
||||
- (void) setPreviousText: (id)anObject;
|
||||
- (BOOL) tabKeyTraversesCells;
|
||||
- (void) setTabKeyTraversesCells: (BOOL)flag;
|
||||
|
||||
/*
|
||||
* Assigning a Delegate
|
||||
|
|
Loading…
Reference in a new issue