mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-04 16:30:42 +00:00
Stub 10.8 methods for allowsMagnification
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@39099 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
fde32601fb
commit
6ab0c87b9b
3 changed files with 21 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2015-10-28 Riccardo Mottola <rm@gnu.org>
|
||||||
|
|
||||||
|
* Headers/AppKit/NSScrollView.h
|
||||||
|
* Source/NSScrollView.m
|
||||||
|
Stub 10.8 methods for allowsMagnification.
|
||||||
|
|
||||||
2015-10-28 Fred Kiefer <FredKiefer@gmx.de>
|
2015-10-28 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Source/NSPasteboard.m (-_pbs): Fix waiting forever if gpbs
|
* Source/NSPasteboard.m (-_pbs): Fix waiting forever if gpbs
|
||||||
|
|
|
@ -159,6 +159,10 @@ typedef NSInteger NSScrollElasticity;
|
||||||
- (NSScrollElasticity)verticalScrollElasticity;
|
- (NSScrollElasticity)verticalScrollElasticity;
|
||||||
- (void)setVerticalScrollElasticity:(NSScrollElasticity)value;
|
- (void)setVerticalScrollElasticity:(NSScrollElasticity)value;
|
||||||
#endif
|
#endif
|
||||||
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_8, GS_API_LATEST)
|
||||||
|
- (BOOL)allowsMagnification;
|
||||||
|
- (void)setAllowsMagnification:(BOOL)m;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Updating display after scrolling */
|
/* Updating display after scrolling */
|
||||||
- (void)reflectScrolledClipView:(NSClipView*)aClipView;
|
- (void)reflectScrolledClipView:(NSClipView*)aClipView;
|
||||||
|
|
|
@ -1534,6 +1534,17 @@ GSOppositeEdge(NSRectEdge edge)
|
||||||
return _vertScroller;
|
return _vertScroller;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (BOOL)allowsMagnification
|
||||||
|
{
|
||||||
|
//we need an ivar for this
|
||||||
|
return NO;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)setAllowsMagnification:(BOOL)m
|
||||||
|
{
|
||||||
|
//we need an ivar for this
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* NSCoding protocol
|
* NSCoding protocol
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue