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:
nico 1999-11-28 16:44:19 +00:00
parent 5a46225a23
commit a0b28fa744

View file

@ -65,14 +65,16 @@ typedef enum _NSMatrixMode {
NSSize intercell; NSSize intercell;
NSColor *backgroundColor; NSColor *backgroundColor;
NSColor *cellBackgroundColor; NSColor *cellBackgroundColor;
id delegate; id _delegate;
id target; NSText* _textObject;
SEL action; BOOL _tabKeyTraversesCells;
SEL doubleAction; id _target;
SEL errorAction; SEL _action;
id selectedCell; SEL _doubleAction;
int selectedRow; SEL _errorAction;
int selectedColumn; id _selectedCell;
int _selectedRow;
int _selectedColumn;
BOOL allowsEmptySelection; BOOL allowsEmptySelection;
BOOL selectionByRect; BOOL selectionByRect;
BOOL drawsBackground; BOOL drawsBackground;
@ -233,6 +235,8 @@ typedef enum _NSMatrixMode {
- (id) previousText; - (id) previousText;
- (void) setNextText: (id)anObject; - (void) setNextText: (id)anObject;
- (void) setPreviousText: (id)anObject; - (void) setPreviousText: (id)anObject;
- (BOOL) tabKeyTraversesCells;
- (void) setTabKeyTraversesCells: (BOOL)flag;
/* /*
* Assigning a Delegate * Assigning a Delegate