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

Last change on this file since 12119 was 12119, checked in by kjdon, 18 years ago

Changed text handling to use Dictionary.get rather than Dictionary.setText or Dictionary.registerBoth etc. also removed mnemonics cos they suck for other languages

  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 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 JLabel title_label = new JLabel("<HTML><STRONG><FONT FACE={FONT} COLOR=Black SIZE=5>" + Dictionary.get(label_key) + "</FONT></STRONG></HTML>");
58
59 JPanel title_pane = new JPanel();
60 title_pane.setBorder(BorderFactory.createEmptyBorder(0,0,0,5));
61 title_pane.setLayout(new BorderLayout());
62 title_pane.add(title_label, BorderLayout.CENTER);
63 title_pane.add(new JSeparator(), BorderLayout.SOUTH);
64
65 GLIButton help_button = new GLIButton(Dictionary.get("CDM.HelpButton"), Dictionary.get("CDM.HelpButton_Tooltip"));
66 this.help_key_name = help_key;
67 help_button.setIcon(MenuBar.HELP_ICON);
68 help_button.addActionListener(new ActionListener()
69 {
70 public void actionPerformed(ActionEvent event) {
71 HelpFrame.setView(help_key_name);
72 }
73 });
74
75 setLayout(new BorderLayout());
76 add(title_pane, BorderLayout.CENTER);
77 add(help_button, BorderLayout.EAST);
78 }
79}
Note: See TracBrowser for help on using the repository browser.