mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-21 00:20:57 +00:00
Add new MacOSX methods. Code mostly by Nikolaus Schaller.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25270 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
86d97a419f
commit
4835a35c1c
21 changed files with 831 additions and 84 deletions
|
@ -147,6 +147,27 @@ static Class imageCellClass;
|
|||
return [_cell isEditable];
|
||||
}
|
||||
|
||||
- (BOOL) animates
|
||||
{
|
||||
// FIXME: Should be passed on to cell.
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (void) setAnimates: (BOOL) flag
|
||||
{
|
||||
// FIXME: Should be passed on to cell.
|
||||
}
|
||||
|
||||
- (BOOL) allowsCutCopyPaste
|
||||
{
|
||||
return _allowsCutCopyPaste;
|
||||
}
|
||||
|
||||
- (void) setAllowsCutCopyPaste: (BOOL)flag
|
||||
{
|
||||
_allowsCutCopyPaste = flag;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
@implementation NSImageView (NSDraggingDestination)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue