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

Last change on this file since 21999 was 18370, checked in by kjdon, 15 years ago

committed code submitted by Amin Hedjazi for making the GLI right to left. I worked on this code on the rtl-gli branch, then merged the branch back to the trunk at revision 18368. The branch code was slightly different in a couple of places where it shouldn't have been. So don't use the branch code next time. Start a new branch.

  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 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 this.setComponentOrientation(Dictionary.getOrientation());
59
60 setUpGUI(label, results);
61 }
62
63 /** 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 */
64 public SimpleResultDialog(Dialog parent, String title, String label, String results) {
65
66 super(parent, title, true);
67 this.self = this;
68
69 setUpGUI(label, results);
70 }
71
72 private void setUpGUI(String label, String results) {
73 setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
74 setSize(size);
75
76 JPanel content_pane = (JPanel) getContentPane();
77 content_pane.setComponentOrientation(Dictionary.getOrientation());
78 JLabel result_label = new JLabel(label);
79 result_label.setComponentOrientation(Dictionary.getOrientation());
80
81 JPanel button_pane = new JPanel();
82 button_pane.setComponentOrientation(Dictionary.getOrientation());
83 JButton close_button = new GLIButton(Dictionary.get("General.Close"));
84 close_button.addActionListener(new CloseButtonListener());
85
86 JPanel output_pane = new JPanel();
87 output_pane.setComponentOrientation(Dictionary.getOrientation());
88 JLabel output_label = new JLabel(Dictionary.get("General.Review_Output"));
89 output_label.setComponentOrientation(Dictionary.getOrientation());
90
91 JTextArea output_textarea = new JTextArea(results);
92 output_textarea.setComponentOrientation(Dictionary.getOrientation());
93 output_textarea.setCaretPosition(0);
94 output_textarea.setEditable(false);
95 output_textarea.setLineWrap(true);
96 output_textarea.setWrapStyleWord(true);
97
98 button_pane.setLayout(new BorderLayout());
99 button_pane.add(close_button, BorderLayout.LINE_END);
100
101 output_pane.setBorder(BorderFactory.createEmptyBorder(5,0,5,0));
102 output_pane.setLayout(new BorderLayout());
103 output_pane.add(output_label, BorderLayout.NORTH);
104 output_pane.add(new JScrollPane(output_textarea), BorderLayout.CENTER);
105
106 content_pane.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
107 content_pane.setLayout(new BorderLayout());
108 content_pane.add(result_label, BorderLayout.NORTH);
109 content_pane.add(output_pane, BorderLayout.CENTER);
110 content_pane.add(button_pane, BorderLayout.SOUTH);
111
112 // Position
113 Rectangle frame_bounds = Gatherer.g_man.getBounds();
114 setLocation(frame_bounds.x + (frame_bounds.width - size.width) / 2, frame_bounds.y + (frame_bounds.height - size.height) / 2);
115 //new SimpleResultDialog(Gatherer.g_man, title, label, results);
116 }
117
118
119 private class CloseButtonListener
120 implements ActionListener {
121 public void actionPerformed(ActionEvent event) {
122 self.setVisible(false);
123 }
124 }
125}
Note: See TracBrowser for help on using the repository browser.