Package org.gwt.mosaic.forms.client.builder

Source Code of org.gwt.mosaic.forms.client.builder.ButtonStackBuilder

/*
* Copyright (c) 2009 GWT Mosaic Georgios J. Georgopolos.
*
* 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.
*/
/*
* Copyright (c) 2002-2008 JGoodies Karsten Lentzsch. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* o 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.
*
* o Neither the name of JGoodies Karsten Lentzsch 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 THE COPYRIGHT OWNER OR CONTRIBUTORS 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.gwt.mosaic.forms.client.builder;

import org.gwt.mosaic.forms.client.factories.FormFactory;
import org.gwt.mosaic.forms.client.layout.ColumnSpec;
import org.gwt.mosaic.forms.client.layout.ConstantSize;
import org.gwt.mosaic.forms.client.layout.FormLayout;
import org.gwt.mosaic.forms.client.layout.RowSpec;
import org.gwt.mosaic.ui.client.layout.LayoutPanel;

import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.Widget;

/**
* A non-visual builder that assists you in building consistent button stacks
* using the {@link FormLayout}.
* <p>
*
* This builder sets a hint for narrow margin for the gridded buttons. This can
* reduce the button stack's width if some buttons have long texts. For example,
* a stack with 'OK', 'Cancel', 'Configure&hellip;' will likely exceed the
* minimum button width. The narrow margins help getting narrow stacks. Note
* that some look&amp;feels do not support the narrow margin feature, and
* conversely, others have only narrow margins. The JGoodies look&amp;feels
* honor the setting, the Mac Aqua l&amp;f uses narrow margins all the time.
* <p>
*
* <strong>Example:</strong><br>
* The following example builds a button stack with <i>Close, Up</i> and
* <i>Down</i>, where Up and Down are related, and Close is not related to the
* other buttons, which makes a wide gap for the unrelated and a smaller gap for
* the related buttons.
*
* <pre>
* private JPanel createCloseUpDownButtonStack(
*         JButton close, JButton up, JButton down) {
*     ButtonStackBuilder builder = new ButtonStackBuilder();
*     builder.addGridded(close);
*     builder.addUnrelatedGap();
*     builder.addGridded(up);
*     builder.addRelatedGap();
*     builder.addGridded(down);
*     return builder.getPanel();
* }
* </pre>
*
* @author Karsten Lentzsch
* @author georgopoulos.georgios(at)gmail.com
*
* @see ButtonBarBuilder
* @see com.jgoodies.forms.factories.ButtonBarFactory
* @see com.jgoodies.forms.util.LayoutStyle
*/
public final class ButtonStackBuilder extends PanelBuilder {

  /**
   * Specifies the FormLayout's the single button stack column.
   */
  private static final ColumnSpec[] COL_SPECS = new ColumnSpec[] {FormFactory.BUTTON_COLSPEC};

  /**
   * Specifies the rows of the initial FormLayout used in constructors.
   */
  private static final RowSpec[] ROW_SPECS = new RowSpec[] {};

  /**
   * The client property key used to indicate that a button shall get narrow
   * margins on the left and right hand side.
   * <p>
   *
   * This optional setting will be honored by all JGoodies Look&amp;Feel
   * implementations. The Mac Aqua l&amp;f uses narrow margins only. Other
   * look&amp;feel implementations will likely ignore this key and so may render
   * a wider button margin.
   */
  private static final String NARROW_KEY = "jgoodies.isNarrow";

  // Instance Creation ****************************************************

  /**
   * Constructs a ButtonStackBuilder on a default JPanel using a preconfigured
   * FormLayout as layout manager.
   */
  public ButtonStackBuilder() {
    this(new LayoutPanel());
  }

  /**
   * Constructs a ButtonStackBuilder on the given panel using a preconfigured
   * FormLayout as layout manager.
   *
   * @param panel the layout container
   */
  public ButtonStackBuilder(LayoutPanel panel) {
    this(new FormLayout(COL_SPECS, ROW_SPECS), panel);
  }

  /**
   * Constructs a ButtonStackBuilder on the given panel and layout. The layout
   * must have at least one column.
   *
   * @param layout the FormLayout used to layout
   * @param panel the layout container
   *
   * @since 1.2
   */
  public ButtonStackBuilder(FormLayout layout, LayoutPanel panel) {
    super(layout, panel);
  }

  // Adding Components ****************************************************

  /**
   * Adds a sequence of related buttons separated by a default gap.
   *
   * @param buttons an array of buttons to add
   */
  public void addButtons(Button[] buttons) {
    for (int i = 0; i < buttons.length; i++) {
      addGridded(buttons[i]);
      if (i < buttons.length - 1)
        addRelatedGap();
    }
  }

  /**
   * Adds a fixed size component.
   *
   * @param component the component to add
   */
  public void addFixed(Widget component) {
    getLayout().appendRow(FormFactory.PREF_ROWSPEC);
    add(component);
    nextRow();
  }

  /**
   * Adds a gridded component.
   *
   * @param component the component to add
   */
  public void addGridded(Widget component) {
    getLayout().appendRow(FormFactory.PREF_ROWSPEC);
    getLayout().addGroupedRow(getRow());
    // component.putClientProperty(NARROW_KEY, Boolean.TRUE);
    add(component);
    nextRow();
  }

  /**
   * Adds a glue that will be given the extra space, if this box is larger than
   * its preferred size.
   */
  public void addGlue() {
    appendGlueRow();
    nextRow();
  }

  /**
   * Adds the standard gap for related components.
   */
  public void addRelatedGap() {
    appendRelatedComponentsGapRow();
    nextRow();
  }

  /**
   * Adds the standard gap for unrelated components.
   */
  public void addUnrelatedGap() {
    appendUnrelatedComponentsGapRow();
    nextRow();
  }

  /**
   * Adds a strut of a specified size.
   *
   * @param size a constant that describes the gap
   */
  public void addStrut(ConstantSize size) {
    getLayout().appendRow(new RowSpec(RowSpec.TOP, size, RowSpec.NO_GROW));
    nextRow();
  }

}
TOP

Related Classes of org.gwt.mosaic.forms.client.builder.ButtonStackBuilder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.