blob: 3397ada72d7eef016c329cc392783baf22976392 [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 NSProgressIndicator extends NSView {
public NSProgressIndicator() {
super();
}
public NSProgressIndicator(long id) {
super(id);
}
public NSProgressIndicator(id id) {
super(id);
}
public double doubleValue() {
return OS.objc_msgSend_fpret(this.id, OS.sel_doubleValue);
}
public double maxValue() {
return OS.objc_msgSend_fpret(this.id, OS.sel_maxValue);
}
public double minValue() {
return OS.objc_msgSend_fpret(this.id, OS.sel_minValue);
}
public void setControlSize(long controlSize) {
OS.objc_msgSend(this.id, OS.sel_setControlSize_, controlSize);
}
public void setDoubleValue(double doubleValue) {
OS.objc_msgSend(this.id, OS.sel_setDoubleValue_, doubleValue);
}
public void setIndeterminate(boolean indeterminate) {
OS.objc_msgSend(this.id, OS.sel_setIndeterminate_, indeterminate);
}
public void setMaxValue(double maxValue) {
OS.objc_msgSend(this.id, OS.sel_setMaxValue_, maxValue);
}
public void setMinValue(double minValue) {
OS.objc_msgSend(this.id, OS.sel_setMinValue_, minValue);
}
public void setUsesThreadedAnimation(boolean usesThreadedAnimation) {
OS.objc_msgSend(this.id, OS.sel_setUsesThreadedAnimation_, usesThreadedAnimation);
}
public void startAnimation(id sender) {
OS.objc_msgSend(this.id, OS.sel_startAnimation_, sender != null ? sender.id : 0);
}
}