blob: 5c3d40ed222c585615d466011de1b72313511af7 [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 NSStatusBar extends NSObject {
public NSStatusBar() {
super();
}
public NSStatusBar(long id) {
super(id);
}
public NSStatusBar(id id) {
super(id);
}
public void removeStatusItem(NSStatusItem item) {
OS.objc_msgSend(this.id, OS.sel_removeStatusItem_, item != null ? item.id : 0);
}
public NSStatusItem statusItemWithLength(double length) {
long result = OS.objc_msgSend(this.id, OS.sel_statusItemWithLength_, length);
return result != 0 ? new NSStatusItem(result) : null;
}
public static NSStatusBar systemStatusBar() {
long result = OS.objc_msgSend(OS.class_NSStatusBar, OS.sel_systemStatusBar);
return result != 0 ? new NSStatusBar(result) : null;
}
public double thickness() {
return OS.objc_msgSend_fpret(this.id, OS.sel_thickness);
}
}