Package com.jgoodies.forms.builder

Examples of com.jgoodies.forms.builder.ButtonBarBuilder2.addGlue()


  protected JComponent getButtonBar(boolean withAutoSaveFunction) {
    // add buttons?
    if (!withAutoSaveFunction || buttons.size() > 0) {
      ButtonBarBuilder2 b = new ButtonBarBuilder2();

      b.addGlue();
      // add buttons
      for (String key : buttons.keySet()) {
        b.addRelatedGap();
        b.addButton(buttons.get(key));
      }
View Full Code Here


     * @return a left aligned button bar with the given buttons
     */
    public static JPanel buildLeftAlignedBar(JButton... buttons) {
        ButtonBarBuilder2 builder = new ButtonBarBuilder2();
        builder.addButton(buttons);
        builder.addGlue();
        return builder.getPanel();
    }


    /**
 
View Full Code Here

            JButton[] buttons,
            boolean  leftToRightButtonOrder) {
        ButtonBarBuilder2 builder = new ButtonBarBuilder2();
        builder.setLeftToRightButtonOrder(leftToRightButtonOrder);
        builder.addButton(buttons);
        builder.addGlue();
        return builder.getPanel();
    }


    // General Purpose Factory Methods: Centered ****************************
 
View Full Code Here

     * @param buttons  an array of buttons to add
     * @return a centered button bar with the given buttons
     */
    public static JPanel buildCenteredBar(JButton... buttons) {
        ButtonBarBuilder2 builder = new ButtonBarBuilder2();
        builder.addGlue();
        builder.addButton(buttons);
        builder.addGlue();
        return builder.getPanel();
    }

View Full Code Here

     */
    public static JPanel buildCenteredBar(JButton... buttons) {
        ButtonBarBuilder2 builder = new ButtonBarBuilder2();
        builder.addGlue();
        builder.addButton(buttons);
        builder.addGlue();
        return builder.getPanel();
    }


    /**
 
View Full Code Here

     * @param buttons  an array of buttons to add
     * @return a right aligned button bar with the given buttons
     */
    public static JPanel buildRightAlignedBar(JButton... buttons) {
        ButtonBarBuilder2 builder = new ButtonBarBuilder2();
        builder.addGlue();
        builder.addButton(buttons);
        return builder.getPanel();
    }


View Full Code Here

    public static JPanel buildRightAlignedBar(
             JButton[] buttons,
             boolean leftToRightButtonOrder) {
        ButtonBarBuilder2 builder = new ButtonBarBuilder2();
        builder.setLeftToRightButtonOrder(leftToRightButtonOrder);
        builder.addGlue();
        builder.addButton(buttons);
        return builder.getPanel();
    }

View Full Code Here

     */
    public static JPanel buildHelpBar(JButton help, JButton... buttons) {
        ButtonBarBuilder2 builder = new ButtonBarBuilder2();
        builder.addButton(help);
        builder.addUnrelatedGap();
        builder.addGlue();
        builder.addButton(buttons);
        return builder.getPanel();
    }


View Full Code Here

  protected JComponent getButtonBar(boolean withAutoSaveFunction) {
    // add buttons?
    if (!withAutoSaveFunction && showSaveButton || buttons.size() > 0) {
      ButtonBarBuilder2 b = new ButtonBarBuilder2();

      b.addGlue();
      // add buttons
      for (String key : buttons.keySet()) {
        b.addRelatedGap();
        b.addButton(buttons.get(key));
      }
View Full Code Here

            public void actionPerformed(ActionEvent e) {
                dispose();
            }
        });
        ButtonBarBuilder2 bbb = new ButtonBarBuilder2();
        bbb.addGlue();
        bbb.addButton(newButton);
        bbb.addButton(modifyButton);
        bbb.addUnrelatedGap();
        bbb.addButton(cancelButton);
        bbb.addButton(okButton);
View Full Code Here

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.