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:
Nicola Pero 2001-01-28 17:41:52 +00:00
parent c1c64fa436
commit bf4bf3e589

View file

@ -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