blob: 5d9e073770059f7c3f1b874264770c9379cd9d28 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2009 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 NSButton extends NSControl {
public NSButton() {
super();
}
public NSButton(long /*int*/ id) {
super(id);
}
public NSButton(id id) {
super(id);
}
public NSAttributedString attributedTitle() {
long /*int*/ result = OS.objc_msgSend(this.id, OS.sel_attributedTitle);
return result != 0 ? new NSAttributedString(result) : null;
}
public void setAllowsMixedState(boolean flag) {
OS.objc_msgSend(this.id, OS.sel_setAllowsMixedState_, flag);
}
public void setAttributedTitle(NSAttributedString aString) {
OS.objc_msgSend(this.id, OS.sel_setAttributedTitle_, aString != null ? aString.id : 0);
}
public void setBezelStyle(long /*int*/ bezelStyle) {
OS.objc_msgSend(this.id, OS.sel_setBezelStyle_, bezelStyle);
}
public void setBordered(boolean flag) {
OS.objc_msgSend(this.id, OS.sel_setBordered_, flag);
}
public void setButtonType(long /*int*/ aType) {
OS.objc_msgSend(this.id, OS.sel_setButtonType_, aType);
}
public void setImage(NSImage image) {
OS.objc_msgSend(this.id, OS.sel_setImage_, image != null ? image.id : 0);
}
public void setImagePosition(long /*int*/ aPosition) {
OS.objc_msgSend(this.id, OS.sel_setImagePosition_, aPosition);
}
public void setKeyEquivalent(NSString charCode) {
OS.objc_msgSend(this.id, OS.sel_setKeyEquivalent_, charCode != null ? charCode.id : 0);
}
public void setState(long /*int*/ value) {
OS.objc_msgSend(this.id, OS.sel_setState_, value);
}
public void setTitle(NSString aString) {
OS.objc_msgSend(this.id, OS.sel_setTitle_, aString != null ? aString.id : 0);
}
public long /*int*/ state() {
return OS.objc_msgSend(this.id, OS.sel_state);
}
public static long /*int*/ cellClass() {
return OS.objc_msgSend(OS.class_NSButton, OS.sel_cellClass);
}
public static void setCellClass(long /*int*/ factoryId) {
OS.objc_msgSend(OS.class_NSButton, OS.sel_setCellClass_, factoryId);
}
}