Package gnu.testlet.javax.swing.plaf.basic.BasicComboBoxUI

Source Code of gnu.testlet.javax.swing.plaf.basic.BasicComboBoxUI.getPreferredSize

// Tags: JDK1.2
// Uses: MyBasicComboBoxUI

// Copyright (C) 2005, 2006 David Gilbert <david.gilbert@object-refinery.com>

// This file is part of Mauve.

// Mauve is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2, or (at your option)
// any later version.

// Mauve is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Mauve; see the file COPYING.  If not, write to
// the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
// Boston, MA 02110-1301 USA.

package gnu.testlet.javax.swing.plaf.basic.BasicComboBoxUI;

import gnu.testlet.TestHarness;
import gnu.testlet.Testlet;

import java.awt.Dimension;
import java.awt.Font;
import java.awt.FontMetrics;

import javax.swing.DefaultComboBoxModel;
import javax.swing.JComboBox;
import javax.swing.JTextField;
import javax.swing.plaf.basic.BasicComboBoxUI;

/**
* Some checks for the getPreferredSize() method in the
* {@link BasicComboBoxUI} class. 
*/
public class getPreferredSize implements Testlet
{

  /**
   * Runs the test using the specified harness.
   *
   * @param harness  the test harness (<code>null</code> not permitted).
   */
  public void test(TestHarness harness
  {
    testNonEditable(harness);
    testEditable(harness);
  }
 
  private void testNonEditable(TestHarness harness)
  {
    JComboBox cb = new JComboBox();
    BasicComboBoxUI ui = new BasicComboBoxUI();
    cb.setUI(ui);
    int additionalHeight = 2// margin?  border?
    int additionalWidth = 2
    FontMetrics fm = cb.getFontMetrics(cb.getFont());
   
    // the following width calculation is a guess.  We know the value
    // depends on the font size, and that it is relatively small, so after
    // trying out a few candidates this one seems to give the right result
    int width = fm.charWidth(' ') + additionalWidth;
    int height = fm.getHeight() + additionalHeight;
    harness.check(ui.getPreferredSize(cb),
            new Dimension(width + height, height));
                   // the width is the display width plus the button width and
                   // the button width is equal to 'height'
   
    cb.setModel(new DefaultComboBoxModel(new Object[] {"X"}));
    width = fm.charWidth('X') + additionalWidth;
    harness.check(ui.getPreferredSize(cb),
            new Dimension(width + height, height));
   
    cb.setModel(new DefaultComboBoxModel(new Object[] {null}));
    harness.check(ui.getPreferredSize(cb).height, height);
   
    cb.setModel(new DefaultComboBoxModel(new Object[] {""}));
    harness.check(ui.getPreferredSize(cb).height, height);
   
    cb.setPrototypeDisplayValue("XX");   
    width = fm.stringWidth("XX") + additionalWidth;
    harness.check(ui.getPreferredSize(cb),
            new Dimension(width + height, height));
  }

  private void testEditable(TestHarness harness)
  {
    harness.checkPoint("testEditable()");
    JComboBox cb = new JComboBox();
    BasicComboBoxUI ui = new BasicComboBoxUI();
    cb.setUI(ui);
    JTextField tf = (JTextField) cb.getEditor().getEditorComponent();
    cb.setEditable(true);
    Font font = cb.getFont();
    FontMetrics fm = cb.getFontMetrics(font);
    int height = fm.getHeight() + 2;
    int width = fm.stringWidth("m") * tf.getColumns() + height;
    harness.check(ui.getPreferredSize(cb), new Dimension(width, height));   
    cb.setModel(new DefaultComboBoxModel(new Object[] {"X"}));
    harness.check(ui.getPreferredSize(cb), new Dimension(width, height));       
    cb.setPrototypeDisplayValue("XX");   
    harness.check(ui.getPreferredSize(cb), new Dimension(width, height));   
  }

}
TOP

Related Classes of gnu.testlet.javax.swing.plaf.basic.BasicComboBoxUI.getPreferredSize

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.