source: gli/trunk/src/org/greenstone/gatherer/gui/DesignPaneHeader.java@ 18370

Last change on this file since 18370 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: 2.8 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: Katherine Don, Greenstone Digital Library, University of Waikato
11 *
12 * <BR><BR>
13 *
14 * Copyright (C) 2006 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 */
37
38package org.greenstone.gatherer.gui;
39
40import java.awt.*;
41import java.awt.event.*;
42import javax.swing.*;
43
44import org.greenstone.gatherer.Dictionary;
45import org.greenstone.gatherer.gui.HelpFrame;
46import org.greenstone.gatherer.gui.MenuBar;
47
48/** creates a header pane containing the title of the screen, and a help button which links to the appropriate help page */
49public class DesignPaneHeader
50 extends JPanel
51{
52 protected String help_key_name;
53
54
55 public DesignPaneHeader(String label_key, String help_key)
56 {
57 this.setComponentOrientation(Dictionary.getOrientation());
58 JLabel title_label = new JLabel("<HTML><STRONG><FONT FACE={FONT} COLOR=Black SIZE=5>" + Dictionary.get(label_key) + "</FONT></STRONG></HTML>");
59 title_label.setComponentOrientation(Dictionary.getOrientation());
60
61 JPanel title_pane = new JPanel();
62 title_pane.setBorder(BorderFactory.createEmptyBorder(0,0,0,5));
63 title_pane.setLayout(new BorderLayout());
64 title_pane.add(title_label, BorderLayout.CENTER);
65 title_pane.add(new JSeparator(), BorderLayout.SOUTH);
66 title_pane.setComponentOrientation(Dictionary.getOrientation());
67
68 GLIButton help_button = new GLIButton(Dictionary.get("CDM.HelpButton"), Dictionary.get("CDM.HelpButton_Tooltip"));
69 this.help_key_name = help_key;
70 help_button.setIcon(MenuBar.HELP_ICON);
71 help_button.addActionListener(new ActionListener()
72 {
73 public void actionPerformed(ActionEvent event) {
74 HelpFrame.setView(help_key_name);
75 }
76 });
77
78 setLayout(new BorderLayout());
79 add(title_pane, BorderLayout.CENTER);
80 add(help_button, BorderLayout.LINE_END);
81 }
82}
Note: See TracBrowser for help on using the repository browser.