blob: 5adc5fc201bbf04ac4692030cabda4cb7dd54fee [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Rushan R. Gilmullin and others.
* All rights reserved. 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:
* Rushan R. Gilmullin - initial API and implementation
*******************************************************************************/
package org.eclipse.osbp.vaaclipse.widgets;
/**
* @author rushan
*
*/
public class ToolbarButton extends ToolbarButtonBase {
public static enum Type {
Button, Link
}
private Type type;
public ToolbarButton() {
this("Blank", null);
}
public ToolbarButton(String label, String iconURI) {
super(label, iconURI);
setType(Type.Button);
}
public void setType(Type type) {
if (type == Type.Link) {
this.addStyleName("link");
this.addStyleName("general");
} else if (type == Type.Button) {
this.addStyleName("vaaclipsebutton");
}
this.type = type;
}
}