X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=utils%2FJalviewJSTest.java;fp=utils%2FJalviewJSTest.java;h=3b6ca2e42ca6b66288f2d784f41099f996e8279b;hb=3b8d1bf01af2c83cf767064078852fa5aa8f3394;hp=0000000000000000000000000000000000000000;hpb=f7b41ebc40bc96cd3ced4b22fc45c6f99ac00739;p=jalview.git diff --git a/utils/JalviewJSTest.java b/utils/JalviewJSTest.java new file mode 100644 index 0000000..3b6ca2e --- /dev/null +++ b/utils/JalviewJSTest.java @@ -0,0 +1,84 @@ +import java.awt.BorderLayout; +import java.awt.Container; +import java.awt.Dimension; +import java.awt.Font; +import java.awt.GridLayout; + +import javax.swing.JCheckBox; +import javax.swing.JFrame; +import javax.swing.JPanel; +import javax.swing.SwingConstants; +import javax.swing.border.TitledBorder; + +/** + * A class with a main method entry point for ad hoc tests of JalviewJS + * behaviour. The J2S transpiler should generate an html entry point for this + * class, allowing comparison between Java and Javascript execution. + */ +public class JalviewJSTest extends JPanel +{ + public static void main(String[] args) + { + new JalviewJSTest().doTest(); + } + + /** + * Put some content in a JFrame and show it + */ + void doTest() + { + JFrame main = new JFrame(); + main.setContentPane(getVisualPaneContent()); + main.pack(); + main.setVisible(true); + } + + /** + * Builds a cut-down 'Preferences Visual tab' for a minimal test of layout + * problems + */ + Container getVisualPaneContent() + { + JPanel panel = new JPanel(); + panel.setPreferredSize(new Dimension(400, 300)); + panel.setOpaque(true); + panel.setLayout(new BorderLayout()); + + JPanel firstColumn = new JPanel(); + firstColumn.setLayout(new GridLayout(6, 1)); + firstColumn.setBorder(new TitledBorder("column 1")); + + /* + * bug 21/08/18: + * - checkbox label and text extend outside the enclosing panel in JS + */ + JCheckBox cb1 = new JCheckBox(); + Font font = new Font("Verdana", Font.PLAIN, 11); + cb1.setFont(font); + cb1.setText("Maximise Window"); + cb1.setHorizontalTextPosition(SwingConstants.LEADING); + cb1.setHorizontalAlignment(SwingConstants.RIGHT); + + /* + * bug 21/08/18: + * - label should precede checkbox, but it doesn't + */ + JCheckBox cb2 = new JCheckBox("Open Overview"); + cb2.setFont(font); + cb2.setHorizontalTextPosition(SwingConstants.LEADING); + // uncommenting this line gives 'leading text', but + // also results in label and checkbox outside container + //cb2.setHorizontalAlignment(SwingConstants.RIGHT); + + firstColumn.add(cb1); + firstColumn.add(cb2); + firstColumn.setBounds(20, 20, 200, 200); + + JPanel theTab = new JPanel(); + theTab.setLayout(null); + theTab.add(firstColumn); + panel.add(theTab); + + return panel; + } +}