JFrame f = new JFrame("QView Test");
CardLayout cm = new CardLayout();
Container cp = f.getContentPane();
cp.setLayout(cm);
Q q = new Q(4);
QView qv = new QView(q);
cp.add("0", qv);
q.setQText("To be or not to be, that is the question", true);
q.setAnsText(0, "Hello world", true);
q.setAnsText(1, "Goodbye cruel world", true);
q.setAnsText(2, "Settle it with a bare bodkin, princikins", true);
q.setAnsText(3, "42", true);
q.setAns(2, false);
q = new Q(4);
qv = new QView(q);
cp.add("1", qv);
q.setQText("Whether 'tis nobler in the mind to suffer the slings and arrows of outrageous fortune,", true);
q.setAnsText(0, "Hello world", true);
q.setAnsText(1, "Goodbye cruel world", true);
q.setAnsText(2, "Settle it with a bare bodkin, princikins", true);
q.setAnsText(3, "42", true);
q.setAns(3, false);
cm.first(cp);
f.setSize(600, 400);
f.setLocation(100, 100);
f.setVisible(true);
f.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent we) {
System.exit(0);
}
});
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
}
cm.next(cp);