add NSWorkspaceLaunchoptions to NSWorkspace.h

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28675 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Hans Baier 2009-09-14 21:12:30 +00:00
parent ed28a8df0f
commit 76eba75a84

View file

@ -43,6 +43,26 @@
@class NSView;
@class NSURL;
#if OS_API_VERSION(MAC_OS_X_VERSION_10_3, GS_API_LATEST)
enum {
NSWorkspaceLaunchAndPrint = 0x2,
NSWorkspaceLaunchInhibitingBackgroundOnly = 0x80,
NSWorkspaceLaunchWithoutAddingToRecents = 0x100,
NSWorkspaceLaunchWithoutActivation = 0x200,
NSWorkspaceLaunchAsync = 0x10000,
NSWorkspaceLaunchAllowingClassicStartup = 0x20000,
NSWorkspaceLaunchPreferringClassic = 0x40000,
NSWorkspaceLaunchNewInstance = 0x80000,
NSWorkspaceLaunchAndHide = 0x100000,
NSWorkspaceLaunchAndHideOthers = 0x200000,
NSWorkspaceLaunchDefault = NSWorkspaceLaunchAsync | NSWorkspaceLaunchAllowingClassicStartup
};
typedef NSUInteger NSWorkspaceLaunchOptions;
#endif
@interface NSWorkspace : NSObject
{
NSMutableDictionary *_iconMap;