mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-01 20:31:56 +00:00
New pasteboard types
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@18003 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f56288e34d
commit
4a58d9175b
3 changed files with 17 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2003-10-29 Bjorn Giesler <bjoern@giesler.de>
|
||||||
|
|
||||||
|
* Source/externs.m: New MacOS 10.3 pasteboard types
|
||||||
|
* Headers/AppKit/NSPasteboard.h: New MacOS 10.3 pasteboard types
|
||||||
|
|
||||||
2003-10-29 Richard Frith-Macdonald <rfm@gnu.org>
|
2003-10-29 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/GSDisplayServer.m: ([-dealloc]) remove deallocated server
|
* Source/GSDisplayServer.m: ([-dealloc]) remove deallocated server
|
||||||
|
|
|
@ -128,6 +128,16 @@ APPKIT_EXPORT NSString *NSURLPboardType;
|
||||||
* Pasteboard contains HTML data
|
* Pasteboard contains HTML data
|
||||||
*/
|
*/
|
||||||
APPKIT_EXPORT NSString *NSHTMLPboardType;
|
APPKIT_EXPORT NSString *NSHTMLPboardType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pasteboard contains VCard (address book) data
|
||||||
|
*/
|
||||||
|
APPKIT_EXPORT NSString *NSVCardPboardType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pasteboard contains promised files
|
||||||
|
*/
|
||||||
|
APPKIT_EXPORT NSString *NSFilesPromisePboardType;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -231,6 +231,8 @@ NSString *NSPDFPboardType = @"NSPDFPboardType";
|
||||||
NSString *NSPICTPboardType = @"NSPICTPboardType";
|
NSString *NSPICTPboardType = @"NSPICTPboardType";
|
||||||
NSString *NSURLPboardType = @"NSURLPboardType";
|
NSString *NSURLPboardType = @"NSURLPboardType";
|
||||||
NSString *NSHTMLPboardType = @"NSHTMLPboardType";
|
NSString *NSHTMLPboardType = @"NSHTMLPboardType";
|
||||||
|
NSString *NSVCardPboardType = @"NSVCardPboardType";
|
||||||
|
NSString *NSFilesPromisePboardType = @"NSFilesPromisePboardType";
|
||||||
|
|
||||||
// Pasteboard Name Globals
|
// Pasteboard Name Globals
|
||||||
NSString *NSDragPboard = @"NSDragPboard";
|
NSString *NSDragPboard = @"NSDragPboard";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue