source: gli/trunk/src/org/greenstone/gatherer/gui/SimpleResultDialog.java@ 17131

Last change on this file since 17131 was 17131, checked in by kjdon, 16 years ago

indented to 2 spaces. added a new constructor which takes a dialog as an argument - if calling this from a dialog, use the new constructor to block the calling dialog

  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1/**
2 *#########################################################################
3 *
4 * A component of the Gatherer application, part of the Greenstone digital
5 * library suite from the New Zealand Digital Library Project at the
6 * University of Waikato, New Zealand.
7 *
8 * <BR><BR>
9 *
10 * Author: John Thompson, Greenstone Digital Library, University of Waikato
11 *
12 * <BR><BR>
13 *
14 * Copyright (C) 1999 New Zealand Digital Library Project
15 *
16 * <BR><BR>
17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * <BR><BR>
24 *
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
29 *
30 * <BR><BR>
31 *
32 * You should have received a copy of the GNU General Public License
33 * along with this program; if not, write to the Free Software
34 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
35 *########################################################################
36 */
37package org.greenstone.gatherer.gui;
38
39import java.awt.*;
40import java.awt.event.*;
41import java.io.*;
42import java.util.ArrayList;
43import javax.swing.*;
44import javax.swing.event.*;
45
46import org.greenstone.gatherer.Gatherer;
47import org.greenstone.gatherer.Dictionary;
48
49public class SimpleResultDialog
50 extends ModalDialog {
51
52 private Dimension size = new Dimension(600,300);
53 private SimpleResultDialog self;
54
55 public SimpleResultDialog(String title, String label, String results) {
56 super(Gatherer.g_man, title, true);
57 this.self = this;
58
59 setUpGUI(label, results);
60 }
61
62 /** If you are calling this from another dialog, and you want that dialog blocked while this is open, need to use this method, passing in the calling dialog as the parent */
63 public SimpleResultDialog(Dialog parent, String title, String label, String results) {
64
65 super(parent, title, true);
66 this.self = this;
67
68 setUpGUI(label, results);
69 }
70
71 private void setUpGUI(String label, String results) {
72 setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
73 setSize(size);
74
75 JPanel content_pane = (JPanel) getContentPane();
76 JLabel result_label = new JLabel(label);
77
78 JPanel button_pane = new JPanel();
79 JButton close_button = new GLIButton(Dictionary.get("General.Close"));
80 close_button.addActionListener(new CloseButtonListener());
81
82 JPanel output_pane = new JPanel();
83 JLabel output_label = new JLabel(Dictionary.get("General.Review_Output"));
84
85 JTextArea output_textarea = new JTextArea(results);
86 output_textarea.setCaretPosition(0);
87 output_textarea.setEditable(false);
88 output_textarea.setLineWrap(true);
89 output_textarea.setWrapStyleWord(true);
90
91 button_pane.setLayout(new BorderLayout());
92 button_pane.add(close_button, BorderLayout.EAST);
93
94 output_pane.setBorder(BorderFactory.createEmptyBorder(5,0,5,0));
95 output_pane.setLayout(new BorderLayout());
96 output_pane.add(output_label, BorderLayout.NORTH);
97 output_pane.add(new JScrollPane(output_textarea), BorderLayout.CENTER);
98
99 content_pane.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
100 content_pane.setLayout(new BorderLayout());
101 content_pane.add(result_label, BorderLayout.NORTH);
102 content_pane.add(output_pane, BorderLayout.CENTER);
103 content_pane.add(button_pane, BorderLayout.SOUTH);
104
105 // Position
106 Rectangle frame_bounds = Gatherer.g_man.getBounds();
107 setLocation(frame_bounds.x + (frame_bounds.width - size.width) / 2, frame_bounds.y + (frame_bounds.height - size.height) / 2);
108 //new SimpleResultDialog(Gatherer.g_man, title, label, results);
109 }
110
111
112 private class CloseButtonListener
113 implements ActionListener {
114 public void actionPerformed(ActionEvent event) {
115 self.setVisible(false);
116 }
117 }
118}
Note: See TracBrowser for help on using the repository browser.