mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 12:30: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
5a46225a23
commit
a0b28fa744
1 changed files with 12 additions and 8 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue