blob: c1bdbdebf58d871be9d12ab77a1b6c81e42522f5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.cocoa;
public class NSApplication extends NSResponder {
public NSApplication() {
super();
}
public NSApplication(long id) {
super(id);
}
public NSApplication(id id) {
super(id);
}
public void activateIgnoringOtherApps(boolean flag) {
OS.objc_msgSend(this.id, OS.sel_activateIgnoringOtherApps_, flag);
}
public NSImage applicationIconImage() {
long result = OS.objc_msgSend(this.id, OS.sel_applicationIconImage);
return result != 0 ? new NSImage(result) : null;
}
public void arrangeInFront(id sender) {
OS.objc_msgSend(this.id, OS.sel_arrangeInFront_, sender != null ? sender.id : 0);
}
public void beginSheet(NSWindow sheet, NSWindow docWindow, id modalDelegate, long didEndSelector, long contextInfo) {
OS.objc_msgSend(this.id, OS.sel_beginSheet_modalForWindow_modalDelegate_didEndSelector_contextInfo_, sheet != null ? sheet.id : 0, docWindow != null ? docWindow.id : 0, modalDelegate != null ? modalDelegate.id : 0, didEndSelector, contextInfo);
}
public NSEvent currentEvent() {
long result = OS.objc_msgSend(this.id, OS.sel_currentEvent);
return result != 0 ? new NSEvent(result) : null;
}
public NSDockTile dockTile() {
long result = OS.objc_msgSend(this.id, OS.sel_dockTile);
return result != 0 ? new NSDockTile(result) : null;
}
public void endSheet(NSWindow sheet, long returnCode) {
OS.objc_msgSend(this.id, OS.sel_endSheet_returnCode_, sheet != null ? sheet.id : 0, returnCode);
}
public void finishLaunching() {
OS.objc_msgSend(this.id, OS.sel_finishLaunching);
}
public void hide(id sender) {
OS.objc_msgSend(this.id, OS.sel_hide_, sender != null ? sender.id : 0);
}
public void hideOtherApplications(id sender) {
OS.objc_msgSend(this.id, OS.sel_hideOtherApplications_, sender != null ? sender.id : 0);
}
public boolean isActive() {
return OS.objc_msgSend_bool(this.id, OS.sel_isActive);
}
public boolean isRunning() {
return OS.objc_msgSend_bool(this.id, OS.sel_isRunning);
}
public NSWindow keyWindow() {
long result = OS.objc_msgSend(this.id, OS.sel_keyWindow);
return result != 0 ? new NSWindow(result) : null;
}
public NSMenu mainMenu() {
long result = OS.objc_msgSend(this.id, OS.sel_mainMenu);
return result != 0 ? new NSMenu(result) : null;
}
public NSEvent nextEventMatchingMask(long mask, NSDate expiration, NSString mode, boolean deqFlag) {
long result = OS.objc_msgSend(this.id, OS.sel_nextEventMatchingMask_untilDate_inMode_dequeue_, mask, expiration != null ? expiration.id : 0, mode != null ? mode.id : 0, deqFlag);
return result != 0 ? new NSEvent(result) : null;
}
public void orderFrontStandardAboutPanel(id sender) {
OS.objc_msgSend(this.id, OS.sel_orderFrontStandardAboutPanel_, sender != null ? sender.id : 0);
}
public void postEvent(NSEvent event, boolean flag) {
OS.objc_msgSend(this.id, OS.sel_postEvent_atStart_, event != null ? event.id : 0, flag);
}
public void replyToOpenOrPrint(long reply) {
OS.objc_msgSend(this.id, OS.sel_replyToOpenOrPrint_, reply);
}
public long runModalForWindow(NSWindow theWindow) {
return OS.objc_msgSend(this.id, OS.sel_runModalForWindow_, theWindow != null ? theWindow.id : 0);
}
public boolean sendAction(long theAction, id theTarget, id sender) {
return OS.objc_msgSend_bool(this.id, OS.sel_sendAction_to_from_, theAction, theTarget != null ? theTarget.id : 0, sender != null ? sender.id : 0);
}
public void sendEvent(NSEvent theEvent) {
OS.objc_msgSend(this.id, OS.sel_sendEvent_, theEvent != null ? theEvent.id : 0);
}
public boolean setActivationPolicy(long activationPolicy) {
return OS.objc_msgSend_bool(this.id, OS.sel_setActivationPolicy_, activationPolicy);
}
public void setApplicationIconImage(NSImage applicationIconImage) {
OS.objc_msgSend(this.id, OS.sel_setApplicationIconImage_, applicationIconImage != null ? applicationIconImage.id : 0);
}
public void setDelegate(id delegate) {
OS.objc_msgSend(this.id, OS.sel_setDelegate_, delegate != null ? delegate.id : 0);
}
public void setHelpMenu(NSMenu helpMenu) {
OS.objc_msgSend(this.id, OS.sel_setHelpMenu_, helpMenu != null ? helpMenu.id : 0);
}
public void setMainMenu(NSMenu mainMenu) {
OS.objc_msgSend(this.id, OS.sel_setMainMenu_, mainMenu != null ? mainMenu.id : 0);
}
public void setServicesMenu(NSMenu servicesMenu) {
OS.objc_msgSend(this.id, OS.sel_setServicesMenu_, servicesMenu != null ? servicesMenu.id : 0);
}
public static NSApplication sharedApplication() {
long result = OS.objc_msgSend(OS.class_NSApplication, OS.sel_sharedApplication);
return result != 0 ? new NSApplication(result) : null;
}
public void stop(id sender) {
OS.objc_msgSend(this.id, OS.sel_stop_, sender != null ? sender.id : 0);
}
public void stopModal() {
OS.objc_msgSend(this.id, OS.sel_stopModal);
}
public void terminate(id sender) {
OS.objc_msgSend(this.id, OS.sel_terminate_, sender != null ? sender.id : 0);
}
public void unhideAllApplications(id sender) {
OS.objc_msgSend(this.id, OS.sel_unhideAllApplications_, sender != null ? sender.id : 0);
}
public NSWindow windowWithWindowNumber(long windowNum) {
long result = OS.objc_msgSend(this.id, OS.sel_windowWithWindowNumber_, windowNum);
return result != 0 ? new NSWindow(result) : null;
}
public NSArray windows() {
long result = OS.objc_msgSend(this.id, OS.sel_windows);
return result != 0 ? new NSArray(result) : null;
}
}