/* * Copyright (c) 2011, Lukas Gross * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the jo-widgets.org nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL jo-widgets.org BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. */ package org.jowidgets.spi.impl.dummy.widgets; import org.jowidgets.common.types.Orientation; import org.jowidgets.common.widgets.factory.IGenericWidgetFactory; import org.jowidgets.spi.impl.dummy.image.DummyImageRegistry; import org.jowidgets.spi.impl.dummy.ui.AbstractUIDButton; import org.jowidgets.spi.impl.dummy.ui.UIDComponent; import org.jowidgets.spi.impl.dummy.ui.UIDContainer; import org.jowidgets.spi.impl.dummy.ui.UIDToolBar; import org.jowidgets.spi.impl.dummy.ui.UIDToolBarButton; import org.jowidgets.spi.impl.dummy.ui.UIDToolBarContainerItem; import org.jowidgets.spi.impl.dummy.ui.UIDToolBarPopupButton; import org.jowidgets.spi.impl.dummy.ui.UIDToolBarSeparator; import org.jowidgets.spi.impl.dummy.ui.UIDToolBarToggleButton; import org.jowidgets.spi.widgets.IToolBarButtonSpi; import org.jowidgets.spi.widgets.IToolBarContainerItemSpi; import org.jowidgets.spi.widgets.IToolBarItemSpi; import org.jowidgets.spi.widgets.IToolBarPopupButtonSpi; import org.jowidgets.spi.widgets.IToolBarSpi; import org.jowidgets.spi.widgets.IToolBarToggleButtonSpi; public class ToolBarImpl extends DummyControl implements IToolBarSpi { private final DummyImageRegistry imageRegistry; private final IGenericWidgetFactory factory; public ToolBarImpl(final DummyImageRegistry imageRegistry, final IGenericWidgetFactory factory) { super(new UIDToolBar()); this.imageRegistry = imageRegistry; this.factory = factory; } @Override public UIDToolBar getUiReference() { return (UIDToolBar) super.getUiReference(); } @Override public void pack() { // Nothing to do } @Override public void remove(final int index) { getUiReference().remove(index); } @Override public IToolBarButtonSpi addToolBarButton(final Integer index) { final UIDComponent button = addItem(new UIDToolBarButton(), index); return new ToolBarButtonImpl(imageRegistry, (AbstractUIDButton) button); } @Override public IToolBarToggleButtonSpi addToolBarToggleButton(final Integer index) { final UIDComponent button = addItem(new UIDToolBarToggleButton(), index); return new ToolBarToggleButtonImpl(imageRegistry, (UIDToolBarToggleButton) button); } @Override public IToolBarPopupButtonSpi addToolBarPopupButton(final Integer index) { final UIDComponent button = addItem(new UIDToolBarPopupButton(), index); return new ToolBarPopupButtonImpl(imageRegistry, (AbstractUIDButton) button); } @Override public IToolBarContainerItemSpi addToolBarContainer(final Integer index) { final UIDComponent container = addItem(new UIDToolBarContainerItem(), index); return new ToolBarContainerItemImpl(factory, (UIDContainer) container); } @Override public IToolBarItemSpi addSeparator(final Integer index) { final UIDComponent separator = addItem(new UIDToolBarSeparator(Orientation.VERTICAL), index); return new ToolBarSeparatorImpl((UIDToolBarSeparator) separator); } private UIDComponent addItem(final UIDComponent item, final Integer index) { if (index != null) { getUiReference().add(item, index.intValue()); } else { getUiReference().add(item); } return item; } }