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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* $Id$ */
package org.apache.fop.render.awt.viewer;
import java.awt.Dimension;
import java.awt.Frame;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
/**
* Go to Page Dialog.
* Originally contributed by:
* Juergen Verwohlt: Juergen.Verwohlt@jCatalog.com,
* Rainer Steinkuhle: Rainer.Steinkuhle@jCatalog.com,
* Stanislav Gorkhover: Stanislav.Gorkhover@jCatalog.com
*/
public class GoToPageDialog extends JDialog {
private JTextField pageNumberField;
private int pageNumber = -1;
/**
* Creates modal dialog with a given title, attached to a given frame.
* @param frame Frame to attach to
* @param title dialog title
* @param translator translator for localization
*/
public GoToPageDialog(Frame frame, String title, Translator translator) {
super(frame, title, true);
jbInit(translator);
pack();
}
private void jbInit(Translator translator) {
JPanel panel1 = new JPanel();
GridBagLayout gridBagLayout1 = new GridBagLayout();
JLabel pgNbLabel = new JLabel();
pageNumberField = new JTextField();
JButton okButton = new JButton();
JButton cancelButton = new JButton();
panel1.setLayout(gridBagLayout1);
pgNbLabel.setText(translator.getString("Label.Page.number"));
okButton.setText(translator.getString("Button.Ok"));
okButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
okButtonActionPerformed(e);
}
});
cancelButton.setText(translator.getString("Button.Cancel"));
cancelButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(ActionEvent e) {
cancelButtonActionPerformed(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(pageNumberField,
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));
}
private void okButtonActionPerformed(ActionEvent e) {
try {
pageNumber = Integer.parseInt(pageNumberField.getText());
dispose();
} catch (NumberFormatException nfe) {
pageNumberField.setText("???");
}
}
private void cancelButtonActionPerformed(ActionEvent e) {
pageNumber = -1;
dispose();
}
/**
* Returns page number, entered by user.
* @return the page number
*/
public int getPageNumber() {
return pageNumber;
}
}
|