blob: c1ade7002d558181b88718486b27d2a0d4e1b2d3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.cocoa;
public class SFCertificatePanel extends NSPanel {
public SFCertificatePanel() {
super();
}
public SFCertificatePanel(long /*int*/ id) {
super(id);
}
public SFCertificatePanel(id id) {
super(id);
}
public void setAlternateButtonTitle(NSString title) {
OS.objc_msgSend(this.id, OS.sel_setAlternateButtonTitle_, title != null ? title.id : 0);
}
public void setShowsHelp(boolean showsHelp) {
OS.objc_msgSend(this.id, OS.sel_setShowsHelp_, showsHelp);
}
public static double /*float*/ minFrameWidthWithTitle(NSString aTitle, long /*int*/ aStyle) {
return (double /*float*/)OS.objc_msgSend_fpret(OS.class_SFCertificatePanel, OS.sel_minFrameWidthWithTitle_styleMask_, aTitle != null ? aTitle.id : 0, aStyle);
}
public static long /*int*/ windowNumberAtPoint(NSPoint point, long /*int*/ windowNumber) {
return OS.objc_msgSend(OS.class_SFCertificatePanel, OS.sel_windowNumberAtPoint_belowWindowWithWindowNumber_, point, windowNumber);
}
}