blob: cdc1782bc3d1dcc8057f7d46f4f3e7e7cb3cdd51 [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 NSPanel extends NSWindow {
public NSPanel() {
super();
}
public NSPanel(long id) {
super(id);
}
public NSPanel(id id) {
super(id);
}
public void setBecomesKeyOnlyIfNeeded(boolean becomesKeyOnlyIfNeeded) {
OS.objc_msgSend(this.id, OS.sel_setBecomesKeyOnlyIfNeeded_, becomesKeyOnlyIfNeeded);
}
public void setFloatingPanel(boolean floatingPanel) {
OS.objc_msgSend(this.id, OS.sel_setFloatingPanel_, floatingPanel);
}
public void setWorksWhenModal(boolean worksWhenModal) {
OS.objc_msgSend(this.id, OS.sel_setWorksWhenModal_, worksWhenModal);
}
public static double minFrameWidthWithTitle(NSString aTitle, long aStyle) {
return OS.objc_msgSend_fpret(OS.class_NSPanel, OS.sel_minFrameWidthWithTitle_styleMask_, aTitle != null ? aTitle.id : 0, aStyle);
}
public static long windowNumberAtPoint(NSPoint point, long windowNumber) {
return OS.objc_msgSend(OS.class_NSPanel, OS.sel_windowNumberAtPoint_belowWindowWithWindowNumber_, point, windowNumber);
}
}