mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 23:31:02 +00:00
Added delegate method
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@8849 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c1c64fa436
commit
bf4bf3e589
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/*
|
||||
/* -*-objc-*-
|
||||
NSSplitView.h
|
||||
|
||||
Allows multiple views to share a region in a window
|
||||
|
@ -69,7 +69,7 @@
|
|||
|
||||
@end
|
||||
|
||||
@interface NSObject(NSSplitViewDelegate)
|
||||
@interface NSObject (NSSplitViewDelegate)
|
||||
- (void) splitView: (NSSplitView *)sender
|
||||
resizeSubviewsWithOldSize: (NSSize)oldSize;
|
||||
|
||||
|
@ -78,6 +78,10 @@ constrainMinCoordinate: (float *)min
|
|||
maxCoordinate: (float *)max
|
||||
ofSubviewAt: (int)offset;
|
||||
|
||||
- (float) splitView: (NSSplitView *)sender
|
||||
constrainSplitPosition: (float)proposedPosition
|
||||
ofSubviewAt: (int)offset;
|
||||
|
||||
- (void) splitViewWillResizeSubviews: (NSNotification *)notification;
|
||||
- (void) splitViewDidResizeSubviews: (NSNotification *)notification;
|
||||
@end
|
||||
|
|
Loading…
Reference in a new issue