mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-24 18:31:20 +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
e1fd264d4f
commit
0fbb26a028
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>
|
||||
|
||||
* Source/GSDisplayServer.m: ([-dealloc]) remove deallocated server
|
||||
|
|
|
@ -128,6 +128,16 @@ APPKIT_EXPORT NSString *NSURLPboardType;
|
|||
* Pasteboard contains HTML data
|
||||
*/
|
||||
APPKIT_EXPORT NSString *NSHTMLPboardType;
|
||||
|
||||
/**
|
||||
* Pasteboard contains VCard (address book) data
|
||||
*/
|
||||
APPKIT_EXPORT NSString *NSVCardPboardType;
|
||||
|
||||
/**
|
||||
* Pasteboard contains promised files
|
||||
*/
|
||||
APPKIT_EXPORT NSString *NSFilesPromisePboardType;
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
|
@ -231,6 +231,8 @@ NSString *NSPDFPboardType = @"NSPDFPboardType";
|
|||
NSString *NSPICTPboardType = @"NSPICTPboardType";
|
||||
NSString *NSURLPboardType = @"NSURLPboardType";
|
||||
NSString *NSHTMLPboardType = @"NSHTMLPboardType";
|
||||
NSString *NSVCardPboardType = @"NSVCardPboardType";
|
||||
NSString *NSFilesPromisePboardType = @"NSFilesPromisePboardType";
|
||||
|
||||
// Pasteboard Name Globals
|
||||
NSString *NSDragPboard = @"NSDragPboard";
|
||||
|
|
Loading…
Reference in a new issue