All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gwtbootstrap3.client.ui.gwt.ButtonCell Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package org.gwtbootstrap3.client.ui.gwt;

/*
 * #%L
 * GwtBootstrap3
 * %%
 * Copyright (C) 2013 - 2015 GwtBootstrap3
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import org.gwtbootstrap3.client.ui.constants.ButtonSize;
import org.gwtbootstrap3.client.ui.constants.ButtonType;
import org.gwtbootstrap3.client.ui.constants.IconType;
import org.gwtbootstrap3.client.ui.constants.Styles;

import com.google.gwt.safehtml.shared.SafeHtml;
import com.google.gwt.safehtml.shared.SafeHtmlBuilder;
import com.google.gwt.text.shared.SimpleSafeHtmlRenderer;
import com.google.gwt.user.client.ui.HasEnabled;

public class ButtonCell extends com.google.gwt.cell.client.ButtonCell implements HasEnabled {

    private IconType icon;

    private ButtonType type = ButtonType.DEFAULT;

    private ButtonSize size = ButtonSize.DEFAULT;

    private boolean enabled = true;

    public ButtonCell() {
        super(SimpleSafeHtmlRenderer.getInstance());
    }

    public ButtonCell(ButtonType type) {
        this();
        this.type = type;
    }

    public ButtonCell(IconType icon) {
        this();
        this.icon = icon;
    }

    public ButtonCell(ButtonSize size) {
        this();
        this.size = size;
    }

    public ButtonCell(ButtonType type, IconType icon) {
        this();
        this.type = type;
        this.icon = icon;
    }

    public ButtonCell(ButtonType type, ButtonSize size) {
        this();
        this.type = type;
        this.size = size;
    }

    public ButtonCell(IconType icon, ButtonSize size) {
        this();
        this.icon = icon;
        this.size = size;
    }

    public ButtonCell(IconType icon, ButtonType type, ButtonSize size) {
        this();
        this.icon = icon;
        this.type = type;
        this.size = size;
    }

    @Override
    public boolean isEnabled() {
        return enabled;
    }

    @Override
    public void setEnabled(boolean enabled) {
        this.enabled = enabled;
    }

    @Override
    public void render(com.google.gwt.cell.client.Cell.Context context, SafeHtml data, SafeHtmlBuilder sb) {
        String cssClasses = new StringBuilder("btn") //
                .append(" ") //
                .append(type.getCssName()) //
                .append(" ") //
                .append(size.getCssName()) //
                .toString();

        String disabled = "";
        if (!enabled) {
            disabled = " disabled=\"disabled\"";
        }

        sb.appendHtmlConstant("");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy