diff options
Diffstat (limited to 'xorg-server/hw/xquartz/X11Application.m')
-rw-r--r-- | xorg-server/hw/xquartz/X11Application.m | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/xorg-server/hw/xquartz/X11Application.m b/xorg-server/hw/xquartz/X11Application.m index f4fbb1abe..f3c8a307a 100644 --- a/xorg-server/hw/xquartz/X11Application.m +++ b/xorg-server/hw/xquartz/X11Application.m @@ -411,6 +411,9 @@ static void message_kit_thread (SEL selector, NSObject *arg) { SetSystemUIMode(kUIModeAllHidden, quartzFullscreenMenu ? kUIOptionAutoShowMenuBar : 0); // kUIModeAllSuppressed or kUIOptionAutoShowMenuBar can be used to allow "mouse-activation" } +- (void) launch_client:(NSString *)cmd { + (void)[_controller application:self openFile:cmd]; +} /* user preferences */ @@ -856,6 +859,16 @@ void X11ApplicationShowHideMenubar (int state) { [n release]; } +void X11ApplicationLaunchClient (const char *cmd) { + NSString *string; + + string = [[NSString alloc] initWithUTF8String:cmd]; + + message_kit_thread (@selector (launch_client:), string); + + [string release]; +} + static void check_xinitrc (void) { char *tem, buf[1024]; NSString *msg; |