1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/*
* $Id$
* Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
/*
* originally contributed by
* Juergen Verwohlt: Juergen.Verwohlt@jCatalog.com,
* Rainer Steinkuhle: Rainer.Steinkuhle@jCatalog.com,
* Stanislav Gorkhover: Stanislav.Gorkhover@jCatalog.com
*/
package org.apache.fop.viewer;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class GoToPageDialog extends JDialog {
JPanel panel1 = new JPanel();
GridBagLayout gridBagLayout1 = new GridBagLayout();
JLabel pgNbLabel = new JLabel();
JTextField pgNbField = new JTextField();
JButton okButton = new JButton();
JButton cancelButton = new JButton();
int pageNumber = -1;
public GoToPageDialog(Frame frame, String title, boolean modal) {
super(frame, title, modal);
try {
jbInit();
pack();
} catch (Exception ex) {
//log.error("GoToPageDialog: Konstruktor: "
// + ex.getMessage(), ex);
}
}
public GoToPageDialog() {
this(null, "", false);
}
void jbInit() throws Exception {
panel1.setLayout(gridBagLayout1);
pgNbLabel.setText("Page number");
okButton.setText("Ok");
okButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(ActionEvent e) {
okButton_actionPerformed(e);
}
});
cancelButton.setText("Cancel");
cancelButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(ActionEvent e) {
cancelButton_actionPerformed(e);
}
});
panel1.setMinimumSize(new Dimension(250, 78));
getContentPane().add(panel1);
panel1.add(pgNbLabel,
new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0,
GridBagConstraints.WEST,
GridBagConstraints.NONE,
new Insets(10, 10, 10, 5), 0, 0));
panel1.add(pgNbField,
new GridBagConstraints(1, 0, 1, 1, 1.0, 0.0,
GridBagConstraints.WEST,
GridBagConstraints.BOTH,
new Insets(10, 5, 10, 10), 0, 0));
panel1.add(okButton,
new GridBagConstraints(0, 1, 1, 1, 0.0, 0.0,
GridBagConstraints.EAST,
GridBagConstraints.NONE,
new Insets(0, 0, 10, 5), 0, 0));
panel1.add(cancelButton,
new GridBagConstraints(1, 1, 1, 1, 0.0, 0.0,
GridBagConstraints.WEST,
GridBagConstraints.NONE,
new Insets(0, 10, 10, 10), 0, 0));
}
void okButton_actionPerformed(ActionEvent e) {
try {
pageNumber = Integer.parseInt(pgNbField.getText());
dispose();
} catch (Exception ex) {
pgNbField.setText("???");
}
}
void cancelButton_actionPerformed(ActionEvent e) {
pageNumber = -1;
dispose();
}
public int getPageNumber() {
return pageNumber;
}
}
|