mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-01 09:22:07 +00:00
Additional method
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3575 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
00fc607555
commit
b1aa75df09
3 changed files with 9 additions and 0 deletions
|
@ -5,6 +5,9 @@ Tue Jan 19 10:00:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
|||
* Source/NSSplitView.m: ([-adjustSubviews]) complete rewrite in
|
||||
an attempt to get things working as specified in documentation.
|
||||
Subviews are now scaled proportionately.
|
||||
* Source/NSBrowser.m: ([-selectedRowInColumn:]) implemented as
|
||||
suggested by Dirk Olmes.
|
||||
* Headers/AppKit/NSBrowser.h: ditto
|
||||
|
||||
Mon Jan 18 5:00:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
|
|
|
@ -151,6 +151,7 @@
|
|||
- (void)reloadColumn:(int)column;
|
||||
- (void)selectAll:(id)sender;
|
||||
- (int)selectedColumn;
|
||||
- (int) selectedRowInColumn: (int)column;
|
||||
- (void)setLastColumn:(int)column;
|
||||
- (void)validateVisibleColumns;
|
||||
|
||||
|
|
|
@ -749,6 +749,11 @@
|
|||
return NSNotFound;
|
||||
}
|
||||
|
||||
- (int) selectedRowInColumn: (int)column
|
||||
{
|
||||
return [[self matrixInColumn: column] selectedRow];
|
||||
}
|
||||
|
||||
- (void)setLastColumn:(int)column
|
||||
{
|
||||
_lastColumnLoaded = column;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue