ICU-3501 Make a larger split between the GUI and data structure, and separate many of the GUI classes into separate files.

X-SVN-Rev: 15949
This commit is contained in:
George Rhoten 2004-06-29 18:45:44 +00:00
parent bba9b51a9d
commit a0bd433a36
46 changed files with 5210 additions and 5314 deletions

18
.gitattributes vendored
View file

@ -124,15 +124,15 @@ tools/unicodetools/com/ibm/rbm/docs/images/template_line.gif -text
tools/unicodetools/com/ibm/rbm/docs/images/template_ll.gif -text
tools/unicodetools/com/ibm/rbm/docs/images/template_u.gif -text
tools/unicodetools/com/ibm/rbm/docs/images/template_ul.gif -text
tools/unicodetools/com/ibm/rbm/images/TitleLogo_transparent.gif -text
tools/unicodetools/com/ibm/rbm/images/tree_icon_bundle.gif -text
tools/unicodetools/com/ibm/rbm/images/tree_icon_country.gif -text
tools/unicodetools/com/ibm/rbm/images/tree_icon_file.gif -text
tools/unicodetools/com/ibm/rbm/images/tree_icon_group.gif -text
tools/unicodetools/com/ibm/rbm/images/tree_icon_item.gif -text
tools/unicodetools/com/ibm/rbm/images/tree_icon_language.gif -text
tools/unicodetools/com/ibm/rbm/images/tree_icon_project.gif -text
tools/unicodetools/com/ibm/rbm/images/tree_icon_variant.gif -text
tools/unicodetools/com/ibm/rbm/gui/images/TitleLogo_transparent.gif -text
tools/unicodetools/com/ibm/rbm/gui/images/tree_icon_bundle.gif -text
tools/unicodetools/com/ibm/rbm/gui/images/tree_icon_country.gif -text
tools/unicodetools/com/ibm/rbm/gui/images/tree_icon_file.gif -text
tools/unicodetools/com/ibm/rbm/gui/images/tree_icon_group.gif -text
tools/unicodetools/com/ibm/rbm/gui/images/tree_icon_item.gif -text
tools/unicodetools/com/ibm/rbm/gui/images/tree_icon_language.gif -text
tools/unicodetools/com/ibm/rbm/gui/images/tree_icon_project.gif -text
tools/unicodetools/com/ibm/rbm/gui/images/tree_icon_variant.gif -text
# The following file types are stored in Git-LFS.
*.jar filter=lfs diff=lfs merge=lfs -text

View file

@ -12,6 +12,8 @@ import java.io.PrintStream;
import java.io.Writer;
import java.util.*;
import com.ibm.rbm.gui.RBManagerGUI;
/**
* A class representing the entire Bundle of Resources for a particular language, country, variant.
*
@ -265,7 +267,7 @@ public class Bundle {
* untranslated items.
*/
protected void addUntranslatedItem(BundleItem item) {
public void addUntranslatedItem(BundleItem item) {
if (item.getParentGroup().getParentBundle() != this) return;
// First check to see if it is all ready there
boolean found = false;

View file

@ -5,8 +5,8 @@
*****************************************************************************
*
* $Source: /xsrl/Nsvn/icu/unicodetools/com/ibm/rbm/BundleGroup.java,v $
* $Date: 2002/05/20 18:53:10 $
* $Revision: 1.1 $
* $Date: 2004/06/29 18:45:42 $
* $Revision: 1.2 $
*
*****************************************************************************
*/
@ -59,7 +59,7 @@ public class BundleGroup {
// This should be changed anywhere it is used
protected Vector getItemsAsVector() {
public Vector getItemsAsVector() {
Vector v = new Vector();
Iterator iter = items.iterator();
while (iter.hasNext()) {
@ -150,11 +150,11 @@ public class BundleGroup {
this.bundle = bundle;
}
protected void setComment(String comment) {
public void setComment(String comment) {
this.comment = comment;
}
protected void setName(String name) {
public void setName(String name) {
this.name = name;
}

View file

@ -5,8 +5,8 @@
*****************************************************************************
*
* $Source: /xsrl/Nsvn/icu/unicodetools/com/ibm/rbm/BundleItem.java,v $
* $Date: 2002/05/20 18:53:10 $
* $Revision: 1.1 $
* $Date: 2004/06/29 18:45:42 $
* $Revision: 1.2 $
*
*****************************************************************************
*/
@ -169,7 +169,7 @@ public class BundleItem {
* Given a hashtable of lookups, associates those lookups with this item.
*/
protected void setLookups(Hashtable lookups) {
public void setLookups(Hashtable lookups) {
this.lookups = lookups;
}

View file

@ -6,6 +6,8 @@
*/
package com.ibm.rbm;
import java.io.IOException;
import javax.swing.*;
/**
@ -15,13 +17,14 @@ import javax.swing.*;
* @author Jared Jackson
* @see com.ibm.rbm.RBManager
*/
public class RBExporter {
public abstract class RBExporter {
protected static JFileChooser chooser;
/**
* Basic empty constructor.
*/
public RBExporter() {
}
public abstract void export(RBManager rbm) throws IOException;
}

View file

@ -47,7 +47,7 @@ public class RBICUExporter extends RBExporter {
} // end if
}
protected void export(RBManager rbm) throws IOException {
public void export(RBManager rbm) throws IOException {
if (rbm == null) return;
// Open the Save Dialog
int ret_val = chooser.showSaveDialog(null);

View file

@ -8,6 +8,9 @@ package com.ibm.rbm;
import java.io.*;
import javax.swing.*;
import com.ibm.rbm.gui.RBManagerGUI;
import java.util.*;
import java.awt.*;
import java.awt.event.*;

View file

@ -5,8 +5,8 @@
*****************************************************************************
*
* $Source: /xsrl/Nsvn/icu/unicodetools/com/ibm/rbm/RBJavaExporter.java,v $
* $Date: 2002/05/20 18:53:10 $
* $Revision: 1.1 $
* $Date: 2004/06/29 18:45:42 $
* $Revision: 1.2 $
*
*****************************************************************************
*/
@ -54,7 +54,7 @@ public class RBJavaExporter extends RBExporter {
} // end if
}
protected void export(RBManager rbm) throws IOException {
public void export(RBManager rbm) throws IOException {
if (rbm == null) return;
// Open the additional Dialog
RBJavaExporterDialog parametersDialog = new RBJavaExporterDialog();

View file

@ -9,6 +9,9 @@ package com.ibm.rbm;
import java.io.*;
import javax.swing.filechooser.*;
import com.ibm.rbm.gui.RBManagerGUI;
import java.util.*;
import java.net.*;

View file

@ -11,6 +11,8 @@ import java.io.*;
import javax.swing.UIManager;
import javax.swing.JOptionPane;
import com.ibm.rbm.gui.RBManagerGUI;
/**
* A utility class to aid in the process of updating the Natural Language Support of Tempus Fugit.
* This class scans the directory containing NLS files and checks the various languages found there
@ -25,7 +27,7 @@ public class RBManager {
// *** DATA ***
private Vector allBundleKeys; // A Vector of Strings with all defined NLS properties
protected Vector bundles; // A Vector of NLSbundles, one for each language
private Vector bundles; // A Vector of NLSbundles, one for each language
private String currentUser; // The name of the person currently using the editor
private String baseClass; // The name of the base class of the active resource bundle
private File currentDirectory;
@ -845,7 +847,7 @@ public class RBManager {
return baseClass;
}
protected Vector getBundles() {
public Vector getBundles() {
return bundles;
}
@ -938,100 +940,3 @@ public class RBManager {
}
} // ListAllInstances
/*
* $History: RBManager.java $
*
* ***************** Version 18 *****************
* User: Jjared Date: 5/09/02 Time: 10:40a
* Updated in $/RBManager/Source/com/ibm/rbm
* Update from work on my laptop
*
* ***************** Version 17 *****************
* User: Jjared Date: 12/19/01 Time: 12:49p
* Updated in $/RBManager/Source/com/ibm/rbm
* Updated for version 0.5a. Includes new 'Project Tree View'
*
* ***************** Version 16 *****************
* User: Jjared Date: 11/20/01 Time: 9:36a
* Updated in $/RBManager/Source/com/ibm/rbm
* Updates for version 0.5a
*
* ***************** Version 15 *****************
* User: Jjared Date: 6/29/01 Time: 11:02a
* Updated in $/RBManager/Source/com/ibm/rbm
* This is the version with the time bomb set to go off on Decmber 15,
* 2001
*
* ***************** Version 14 *****************
* User: Jjared Date: 6/27/01 Time: 5:49p
* Updated in $/RBManager/Source/com/ibm/rbm
* This is an update prior to adding new code to place a 'time bomb' into
* the code in preparation for version 0.4a
*
* ***************** Version 13 *****************
* User: Jjared Date: 3/20/01 Time: 11:23a
* Updated in $/RBManager/Source/com/ibm/rbm
*
* ***************** Version 12 *****************
* User: Jjared Date: 2/13/01 Time: 9:59a
* Updated in $/RBManager/Source/com/ibm/rbm
* Almost there ... 0.3a
*
* ***************** Version 11 *****************
* User: Jjared Date: 2/07/01 Time: 2:12p
* Updated in $/RBManager/Source/com/ibm/rbm
* Almost version 0.3a - Will do a final check to make sure everything
* works
*
* ***************** Version 10 *****************
* User: Jjared Date: 2/06/01 Time: 1:34p
* Updated in $/RBManager/Source/com/ibm/rbm
*
* ***************** Version 9 *****************
* User: Jjared Date: 2/05/01 Time: 1:41p
* Updated in $/RBManager/Source/com/ibm/rbm
*
* ***************** Version 8 *****************
* User: Jjared Date: 1/26/01 Time: 11:38a
* Updated in $/RBManager/Source/com/ibm/rbm
* Visual components for import defined
*
* ***************** Version 7 *****************
* User: Jjared Date: 11/21/00 Time: 1:38p
* Updated in $/RBManager/Source/com/ibm/rbm
* checkin for time
*
* ***************** Version 6 *****************
* User: Jjared Date: 11/10/00 Time: 1:09p
* Updated in $/RBManager/Source/com/ibm/rbm
*
* ***************** Version 5 *****************
* User: Jjared Date: 11/08/00 Time: 9:02a
* Updated in $/RBManager/Source/com/ibm/rbm
* Preferences and about panel now functional
*
* ***************** Version 4 *****************
* User: Jjared Date: 10/26/00 Time: 4:20p
* Updated in $/RBManager/Source/com/ibm/rbm
*
* ***************** Version 3 *****************
* User: Jjared Date: 10/25/00 Time: 4:04p
* Updated in $/RBManager/Source/com/ibm/rbm
* Moved public data members to public method calls
*
* ***************** Version 1 *****************
* User: Jjared Date: 10/23/00 Time: 8:54a
* Created in $/Tempus Fugit/Development/Java/com/ibm/almaden/RBManager
* Initial inclussion in com.ibm.almaden
*
* ***************** Version 2 *****************
* User: Jjared Date: 10/10/00 Time: 4:14p
* Updated in $/Tempus Fugit/Development/Java/com/ibm/almaden/TempusFugit/Tools
*
* ***************** Version 1 *****************
* User: Jjared Date: 9/29/00 Time: 10:05a
* Created in $/Tempus Fugit/Development/Java/com/ibm/almaden/TempusFugit/Tools
* Initial version
*
*/

File diff suppressed because it is too large Load diff

View file

@ -5,8 +5,8 @@
*****************************************************************************
*
* $Source: /xsrl/Nsvn/icu/unicodetools/com/ibm/rbm/RBPropertiesExporter.java,v $
* $Date: 2002/05/20 18:53:09 $
* $Revision: 1.1 $
* $Date: 2004/06/29 18:45:43 $
* $Revision: 1.2 $
*
*****************************************************************************
*/
@ -47,7 +47,7 @@ public class RBPropertiesExporter extends RBExporter {
} // end if
}
protected void export(RBManager rbm) throws IOException {
public void export(RBManager rbm) throws IOException {
if (rbm == null) return;
// Open the Save Dialog
int ret_val = chooser.showSaveDialog(null);

View file

@ -8,6 +8,9 @@ package com.ibm.rbm;
import java.io.*;
import javax.swing.filechooser.*;
import com.ibm.rbm.gui.RBManagerGUI;
import java.util.*;
/**

View file

@ -16,6 +16,8 @@ import org.apache.xerces.dom.*;
import org.apache.xml.serialize.*;
import org.w3c.dom.*;
import com.ibm.rbm.gui.RBManagerGUI;
/**
* RBReporter is a fully functional application that runs separate from RBManager.
* The report produces statistically based reports on specified resource bundles,

View file

@ -131,7 +131,7 @@ public class RBTMXExporter extends RBExporter {
tu.appendChild(tuv);
}
protected void export(RBManager rbm) throws IOException {
public void export(RBManager rbm) throws IOException {
if (rbm == null) return;
// Open the Save Dialog
int ret_val = chooser.showSaveDialog(null);

View file

@ -15,6 +15,8 @@ import org.apache.xerces.dom.*;
import org.w3c.dom.*;
import org.xml.sax.*;
import com.ibm.rbm.gui.RBManagerGUI;
/**
* This is the super class for all importer plug-in classes. This class defines the methods

View file

@ -14,6 +14,8 @@ import java.text.MessageFormat;
import java.util.*;
import java.util.zip.ZipEntry;
import com.ibm.rbm.gui.RBManagerGUI;
/**
* A class not to be instantiated. Provides methods for translating items from a resource bundle. To use this class
* make sure you first call initBundle(). Once this is done, calling any of the getTranslation() methods will return

View file

@ -7,17 +7,17 @@ rem ****************************************************************************
cd ..\..\..\
echo compiling source code %1
javac -d . -classpath com/ibm/rbm/lib/xerces.jar -deprecation %1 com/ibm/rbm/*.java
javac -d . -classpath com/ibm/rbm/lib/xerces.jar -deprecation %1 com/ibm/rbm/*.java com/ibm/rbm/gui/*.java
if errorlevel 1 goto error
echo creating jar file
erase com\ibm\rbm\RBManager.jar
jar cfm com/ibm/rbm/RBManager.jar com/ibm/rbm/manifest.stub com/ibm/rbm/*.class com/ibm/rbm/images/*.gif com/ibm/rbm/resources/RBManager*.properties
jar cfm com/ibm/rbm/RBManager.jar com/ibm/rbm/manifest.stub com/ibm/rbm/*.class com/ibm/rbm/gui/*.class com/ibm/rbm/gui/images/*.gif com/ibm/rbm/resources/RBManager*.properties
if errorlevel 1 goto error
echo cleaning up class files
cd com\ibm\rbm
erase *.class
erase *.class gui\*.class
goto end
:error

View file

@ -1,8 +1,8 @@
@rem *****************************************************************************
@rem * Copyright (C) 2000-2002, International Business Machines Corporation and *
@rem * Copyright (C) 2000-2004, International Business Machines Corporation and *
@rem * others. All Rights Reserved. *
@rem *****************************************************************************
mkdir docs\api
@set DOC_TYPE=-private
javadoc -d docs/api -classpath lib/xerces.jar -sourcepath ../../../ -windowTitle "RBManager" -bottom "Copyright IBM 2000-2002" %DOC_TYPE% com.ibm.rbm
javadoc -d docs/api -classpath lib/xerces.jar -sourcepath ../../../ -windowTitle "RBManager" -bottom "Copyright IBM 2000-2004" %DOC_TYPE% com.ibm.rbm
@if errorlevel 1 pause

View file

@ -0,0 +1,75 @@
/*
*****************************************************************************
* Copyright (C) 2000-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************
*/
package com.ibm.rbm.gui;
import com.ibm.rbm.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
/** A dialog displaying information about this application */
class AboutDialog {
public static JDialog dialog = null;
public static void showDialog(Frame parent) {
if (dialog == null) {
dialog = new JDialog(parent, Resources.getTranslation("dialog_title_about_rbmanager"), false);
initComponents();
}
dialog.setVisible(true);
}
private static void initComponents() {
dialog.getContentPane().setLayout(new BorderLayout());
JLabel logoLabel = null;
JLabel titleLabel = new JLabel(Resources.getTranslation("rbmanager"));
JLabel versionLabel = new JLabel(Resources.getTranslation("version", Package.getPackage("com.ibm.rbm").getImplementationVersion()));
JLabel copyrightLabel = new JLabel(Resources.getTranslation("copyright"));
JLabel contactLabel = new JLabel(Resources.getTranslation("rbmanager_contact"));
JPanel panel = new JPanel();
Box box = new Box(BoxLayout.Y_AXIS);
try {
Class thisClass = Class.forName("com.ibm.rbm.gui.AboutDialog");
logoLabel = new JLabel(new ImageIcon(thisClass.getResource("images/" +
Resources.getTranslation("logo_filename"))));
} catch (ClassNotFoundException e) {
RBManagerGUI.debugMsg(e.toString());
}
box.add(titleLabel);
box.add(versionLabel);
box.add(Box.createVerticalStrut(10));
box.add(copyrightLabel);
box.add(Box.createVerticalStrut(5));
box.add(contactLabel);
panel.add(box);
dialog.getContentPane().add(logoLabel, BorderLayout.WEST);
dialog.getContentPane().add(panel, BorderLayout.CENTER);
dialog.addMouseListener(new MouseListener() {
public void mousePressed(MouseEvent ev) { }
public void mouseReleased(MouseEvent ev) {
hideDialog();
}
public void mouseEntered(MouseEvent ev) { }
public void mouseExited(MouseEvent ev) { }
public void mouseClicked(MouseEvent ev) { }
});
//dialog.validate();
dialog.pack();
dialog.setLocation(new Point(50,50));
//dialog.setResizable(false);
}
private static void hideDialog() {
dialog.setVisible(false);
}
}

View file

@ -0,0 +1,144 @@
/*
*****************************************************************************
* Copyright (C) 2000-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************
*/
package com.ibm.rbm.gui;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import com.ibm.rbm.*;
/**
* A dialog which allows the user to create a new Bundle Group
*/
class BundleGroupCreationDialog extends JDialog {
RBManager rbm;
// Helper data
int left_col_width = 125;
int right_col_width = 275;
int row_height = 25;
Dimension leftDim = new Dimension(left_col_width, row_height);
Dimension rightDim = new Dimension(right_col_width, row_height);
// Components
Box mainBox = new Box(BoxLayout.Y_AXIS);
Box box1 = new Box(BoxLayout.X_AXIS);
Box box2 = new Box(BoxLayout.X_AXIS);
Box box3 = new Box(BoxLayout.X_AXIS);
JTextArea instructionsArea = new JTextArea("");
JLabel nameLabel = new JLabel(Resources.getTranslation("dialog_group"));
JLabel commentLabel = new JLabel(Resources.getTranslation("dialog_group_comment"));
JTextField nameField = new JTextField("");
JTextField commentField = new JTextField("");
JButton createButton = new JButton(Resources.getTranslation("button_create"));
JButton cancelButton = new JButton(Resources.getTranslation("button_cancel"));
public BundleGroupCreationDialog(RBManager rbm, JFrame frame, String title, boolean modal) {
super(frame, title, modal);
this.rbm = rbm;
initComponents();
enableEvents(AWTEvent.KEY_EVENT_MASK);
}
boolean createGroup() {
if (rbm == null) return false;
return rbm.createGroup(nameField.getText().trim(), commentField.getText().trim());
}
protected void processKeyEvent(KeyEvent ev) {
if (ev.getKeyCode() == KeyEvent.VK_ENTER) {
boolean success = createGroup();
if (!success) {
String alert = Resources.getTranslation("error_create_group") + " " +
Resources.getTranslation("error_try_again_group");
JOptionPane.showMessageDialog(this, alert, Resources.getTranslation("error"), JOptionPane.ERROR_MESSAGE);
} else {
setVisible(false);
dispose();
}
} else if (ev.getKeyCode() == KeyEvent.VK_CANCEL) {
closeWindow();
}
}
public void initComponents(){
// Error check
if (rbm == null) {
String alert = Resources.getTranslation("error_no_bundle_for_group");
JOptionPane.showMessageDialog(this, alert, Resources.getTranslation("error"), JOptionPane.ERROR_MESSAGE);
closeWindow();
return;
}
// Initialize values
// Set up the components
nameLabel.setPreferredSize(leftDim);
nameField.setColumns(30);
commentLabel.setPreferredSize(leftDim);
commentField.setColumns(30);
box1.add(nameLabel); box1.add(nameField);
box2.add(commentLabel); box2.add(commentField);
box3.add(createButton);
box3.add(Box.createHorizontalStrut(5));
box3.add(cancelButton);
instructionsArea.setBorder(BorderFactory.createEtchedBorder());
// Add the appropriate listeners
cancelButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
JDialog dialog = (JDialog)((JButton)ev.getSource()).getParent().getParent().getParent().getParent().getParent();
dialog.setVisible(false);
dialog.dispose();
}
});
createButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
BundleGroupCreationDialog dialog =
(BundleGroupCreationDialog)((JButton)ev.getSource()).getParent().getParent().getParent().getParent().getParent();
boolean success = dialog.createGroup();
if (!success) {
String alert = Resources.getTranslation("error_create_group") + " " +
Resources.getTranslation("error_try_again_group");
JOptionPane.showMessageDialog(dialog, alert, Resources.getTranslation("error"), JOptionPane.ERROR_MESSAGE);
} else {
dialog.setVisible(false);
dialog.dispose();
}
}
});
// Complete the initialization of the frame
setLocation(new java.awt.Point(50, 50));
mainBox.removeAll();
mainBox.add(box1);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(box2);
getContentPane().setLayout(new BorderLayout());
getContentPane().removeAll();
//getContentPane().add(instructionsArea, BorderLayout.NORTH);
getContentPane().add(mainBox, BorderLayout.CENTER);
getContentPane().add(box3, BorderLayout.SOUTH);
validateTree();
pack();
setVisible(true);
//setResizable(false);
}
void closeWindow() {
setVisible(false);
dispose();
}
}

View file

@ -0,0 +1,145 @@
/*
*****************************************************************************
* Copyright (C) 2000-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************
*/
package com.ibm.rbm.gui;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import com.ibm.rbm.*;
/**
* A dialog which allows the user to create a new Bundle Group
*/
class BundleGroupEditDialog extends JDialog {
BundleGroup group;
// Helper data
int left_col_width = 125;
int right_col_width = 275;
int row_height = 25;
Dimension leftDim = new Dimension(left_col_width, row_height);
Dimension rightDim = new Dimension(right_col_width, row_height);
// Components
Box mainBox = new Box(BoxLayout.Y_AXIS);
Box box1 = new Box(BoxLayout.X_AXIS);
Box box2 = new Box(BoxLayout.X_AXIS);
Box box3 = new Box(BoxLayout.X_AXIS);
JLabel nameLabel = new JLabel(Resources.getTranslation("dialog_group"));
JLabel commentLabel = new JLabel(Resources.getTranslation("dialog_group_comment"));
JTextField nameField = new JTextField("");
JTextField commentField = new JTextField("");
JButton editButton = new JButton(Resources.getTranslation("button_edit"));
JButton cancelButton = new JButton(Resources.getTranslation("button_cancel"));
public BundleGroupEditDialog(BundleGroup group, JFrame frame, String title, boolean modal) {
super(frame, title, modal);
this.group = group;
initComponents();
enableEvents(AWTEvent.KEY_EVENT_MASK);
}
protected void processKeyEvent(KeyEvent ev) {
if (ev.getKeyCode() == KeyEvent.VK_ENTER) {
boolean success = editGroup();
if (!success) {
String alert = Resources.getTranslation("error_modify_group");
JOptionPane.showMessageDialog(this, alert, Resources.getTranslation("error_internal"),
JOptionPane.ERROR_MESSAGE);
} else {
setVisible(false);
dispose();
}
} else if (ev.getKeyCode() == KeyEvent.VK_CANCEL) {
closeWindow();
}
}
boolean editGroup() {
if (group == null) return false;
group.setName(nameField.getText().trim());
group.setComment(commentField.getText().trim());
return true;
}
public void initComponents(){
// Error check
if (group == null) {
String alert = Resources.getTranslation("error_modify_group");
JOptionPane.showMessageDialog(this, alert, Resources.getTranslation("error_internal"), JOptionPane.ERROR_MESSAGE);
closeWindow();
return;
}
// Initialize values
// Set up the components
nameLabel.setPreferredSize(leftDim);
nameField.setColumns(30);
commentLabel.setPreferredSize(leftDim);
commentField.setColumns(30);
nameField.setText(group.getName());
commentField.setText(group.getComment());
box1.add(nameLabel); box1.add(nameField);
box2.add(commentLabel); box2.add(commentField);
box3.add(editButton);
box3.add(Box.createHorizontalStrut(5));
box3.add(cancelButton);
// Add the appropriate listeners
cancelButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
JDialog dialog = (JDialog)((JButton)ev.getSource()).getParent().getParent().getParent().getParent().getParent();
dialog.setVisible(false);
dialog.dispose();
}
});
editButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
BundleGroupEditDialog dialog =
(BundleGroupEditDialog)((JButton)ev.getSource()).getParent().getParent().getParent().getParent().getParent();
boolean success = dialog.editGroup();
if (!success) {
String alert = Resources.getTranslation("error_modify_group");
JOptionPane.showMessageDialog(dialog, alert, Resources.getTranslation("error_internal"),
JOptionPane.ERROR_MESSAGE);
} else {
dialog.setVisible(false);
dialog.dispose();
}
}
});
// Complete the initialization of the frame
setLocation(new java.awt.Point(50, 50));
mainBox.removeAll();
mainBox.add(box1);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(box2);
getContentPane().setLayout(new BorderLayout());
getContentPane().removeAll();
getContentPane().add(mainBox, BorderLayout.CENTER);
getContentPane().add(box3, BorderLayout.SOUTH);
validateTree();
pack();
setVisible(true);
//setResizable(false);
}
void closeWindow() {
setVisible(false);
dispose();
}
}

View file

@ -0,0 +1,395 @@
/*
*****************************************************************************
* Copyright (C) 2000-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************
*/
package com.ibm.rbm.gui;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
import com.ibm.rbm.*;
/**
* A dialog which allows the user to create a new Bundle Item
*/
class BundleItemCreationDialog extends JDialog {
RBManager rbm;
String groupName;
BundleItem item;
boolean firstInit = true;
// Helper data
int left_col_width = 125;
int right_col_width = 275;
int row_height = 25;
Dimension leftDim = new Dimension(left_col_width, row_height);
Dimension rightDim = new Dimension(right_col_width, row_height);
// Components
Box mainBox = new Box(BoxLayout.Y_AXIS);
Box box1 = new Box(BoxLayout.X_AXIS);
Box box2 = new Box(BoxLayout.X_AXIS);
Box box3 = new Box(BoxLayout.X_AXIS);
Box box4 = new Box(BoxLayout.X_AXIS);
Box box5 = new Box(BoxLayout.X_AXIS);
Box box6 = new Box(BoxLayout.X_AXIS);
JLabel instructionsLabel = new JLabel("");
JLabel groupLabel = new JLabel(Resources.getTranslation("dialog_group"));
JLabel nameLabel = new JLabel(Resources.getTranslation("dialog_key"));
JLabel transLabel = new JLabel(Resources.getTranslation("dialog_translation"));
JLabel commentLabel = new JLabel(Resources.getTranslation("dialog_comment"));
JLabel lookupLabel = new JLabel(Resources.getTranslation("dialog_lookups"));
JComboBox groupComboBox = new JComboBox();
JTextField nameField = new JTextField("");
JTextField transField = new JTextField("");
JTextField commentField = new JTextField("");
JTextField lookupFields[] = null;
JLabel noLookupLabel = null;
Box lookupBox = null;
Box lookupBoxes[] = null;
JLabel lookupLabels[] = null;
JButton createButton = new JButton(Resources.getTranslation("button_create"));
JButton createMoreButton = new JButton(Resources.getTranslation("button_create_more"));
JButton cancelButton = new JButton(Resources.getTranslation("button_cancel"));
Hashtable lookups = new Hashtable();
public BundleItemCreationDialog(RBManager rbm, JFrame frame, String title, boolean modal) {
super(frame, title, modal);
this.rbm = rbm;
groupName = null;
item = null;
initComponents();
}
public BundleItemCreationDialog(String groupName, RBManager rbm, JFrame frame, String title, boolean modal) {
super(frame, title, modal);
this.rbm = rbm;
this.groupName = groupName;
item = null;
initComponents();
}
public BundleItemCreationDialog(BundleItem item, RBManager rbm, JFrame frame, String title, boolean modal) {
super(frame, title, modal);
this.item = item;
this.rbm = rbm;
groupName = item.getParentGroup().getName();
initComponents();
}
boolean createItem() {
if (rbm == null) return false;
Hashtable lookupHash = new Hashtable();
if (lookupBoxes != null) {
for (int i=0; i < lookupBoxes.length; i++) {
String nameText = lookupLabels[i].getText().trim();
String name = nameText.substring(nameText.indexOf("{")+1,nameText.indexOf("}"));
String value = lookupFields[i].getText().trim();
lookupHash.put(name,value);
}
}
return rbm.createItem(nameField.getText().trim(), transField.getText().trim(),
((BundleGroup)groupComboBox.getSelectedItem()).getName(),
commentField.getText().trim(), lookupHash);
}
boolean editItem() {
if (item == null) return false;
Hashtable lookupHash = new Hashtable();
if (lookupBoxes != null) {
for (int i=0; i < lookupBoxes.length; i++) {
String nameText = lookupLabels[i].getText().trim();
String name = nameText.substring(nameText.indexOf("{")+1,nameText.indexOf("}"));
String value = lookupFields[i].getText().trim();
lookupHash.put(name,value);
}
}
return rbm.editItem(item, nameField.getText().trim(),
transField.getText().trim(), ((BundleGroup)groupComboBox.getSelectedItem()).getName(),
commentField.getText().trim(), lookupHash);
}
private void clearComponents() {
nameField.setText("");
transField.setText("");
commentField.setText("");
initComponents();
}
protected void processKeyEvent(KeyEvent ev) {
if (ev.getKeyCode() == KeyEvent.VK_ENTER && ev.getID() == KeyEvent.KEY_RELEASED) {
if (transField.hasFocus()) {
// If we are in the translation field, then enter should create a new line character, not exit the dialog
int caretPos = transField.getCaretPosition();
String oldText = transField.getText();
transField.setText(oldText.substring(0,caretPos) + "\n" + oldText.substring(caretPos,oldText.length()));
transField.setCaretPosition(caretPos+1);
validate();
setSize(getPreferredSize());
return;
}
BundleItemCreationDialog dialog = this;
boolean success = false;
if (dialog.item == null) success = dialog.createItem();
else success = dialog.editItem();
if (!success) {
String alert = (item == null ? Resources.getTranslation("error_create_item") :
Resources.getTranslation("error_modify_item"));
alert += " " + Resources.getTranslation("error_try_again_item");
JOptionPane.showMessageDialog(dialog, alert, Resources.getTranslation("error"),
JOptionPane.ERROR_MESSAGE);
} else {
((RBManagerGUI)dialog.getParent()).updateDisplayPanels();
((RBManagerGUI)dialog.getParent()).invalidate();
//((RBManagerGUI)dialog.getParent()).validateMyTree();
dialog.setVisible(false);
dialog.dispose();
}
} else if (ev.getKeyCode() == KeyEvent.VK_ESCAPE) {
closeWindow();
}
}
public void initComponents(){
enableEvents(AWTEvent.KEY_EVENT_MASK);
// Error check
if (rbm == null || rbm.getBundles() == null) {
String alert = Resources.getTranslation("error_no_bundle_for_item");
JOptionPane.showMessageDialog(this, alert, Resources.getTranslation("error"), JOptionPane.ERROR_MESSAGE);
closeWindow();
return;
}
// Initialize values
Bundle mainBundle = (Bundle)rbm.getBundles().firstElement();
if (firstInit) {
groupComboBox = new JComboBox(mainBundle.getGroupsAsVector());
if (groupName != null) {
for (int i = 0; i < groupComboBox.getItemCount(); i++) {
BundleGroup bg = (BundleGroup)groupComboBox.getItemAt(i);
if (bg.getName().equals(groupName)) {
groupComboBox.setSelectedIndex(i);
break;
}
}
}
}
if (firstInit && item != null) {
// We are editing, not creating an item
createButton.setText(Resources.getTranslation("button_edit"));
createMoreButton.setText(Resources.getTranslation("button_edit_more"));
if (item.getKey() != null) nameField.setText(item.getKey());
if (item.getComment() != null) commentField.setText(item.getComment());
if (item.getTranslation() != null) transField.setText(item.getTranslation());
if (item.getLookups() != null) lookups = item.getLookups();
}
String currentTrans = transField.getText();
// ** LOOKUPS **
// Update the lookups if necessary
if (lookupBoxes != null) {
for (int i=0; i < lookupBoxes.length; i++) {
String nameText = lookupLabels[i].getText().trim();
String name = nameText.substring(nameText.indexOf("{")+1,nameText.indexOf("}"));
String value = lookupFields[i].getText().trim();
lookups.put(name,value);
}
}
// Remove old lookups if necessary
Enumeration enum = lookups.keys();
while (enum.hasMoreElements()) {
String name = (String)enum.nextElement();
if (currentTrans.indexOf("{" + name + "}") < 0) {
lookups.remove(name);
}
}
// Add new lookups if neccesary
if (currentTrans != null && currentTrans.indexOf("{") >= 0) {
while (currentTrans.indexOf("{") >= 0) {
currentTrans = currentTrans.substring(currentTrans.indexOf("{")+1,currentTrans.length());
String name = currentTrans.substring(0,currentTrans.indexOf("}"));
if (!lookups.containsKey(name)) {
lookups.put(name,"");
}
}
}
// Remove components
box5.removeAll();
// Now create the visual components for the lookups
if (lookups.size() > 0) {
noLookupLabel = null;
lookupBox = new Box(BoxLayout.Y_AXIS);
lookupBoxes = new Box[lookups.size()];
lookupFields = new JTextField[lookups.size()];
lookupLabels = new JLabel[lookups.size()];
int count = 0;
enum = lookups.keys();
while (enum.hasMoreElements()) {
String name = (String)enum.nextElement();
String value = (String)lookups.get(name);
RBManagerGUI.debugMsg("Lookup: " + name + " -> " + value);
RBManagerGUI.debugMsg(lookups.toString());
lookupBoxes[count] = new Box(BoxLayout.X_AXIS);
lookupFields[count] = new JTextField((value == null ? "" : value));
lookupLabels[count] = new JLabel("{" + name + "}");
lookupBoxes[count].add(Box.createHorizontalGlue());
lookupBoxes[count].add(lookupLabels[count]);
lookupBoxes[count].add(Box.createHorizontalStrut(5));
lookupBoxes[count].add(lookupFields[count]);
lookupBox.add(lookupBoxes[count]);
count++;
}
} else {
lookupBox = null;
lookupBoxes = null;
lookupFields = null;
lookupLabels = null;
noLookupLabel = new JLabel(Resources.getTranslation("none"));
}
// Set up the components
if (firstInit) {
groupLabel.setPreferredSize(leftDim);
groupComboBox.setPreferredSize(rightDim);
nameLabel.setPreferredSize(leftDim);
nameField.setColumns(30);
commentLabel.setPreferredSize(leftDim);
commentField.setColumns(30);
transLabel.setPreferredSize(leftDim);
transField.setColumns(30);
lookupLabel.setPreferredSize(leftDim);
box1.add(groupLabel); box1.add(groupComboBox);
box2.add(nameLabel); box2.add(nameField);
box4.add(commentLabel); box4.add(commentField);
box3.add(transLabel); box3.add(transField);
createButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_create_trigger")));
createMoreButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_create_more_trigger")));
}
box5.add(Box.createHorizontalGlue()); box5.add(lookupLabel); box5.add(Box.createHorizontalStrut(5));
if (noLookupLabel != null) {
noLookupLabel.setPreferredSize(rightDim);
box5.add(noLookupLabel);
}
else box5.add(lookupBox);
if (firstInit) {
box6.add(createButton);
box6.add(Box.createHorizontalStrut(5));
if (item == null) box6.add(createMoreButton);
box6.add(Box.createHorizontalStrut(5));
box6.add(cancelButton);
}
instructionsLabel.setBorder(BorderFactory.createEtchedBorder());
// Add the appropriate listeners
if (firstInit) {
cancelButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
JDialog dialog = (JDialog)((JButton)ev.getSource()).getParent().getParent().getParent().getParent().getParent().getParent();
dialog.setVisible(false);
dialog.dispose();
}
});
createButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
BundleItemCreationDialog dialog =
(BundleItemCreationDialog)((JButton)ev.getSource()).getParent().getParent().getParent().getParent().getParent().getParent();
boolean success = false;
if (dialog.item == null) success = dialog.createItem();
else success = dialog.editItem();
if (!success) {
String alert = (item == null ? Resources.getTranslation("error_create_item") :
Resources.getTranslation("error_modify_item"));
alert += " " + Resources.getTranslation("error_try_again_item");
JOptionPane.showMessageDialog(dialog, alert, Resources.getTranslation("error"),
JOptionPane.ERROR_MESSAGE);
} else {
((RBManagerGUI)dialog.getParent()).updateDisplayPanels();
((RBManagerGUI)dialog.getParent()).invalidate();
//((RBManagerGUI)dialog.getParent()).validateMyTree();
dialog.setVisible(false);
dialog.dispose();
}
}
});
createMoreButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
BundleItemCreationDialog dialog =
(BundleItemCreationDialog)((JButton)ev.getSource()).getParent().getParent().getParent().getParent().getParent().getParent();
boolean success = false;
if (dialog.item == null) success = createItem();
else success = dialog.editItem();
if (!success) {
String alert = (item == null ? Resources.getTranslation("error_create_item") :
Resources.getTranslation("error_modify_item"));
alert += " " + Resources.getTranslation("error_try_again_item");
JOptionPane.showMessageDialog(dialog, alert, Resources.getTranslation("error"),
JOptionPane.ERROR_MESSAGE);
} else {
((RBManagerGUI)dialog.getParent()).updateDisplayPanels();
((RBManagerGUI)dialog.getParent()).invalidate();
//((RBManagerGUI)dialog.getParent()).validateMyTree();
dialog.clearComponents();
}
}
});
transField.addFocusListener(new FocusListener() {
public void focusGained(FocusEvent ev) {}
public void focusLost(FocusEvent ev) {
BundleItemCreationDialog dialog =
(BundleItemCreationDialog)((JTextField)ev.getSource()).getParent().getParent().getParent().getParent().getParent().getParent();
firstInit = false;
dialog.initComponents();
}
});
}
// Complete the initialization of the frame
if (firstInit) setLocation(new java.awt.Point(50, 50));
mainBox.removeAll();
//mainBox.add(instructionsLabel);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(box1);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(box2);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(box3);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(box4);
mainBox.add(Box.createVerticalStrut(5));
if (noLookupLabel == null) {
mainBox.add(box5);
mainBox.add(Box.createVerticalStrut(5));
}
mainBox.add(box6);
getContentPane().add(mainBox, BorderLayout.CENTER);
validateTree();
pack();
setVisible(true);
//setResizable(false);
firstInit = false;
}
void closeWindow() {
setVisible(false);
dispose();
}
}

View file

@ -0,0 +1,299 @@
/*
*****************************************************************************
* Copyright (C) 2000-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************
*/
package com.ibm.rbm.gui;
import java.awt.*;
import java.awt.event.*;
import java.text.DateFormat;
import java.util.*;
import javax.swing.*;
import com.ibm.rbm.*;
//A dialog which displays the properties of a Bundle Item in an editable way
class BundleItemDialog extends JDialog implements ActionListener {
RBManager rbm;
BundleItem item;
String user;
boolean firstInit = true;
// Helper data
int left_col_width = 125;
int right_col_width = 375;
int row_height = 25;
Dimension leftDim = new Dimension(left_col_width, row_height);
Dimension rightDim = new Dimension(right_col_width, row_height);
// Components
Box mainBox = new Box(BoxLayout.Y_AXIS);
Box box0 = new Box(BoxLayout.X_AXIS);
Box box1 = new Box(BoxLayout.X_AXIS);
Box box2 = new Box(BoxLayout.X_AXIS);
Box box3 = new Box(BoxLayout.X_AXIS);
Box box4 = new Box(BoxLayout.X_AXIS);
Box box5 = new Box(BoxLayout.X_AXIS);
Box box6 = new Box(BoxLayout.X_AXIS);
Box box7 = new Box(BoxLayout.X_AXIS);
Box box8 = new Box(BoxLayout.X_AXIS);
JLabel groupLabel = new JLabel(Resources.getTranslation("dialog_group"));
JLabel keyLabel = new JLabel(Resources.getTranslation("dialog_key"));
JLabel defTransLabel = new JLabel(Resources.getTranslation("dialog_default_translation"));
JLabel transLabel = new JLabel(Resources.getTranslation("dialog_translation"));
JLabel commentLabel = new JLabel(Resources.getTranslation("dialog_comment"));
JLabel lookupLabel = new JLabel(Resources.getTranslation("dialog_lookups"));
JLabel createdLabel = new JLabel(Resources.getTranslation("dialog_created"));
JLabel modifiedLabel = new JLabel(Resources.getTranslation("dialog_modified"));
JComboBox groupComboBox;
JTextField keyField;
JTextField transField;
JTextField defTransField;
JTextField commentField;
JLabel createdLabel2;
JLabel modifiedLabel2;
JLabel lookupLabel2 = null;
JCheckBox transCheckBox;
JButton saveButton = new JButton(Resources.getTranslation("button_edit"));
JButton cancelButton = new JButton(Resources.getTranslation("button_cancel"));
Box lookupBox = null;
Box lookups[] = null;
JLabel lookupLabels[] = null;
JTextField lookupFields[] = null;
public BundleItemDialog(RBManager rbm, BundleItem item, String user, JFrame frame, String title, boolean modal) {
super(frame, title, modal);
this.rbm = rbm;
this.user = user;
this.item = item;
initComponents();
enableEvents(AWTEvent.KEY_EVENT_MASK);
}
protected void processKeyEvent(KeyEvent ev) {
if (ev.getKeyCode() == KeyEvent.VK_ENTER && ev.getID() == KeyEvent.KEY_RELEASED) {
actionPerformed(null);
} else if (ev.getKeyCode() == KeyEvent.VK_CANCEL) {
closeWindow();
}
}
public void initComponents(){
// Error check
if (item == null) closeWindow();
if (!firstInit) closeWindow();
// Initialize values
DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT);
Bundle bundle = item.getParentGroup().getParentBundle();
// Lookup the default translation
String defTrans = new String();
Object o = ((Bundle)rbm.getBundles().firstElement()).allItems.get(item.getKey());
if (o != null) defTrans = ((BundleItem)o).getTranslation();
keyField = new JTextField(item.getKey());
keyField.setEnabled(false);
defTransField = new JTextField(defTrans);
defTransField.setEnabled(false);
transField = new JTextField(item.getTranslation());
commentField = new JTextField(item.getComment());
String created[] = {df.format(item.getCreatedDate()), item.getCreator()};
String modified[] = {df.format(item.getModifiedDate()), item.getModifier()};
String createdString = Resources.getTranslation("dialog_date_person", created);
String modifiedString = Resources.getTranslation("dialog_date_person", modified);
createdLabel2 = new JLabel(item.getCreator() == null ? df.format(item.getCreatedDate()) : createdString);
modifiedLabel2 = new JLabel(item.getModifier() == null ? df.format(item.getModifiedDate()) : modifiedString);
transCheckBox = new JCheckBox(Resources.getTranslation("dialog_checkbox_translated"),item.isTranslated());
groupComboBox = new JComboBox(bundle.getGroupsAsVector());
for (int i=0; i < groupComboBox.getItemCount(); i++) {
BundleGroup bg = (BundleGroup)groupComboBox.getItemAt(i);
if (bg.getName().equals(item.getParentGroup().getName())) {
groupComboBox.setSelectedIndex(i);
break;
}
}
groupComboBox.setEnabled(false);
// Set up the components
groupLabel.setPreferredSize(leftDim);
groupComboBox.setPreferredSize(rightDim);
keyLabel.setPreferredSize(leftDim);
//keyField.setPreferredSize(rightDim);
keyField.setColumns(30);
defTransLabel.setPreferredSize(leftDim);
//defTransField.setPreferredSize(rightDim);
defTransField.setColumns(30);
transLabel.setPreferredSize(leftDim);
//transField.setPreferredSize(rightDim);
transField.setColumns(30);
commentLabel.setPreferredSize(leftDim);
//commentField.setPreferredSize(rightDim);
commentField.setColumns(30);
lookupLabel.setPreferredSize(leftDim);
createdLabel.setPreferredSize(leftDim);
createdLabel2.setPreferredSize(rightDim);
modifiedLabel.setPreferredSize(leftDim);
modifiedLabel2.setPreferredSize(rightDim);
// Special setup for the lookup items if they exist
if (item.getLookups().size() < 1) {
lookupLabel2 = new JLabel(Resources.getTranslation("none"));
lookupLabel2.setPreferredSize(rightDim);
} else {
lookupBox = new Box(BoxLayout.Y_AXIS);
lookups = new Box[item.getLookups().size()];
lookupLabels = new JLabel[item.getLookups().size()];
lookupFields = new JTextField[item.getLookups().size()];
Enumeration enum = item.getLookups().keys();
for (int i = 0; i < item.getLookups().size(); i++) {
String name = (String)enum.nextElement();
String value = (String)item.getLookups().get(name);
RBManagerGUI.debugMsg("X - Lookup: " + name + " -> " + value);
lookups[i] = new Box(BoxLayout.X_AXIS);
lookupLabels[i] = new JLabel("{" + name + "}");
lookupLabels[i].setPreferredSize(new Dimension(30,row_height));
lookupFields[i] = new JTextField(value);
lookupFields[i].setPreferredSize(new Dimension(right_col_width-35,row_height));
lookups[i].add(Box.createHorizontalGlue());
lookups[i].add(lookupLabels[i]);
lookups[i].add(Box.createHorizontalStrut(5));
lookups[i].add(lookupFields[i]);
lookupBox.add(lookups[i]);
}
}
// Add the appropriate listeners
if (firstInit) {
cancelButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
JDialog dialog = (JDialog)((JButton)ev.getSource()).getParent().getParent().getParent().getParent().getParent().getParent();
dialog.setVisible(false);
dialog.dispose();
}
});
saveButton.addActionListener(this);
transField.addFocusListener(new TranslationFocusListener(item.getTranslation(),transCheckBox));
}
box0.add(groupLabel); box0.add(groupComboBox);
box1.add(keyLabel); box1.add(keyField);
box8.add(defTransLabel); box8.add(defTransField);
box2.add(transLabel); box2.add(transField);
box3.add(commentLabel); box3.add(commentField);
box4.add(Box.createHorizontalGlue()); box4.add(lookupLabel);
if (lookupLabel2 != null) {
box4.add(Box.createHorizontalStrut(5));
box4.add(lookupLabel2);
} else if (lookupBox != null) {
box4.add(Box.createHorizontalStrut(5));
box4.add(lookupBox);
}
box5.add(Box.createHorizontalGlue()); box5.add(createdLabel);
box5.add(Box.createHorizontalStrut(5)); box5.add(createdLabel2);
box6.add(Box.createHorizontalGlue()); box6.add(modifiedLabel);
box6.add(Box.createHorizontalStrut(5)); box6.add(modifiedLabel2);
box7.add(transCheckBox); box7.add(saveButton); box7.add(cancelButton);
// Complete the initialization of the frame
setLocation(new java.awt.Point(50, 50));
mainBox.removeAll();
mainBox.add(box0);
mainBox.add(box1);
mainBox.add(box8);
mainBox.add(box2);
mainBox.add(box3);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(box4);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(box5);
mainBox.add(box6);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(box7);
getContentPane().add(mainBox, BorderLayout.CENTER);
validateTree();
pack();
setVisible(true);
//setResizable(false);
firstInit = false;
}
void closeWindow() {
setVisible(false);
dispose();
}
public void actionPerformed(ActionEvent ev) {
if (ev == null && transField.hasFocus()) {
// If we are in the translation field, then enter should create a new line character, not exit the dialog
int caretPos = transField.getCaretPosition();
String oldText = transField.getText();
transField.setText(oldText.substring(0,caretPos) + "\n" + oldText.substring(caretPos,oldText.length()));
transField.setCaretPosition(caretPos+1);
validate();
setSize(getPreferredSize());
return;
}
// This action is called when the 'Edit' button is pressed
item.setTranslation(transField.getText().trim());
if (!item.getKey().equals(keyField.getText())) item.setKey(keyField.getText().trim());
item.setComment(commentField.getText());
item.setModifiedDate(new Date());
item.setModifier(user);
item.setTranslated(transCheckBox.isSelected());
if (transCheckBox.isSelected()) {
// Remove this item from the untranslated items, if it is there
item.getParentGroup().getParentBundle().removeUntranslatedItem(item.getKey());
} else {
item.getParentGroup().getParentBundle().addUntranslatedItem(item);
}
if (lookups != null) {
item.setLookups(new Hashtable());
for (int i=0; i < lookups.length; i++) {
String name = lookupLabels[i].getText().trim();
if (name.indexOf("{") >= 0) name = name.substring(name.indexOf("{")+1,name.length());
if (name.indexOf("}") >= 0) name = name.substring(0, name.indexOf("}"));
String value = lookupFields[i].getText().trim();
item.getLookups().put(name,value);
}
}
closeWindow();
}
}
/**
* A listener which checks a translation box to see if it changes, if it does, it marks the word as translated in a check box
*/
class TranslationFocusListener implements FocusListener {
String original;
JCheckBox cbox;
boolean selected;
public TranslationFocusListener(String original, JCheckBox cbox) {
this.original = original;
this.cbox = cbox;
selected = cbox.isSelected();
}
public void focusGained(FocusEvent ev) {}
public void focusLost(FocusEvent ev) {
JTextField field = (JTextField)ev.getSource();
if (field.getText().equals(original)) {
cbox.setSelected(selected);
return;
}
cbox.setSelected(true);
}
}

View file

@ -0,0 +1,278 @@
/*
*****************************************************************************
* Copyright (C) 2000-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************
*/
package com.ibm.rbm.gui;
import java.awt.*;
import java.awt.event.*;
import java.io.IOException;
import java.util.Locale;
import javax.swing.*;
import com.ibm.rbm.*;
/**
* Dialog to display to a user about their preferences.
*/
class PreferencesDialog extends JDialog {
String userName;
Locale locale;
LookAndFeel laf;
RBManagerGUI gui;
// ** COMPONENTS **
JTextField nameField;
JRadioButton machineRadio;
JRadioButton definedRadio;
JRadioButton isoRadio;
JComboBox machineCombo;
JComboBox definedCombo;
JComboBox isoLangCombo;
JComboBox isoCounCombo;
JComboBox lafCombo;
JButton okButton;
JButton cancelButton;
public PreferencesDialog(RBManagerGUI gui) {
super(gui, Resources.getTranslation("dialog_title_preferences"), true);
this.gui = gui;
userName = gui.getUser();
locale = Resources.getLocale();
laf = UIManager.getLookAndFeel();
initComponents();
enableEvents(AWTEvent.KEY_EVENT_MASK);
}
protected void processKeyEvent(KeyEvent ev) {
if (ev.getKeyCode() == KeyEvent.VK_ENTER) {
updatePreferences();
} else if (ev.getKeyCode() == KeyEvent.VK_CANCEL) {
thisWindowClosing();
}
}
private void initComponents() {
UIManager.LookAndFeelInfo lafi[] = UIManager.getInstalledLookAndFeels();
String lafn[] = new String[lafi.length];
for (int i=0; i < lafi.length; i++) {
lafn[i] = lafi[i].getName();
}
// COMPONENTS
JPanel panel1 = new JPanel();
JPanel panel2 = new JPanel();
JPanel panel3 = new JPanel();
JPanel panel4 = new JPanel();
Box mainBox = new Box(BoxLayout.Y_AXIS);
Box localeBox1 = new Box(BoxLayout.Y_AXIS);
Box localeBox2 = new Box(BoxLayout.Y_AXIS);
JPanel localePanel = new JPanel();
Dimension localeDim1 = new Dimension(200,25);
Dimension localeDim2 = new Dimension(150,25);
Dimension localeDim3 = new Dimension(50,25);
JLabel nameLabel = new JLabel(Resources.getTranslation("dialog_preferences_username"));
JLabel lafLabel = new JLabel(Resources.getTranslation("dialog_preferences_lookandfeel"));
JLabel warnLabel = new JLabel(Resources.getTranslation("dialog_preferences_locale_warning"));
JLabel underscoreLabel = new JLabel("_");
nameField = new JTextField(userName);
machineRadio = new JRadioButton(Resources.getTranslation("dialog_preferences_locale_machine"), false);
definedRadio = new JRadioButton(Resources.getTranslation("dialog_preferences_locale_defined"), true);
isoRadio = new JRadioButton(Resources.getTranslation("dialog_preferences_locale_iso"), false);
machineCombo = new JComboBox(Locale.getAvailableLocales());
definedCombo = new JComboBox(Resources.getAvailableLocales());
isoLangCombo = new JComboBox(Locale.getISOLanguages());
isoCounCombo = new JComboBox(Locale.getISOCountries());
lafCombo = new JComboBox(lafn);
okButton = new JButton(Resources.getTranslation("button_update"));
cancelButton = new JButton(Resources.getTranslation("button_cancel"));
machineRadio.setPreferredSize(localeDim1);
definedRadio.setPreferredSize(localeDim1);
isoRadio.setPreferredSize(localeDim1);
nameLabel.setPreferredSize(localeDim1);
lafLabel.setPreferredSize(localeDim1);
//localePanel.setPreferredSize(localeDim2);
machineCombo.setPreferredSize(localeDim2);
definedCombo.setPreferredSize(localeDim2);
nameField.setPreferredSize(localeDim2);
lafCombo.setPreferredSize(localeDim2);
isoLangCombo.setPreferredSize(localeDim3);
isoCounCombo.setPreferredSize(localeDim3);
// Select the appropriate entries in the combo boxes
String lafname = UIManager.getLookAndFeel().getName();
for (int i = 0; i < lafCombo.getItemCount(); i++) {
if (lafCombo.getItemAt(i).toString().equals(lafname)) {
lafCombo.setSelectedIndex(i);
break;
}
}
String locname = Resources.getLocale().toString();
String loclang = Resources.getLocale().getLanguage();
String loccoun = Resources.getLocale().getCountry();
for (int i = 0; i < machineCombo.getItemCount(); i++) {
if (machineCombo.getItemAt(i).toString().equalsIgnoreCase(locname)) {
machineCombo.setSelectedIndex(i);
break;
}
}
for (int i = 0; i < definedCombo.getItemCount(); i++) {
if (definedCombo.getItemAt(i).toString().equalsIgnoreCase(locname)) {
definedCombo.setSelectedIndex(i);
break;
}
}
for (int i = 0; i < isoLangCombo.getItemCount(); i++) {
if (isoLangCombo.getItemAt(i).toString().equalsIgnoreCase(loclang)) {
isoLangCombo.setSelectedIndex(i);
break;
}
}
for (int i = 0; i < isoCounCombo.getItemCount(); i++) {
if (isoCounCombo.getItemAt(i).toString().equalsIgnoreCase(loccoun)) {
isoCounCombo.setSelectedIndex(i);
break;
}
}
// Set the radio button group
ButtonGroup group = new ButtonGroup();
group.add(machineRadio);
group.add(definedRadio);
group.add(isoRadio);
nameField.setColumns(15);
// Add action listeners
cancelButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
thisWindowClosing();
}
});
okButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
updatePreferences();
}
});
panel3.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),
Resources.getTranslation("dialog_preferences_locale")));
panel3.setLayout(new BorderLayout());
localePanel.add(isoLangCombo);
localePanel.add(underscoreLabel);
localePanel.add(isoCounCombo);
localeBox1.add(machineRadio);
localeBox1.add(definedRadio);
localeBox1.add(isoRadio);
localeBox2.add(machineCombo);
localeBox2.add(definedCombo);
localeBox2.add(localePanel);
localeBox1.add(Box.createVerticalStrut(5));
localeBox2.add(Box.createVerticalStrut(5));
panel1.add(nameLabel);
panel1.add(nameField);
panel2.add(lafLabel);
panel2.add(lafCombo);
panel3.add(localeBox1, BorderLayout.WEST);
panel3.add(localeBox2, BorderLayout.EAST);
panel3.add(warnLabel, BorderLayout.SOUTH);
panel4.add(okButton);
panel4.add(cancelButton);
mainBox.add(panel1);
mainBox.add(panel2);
mainBox.add(panel3);
mainBox.add(panel4);
getContentPane().add(mainBox);
//validate();
pack();
setVisible(true);
}
public void thisWindowClosing() {
setVisible(false);
dispose();
}
void updatePreferences() {
// Set the user name
gui.setUser(nameField.getText().trim());
// Set the look and feel
try {
UIManager.LookAndFeelInfo lafi[] = UIManager.getInstalledLookAndFeels();
for (int i=0; i < lafi.length; i++) {
if (lafi[i].getName().equals(lafCombo.getSelectedItem().toString())) {
UIManager.setLookAndFeel(lafi[i].getClassName());
gui.updateUI();
break;
}
}
} catch (Exception e) {
System.err.println("Could not change the look and feel");
e.printStackTrace(System.err);
}
// Set the locale
String language = null;
String country = null;
String variant = null;
if (definedRadio.isSelected()) {
String encoding = definedCombo.getSelectedItem().toString();
language = Resources.getLanguage(encoding);
country = Resources.getCountry(encoding);
variant = Resources.getVariant(encoding);
RBManagerGUI.debugMsg("Before: " + language + "_" + country + "_" + variant);
if (country == null) country = new String();
if (variant == null) locale = new Locale(language, country);
else locale = new Locale(language, country, variant);
RBManagerGUI.debugMsg("After: " + locale.toString());
} else if (machineRadio.isSelected()) {
String encoding = machineCombo.getSelectedItem().toString();
language = Resources.getLanguage(encoding);
country = Resources.getCountry(encoding);
variant = Resources.getVariant(encoding);
if (country == null) country = new String();
if (variant == null) locale = new Locale(language, country);
else locale = new Locale(language, country, variant);
} else if (isoRadio.isSelected()) {
language = isoLangCombo.getSelectedItem().toString();
country = isoCounCombo.getSelectedItem().toString();
if (variant == null) locale = new Locale(language, country);
else locale = new Locale(language, country, variant);
}
Resources.setLocale(locale);
gui.updateLocale(locale);
// Write the preferences
Preferences.setPreference("username", gui.getUser());
Preferences.setPreference("lookandfeel", UIManager.getLookAndFeel().getClass().getName());
Preferences.setPreference("locale", locale.toString());
try {
Preferences.savePreferences();
} catch (IOException ioe) {
JOptionPane.showMessageDialog(this, Resources.getTranslation("error_preferences_save"),
Resources.getTranslation("error"), JOptionPane.ERROR_MESSAGE);
ioe.printStackTrace(System.err);
}
// Close the window
thisWindowClosing();
}
}

View file

@ -0,0 +1,494 @@
/*
*****************************************************************************
* Copyright (C) 2000-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************
*/
package com.ibm.rbm.gui;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import com.ibm.rbm.*;
/**
* The class used to display groups
*/
class RBGroupPanel extends JPanel {
RBManager rbm;
Bundle bundle;
RBManagerGUI listener;
// Components
JLabel jLabelGroupTitle;
JLabel jLabelGroupNameTitle;
JLabel jLabelGroupCommentTitle;
JLabel jLabelGroupComment;
JComboBox jComboBoxGroup;
JTable jTableGroupTable;
JScrollPane jScrollPaneGroupTable;
Box boxGroupInfo;
Box box1;
Box box2;
Box box3;
Box box4;
Dimension topDim = new Dimension();
Dimension leftDim = new Dimension();
Dimension rightDim = new Dimension();
// Components - Manager
JList jListGroup;
JButton createItemButton;
JButton createGroupButton;
JButton editItemButton;
JButton editGroupButton;
JButton deleteItemButton;
JButton deleteGroupButton;
JPanel itemPanel;
JPanel groupPanel;
public RBGroupPanel(RBManagerGUI gui) {
super();
listener = gui;
}
public void setBundle(Bundle b) {
rbm = null;
if (bundle == null) {
bundle = b;
initComponents();
} else if (bundle != b) {
bundle = b;
updateComponents();
}
}
public void setManager(RBManager m) {
bundle = null;
if (rbm == null) {
rbm = m;
initComponents();
} else if (rbm != m) {
rbm = m;
updateComponents();
}
}
public void removeElements() {
if (rbm != null || bundle != null) {
rbm = null;
bundle = null;
initComponents();
}
}
// Marks the selected resource as translated and removes from this view
private void markSelectedResourceAsTranslated() {
if (bundle == null) return;
if (jTableGroupTable.getSelectedRow() < 0) return;
if (jTableGroupTable.getModel() instanceof GroupItemsTableModel) {
int row = jTableGroupTable.getSelectedRow();
GroupItemsTableModel model = (GroupItemsTableModel)jTableGroupTable.getModel();
BundleItem item = model.getBundleItem(row);
item.setTranslated(true);
model.update();
}
}
// Removes the selected resource from the resource file
private void deleteSelectedResource() {
if (bundle == null) return;
if (jTableGroupTable.getSelectedRow() < 0) return;
if (jTableGroupTable.getModel() instanceof GroupItemsTableModel) {
int row = jTableGroupTable.getSelectedRow();
GroupItemsTableModel model = (GroupItemsTableModel)jTableGroupTable.getModel();
BundleItem item = model.getBundleItem(row);
if (item.getParentGroup() != null && item.getParentGroup().getParentBundle() != null) {
Bundle bundle = item.getParentGroup().getParentBundle();
bundle.removeItem(item.getKey());
}
model.update();
}
}
public void initComponents() {
// Initialize components
if (bundle != null) {
jLabelGroupTitle = new JLabel(bundle.name);
jComboBoxGroup = new JComboBox(new GroupComboBoxModel(bundle));
jTableGroupTable = new JTable(new GroupItemsTableModel((BundleGroup)jComboBoxGroup.getSelectedItem()));
jScrollPaneGroupTable = new JScrollPane(jTableGroupTable);
jLabelGroupNameTitle = new JLabel(Resources.getTranslation("basegroup_group_name"));
jLabelGroupCommentTitle = new JLabel(Resources.getTranslation("basegroup_group_comment"));
jLabelGroupComment = new JLabel(((BundleGroup)jComboBoxGroup.getSelectedItem()).getComment());
boxGroupInfo = new Box(BoxLayout.Y_AXIS);
box1 = new Box(BoxLayout.X_AXIS);
box2 = new Box(BoxLayout.X_AXIS);
box3 = new Box(BoxLayout.X_AXIS);
// Lower panel components
JPanel lowerPanel = new JPanel();
JButton deleteButton = new JButton(Resources.getTranslation("button_delete_resource"));
JButton translateButton = new JButton(Resources.getTranslation("button_mark_translated"));
deleteButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_delete_resource_trigger")));
translateButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_mark_translated_trigger")));
lowerPanel.setBorder(BorderFactory.createTitledBorder(Resources.getTranslation("languageuntrans_selected_resources_options")));
lowerPanel.setLayout(new GridLayout(1,2));
topDim = new Dimension(getSize().width, 35);
leftDim = new Dimension(150,25);
rightDim = new Dimension(getSize().width - leftDim.width, leftDim.height);
jLabelGroupNameTitle.setPreferredSize(leftDim);
jLabelGroupNameTitle.setHorizontalAlignment(SwingConstants.LEFT);
jLabelGroupCommentTitle.setPreferredSize(leftDim);
jComboBoxGroup.setPreferredSize(rightDim);
jLabelGroupTitle.setPreferredSize(topDim);
jLabelGroupComment.setPreferredSize(rightDim);
jTableGroupTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
jTableGroupTable.addMouseListener(listener);
jComboBoxGroup.addActionListener(new GroupComboActionListener(jListGroup));
jLabelGroupTitle.setFont(new Font("SansSerif",Font.PLAIN,18));
// Add action listeners
deleteButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ev) {
deleteSelectedResource();
}
});
translateButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ev) {
markSelectedResourceAsTranslated();
}
});
// Update the display
setLayout(new BorderLayout());
removeAll();
lowerPanel.add(deleteButton);
lowerPanel.add(translateButton);
box1.add(Box.createHorizontalGlue());
box1.add(jLabelGroupTitle);
box2.add(Box.createHorizontalGlue());
box2.add(jLabelGroupNameTitle);
box2.add(jComboBoxGroup);
box3.add(Box.createHorizontalGlue());
box3.add(jLabelGroupCommentTitle);
box3.add(jLabelGroupComment);
boxGroupInfo.add(box1);
boxGroupInfo.add(box2);
boxGroupInfo.add(box3);
boxGroupInfo.add(jScrollPaneGroupTable);
add(boxGroupInfo, BorderLayout.CENTER);
add(lowerPanel, BorderLayout.SOUTH);
} else if (rbm != null) {
Bundle mainBundle = (Bundle)rbm.getBundles().firstElement();
jLabelGroupTitle = new JLabel(rbm.getBaseClass() + " - " + Resources.getTranslation("groups"));
jComboBoxGroup = new JComboBox(new GroupComboBoxModel(mainBundle));//mainBundle.getGroupsAsVector());
jListGroup = new JList(new GroupItemsListModel((BundleGroup)jComboBoxGroup.getSelectedItem()));
jScrollPaneGroupTable = new JScrollPane(jListGroup);
jLabelGroupNameTitle = new JLabel(Resources.getTranslation("basegroup_group_name"));
jLabelGroupCommentTitle = new JLabel(Resources.getTranslation("basegroup_group_comment"));
try {
jLabelGroupComment = new JLabel(((BundleGroup)jComboBoxGroup.getSelectedItem()).getComment());
} catch (NullPointerException npe) {
jLabelGroupComment = new JLabel("");
}
boxGroupInfo = new Box(BoxLayout.Y_AXIS);
box1 = new Box(BoxLayout.X_AXIS);
box2 = new Box(BoxLayout.X_AXIS);
box3 = new Box(BoxLayout.X_AXIS);
box4 = new Box(BoxLayout.Y_AXIS);
createItemButton = new JButton(Resources.getTranslation("button_create_resource"));
createGroupButton = new JButton(Resources.getTranslation("button_create_group"));
deleteItemButton = new JButton(Resources.getTranslation("button_delete_resource"));
deleteGroupButton = new JButton(Resources.getTranslation("button_delete_group"));
editItemButton = new JButton(Resources.getTranslation("button_edit_resource"));
editGroupButton = new JButton(Resources.getTranslation("button_edit_group"));
itemPanel = new JPanel();
groupPanel = new JPanel();
itemPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),
Resources.getTranslation("basegroup_item_options")));
groupPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),
Resources.getTranslation("basegroup_group_options")));
itemPanel.setLayout(new GridLayout(1,3));
groupPanel.setLayout(new GridLayout(1,3));
itemPanel.setMaximumSize(new Dimension(20000,50));
groupPanel.setMaximumSize(new Dimension(20000,50));
topDim = new Dimension(getSize().width, 35);
leftDim = new Dimension(150,25);
rightDim = new Dimension(getSize().width - leftDim.width, leftDim.height);
createItemButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_create_resource_trigger")));
editItemButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_edit_resource_trigger")));
deleteItemButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_delete_resource_trigger")));
createGroupButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_create_group_trigger")));
jLabelGroupNameTitle.setPreferredSize(leftDim);
jLabelGroupCommentTitle.setPreferredSize(leftDim);
jComboBoxGroup.setPreferredSize(rightDim);
jLabelGroupTitle.setPreferredSize(topDim);
jLabelGroupComment.setPreferredSize(rightDim);
jListGroup.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
jComboBoxGroup.addActionListener(new GroupComboActionListener(jListGroup));
jLabelGroupTitle.setFont(new Font("SansSerif",Font.PLAIN,18));
// Add the listeners
jListGroup.addMouseListener(new MouseListener() {
public void mousePressed(MouseEvent ev) { }
public void mouseClicked(MouseEvent ev) {
if(ev.getClickCount() == 2 && ev.getSource() instanceof JList) {
// A double click means they want to edit a bundle item
RBGroupPanel panel = (RBGroupPanel)
((JList)ev.getSource()).getParent().getParent().getParent().getParent();
if (((JList)ev.getSource()).getSelectedValue() != null)
new BundleItemCreationDialog((BundleItem)((JList)ev.getSource()).getSelectedValue(),
panel.listener.rbm, panel.listener, Resources.getTranslation("dialog_title_edit_item"), true);
}
}
public void mouseReleased(MouseEvent ev) { }
public void mouseEntered(MouseEvent ev) { }
public void mouseExited(MouseEvent ev) { }
});
createItemButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ev) {
RBGroupPanel panel = (RBGroupPanel)
((JButton)ev.getSource()).getParent().getParent().getParent().getParent();
new BundleItemCreationDialog(((BundleGroup)panel.jComboBoxGroup.getSelectedItem()).getName(),
panel.listener.rbm, panel.listener,
Resources.getTranslation("dialog_title_new_item"), true);
panel.updateComponents();
}
});
createGroupButton.addActionListener(listener);
editItemButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
RBGroupPanel panel = (RBGroupPanel)
((JButton)ev.getSource()).getParent().getParent().getParent().getParent();
if (panel.jListGroup.getSelectedValue() != null)
new BundleItemCreationDialog((BundleItem)panel.jListGroup.getSelectedValue(),
panel.listener.rbm, panel.listener, Resources.getTranslation("dialog_title_edit_item"), true);
panel.updateComponents();
}
});
editGroupButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
RBGroupPanel panel = (RBGroupPanel)
((JButton)ev.getSource()).getParent().getParent().getParent().getParent();
new BundleGroupEditDialog((BundleGroup)panel.jComboBoxGroup.getSelectedItem(),
panel.listener, Resources.getTranslation("dialog_title_edit_group"), true);
panel.updateComponents();
}
});
deleteGroupButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
RBGroupPanel panel = (RBGroupPanel)
((JButton)ev.getSource()).getParent().getParent().getParent().getParent();
int response = JOptionPane.showConfirmDialog(panel.listener,
Resources.getTranslation("dialog_warning_delete_group"),
Resources.getTranslation("dialog_title_delete_group"), JOptionPane.OK_CANCEL_OPTION,
JOptionPane.WARNING_MESSAGE);
if (response == JOptionPane.OK_OPTION) {
// Delete the group
int index = panel.jComboBoxGroup.getSelectedIndex();
BundleGroup group = (BundleGroup)panel.jComboBoxGroup.getSelectedItem();
if (group.getName().equals("Ungrouped Items")) return;
if (index < panel.jComboBoxGroup.getItemCount()-1) panel.jComboBoxGroup.setSelectedIndex(index+1);
else panel.jComboBoxGroup.setSelectedIndex(index-1);
panel.rbm.deleteGroup(group.getName());
}
panel.updateComponents();
}
});
deleteItemButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
RBGroupPanel panel = (RBGroupPanel)((JButton)ev.getSource()).getParent().getParent().getParent().getParent();
int response = JOptionPane.showConfirmDialog(panel.listener,
Resources.getTranslation("dialog_warning_delete_item"),
Resources.getTranslation("dialog_title_delete_item"), JOptionPane.OK_CANCEL_OPTION,
JOptionPane.WARNING_MESSAGE);
if (response == JOptionPane.OK_OPTION) {
Object o = panel.jListGroup.getSelectedValue();
if (o != null) {
BundleItem item = (BundleItem) o;
handleDeleteItem(item.getKey());
//panel.rbm.deleteItem(item.getKey());
}
}
panel.updateComponents();
}
});
// Update the display
setLayout(new BorderLayout());
removeAll();
itemPanel.add(createItemButton, BorderLayout.WEST);
itemPanel.add(editItemButton, BorderLayout.CENTER);
itemPanel.add(deleteItemButton, BorderLayout.EAST);
groupPanel.add(createGroupButton, BorderLayout.WEST);
groupPanel.add(editGroupButton, BorderLayout.CENTER);
groupPanel.add(deleteGroupButton, BorderLayout.EAST);
box1.add(Box.createHorizontalGlue());
box1.add(jLabelGroupTitle);
box2.add(Box.createHorizontalGlue());
box2.add(jLabelGroupNameTitle);
box2.add(jComboBoxGroup);
box3.add(Box.createHorizontalGlue());
box3.add(jLabelGroupCommentTitle);
box3.add(jLabelGroupComment);
box4.add(Box.createVerticalStrut(5));
box4.add(groupPanel);
box4.add(Box.createVerticalStrut(10));
box4.add(itemPanel);
box4.add(Box.createVerticalStrut(5));
boxGroupInfo.add(box1);
boxGroupInfo.add(box2);
boxGroupInfo.add(box3);
boxGroupInfo.add(jScrollPaneGroupTable);
boxGroupInfo.add(box4);
add(boxGroupInfo, BorderLayout.CENTER);
} else {
removeAll();
}
}
public void updateComponents() {
// Initialize components
if (bundle != null) {
jLabelGroupTitle.setText(bundle.name);
topDim.width = getSize().width;
rightDim.width = getSize().width - leftDim.width;
box2.removeAll();
box3.removeAll();
boxGroupInfo.remove(jScrollPaneGroupTable);
String selName = null;
try {
selName = ((BundleGroup)jComboBoxGroup.getSelectedItem()).getName();
} catch (Exception e) {}
jComboBoxGroup = new JComboBox(new GroupComboBoxModel(bundle));//bundle.getGroupsAsVector());
for (int i = 0; i < jComboBoxGroup.getItemCount(); i++) {
BundleGroup bg = (BundleGroup)jComboBoxGroup.getItemAt(i);
if (bg.getName().equals(selName)) jComboBoxGroup.setSelectedIndex(i);
}
((GroupItemsTableModel)jTableGroupTable.getModel()).setGroup((BundleGroup)jComboBoxGroup.getSelectedItem());
jScrollPaneGroupTable = new JScrollPane(jTableGroupTable);
jLabelGroupComment.setText(((BundleGroup)jComboBoxGroup.getSelectedItem()).getComment());
jTableGroupTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
jComboBoxGroup.addActionListener(new GroupComboActionListener(jTableGroupTable));
// Update the group comment
jLabelGroupComment.setText(((BundleGroup)jComboBoxGroup.getSelectedItem()).getComment());
// Update the display
jComboBoxGroup.setPreferredSize(rightDim);
box2.add(Box.createHorizontalGlue());
box2.add(jLabelGroupNameTitle);
box2.add(jComboBoxGroup);
box3.add(Box.createHorizontalGlue());
box3.add(jLabelGroupCommentTitle);
box3.add(jLabelGroupComment);
boxGroupInfo.add(jScrollPaneGroupTable);
} else if (rbm != null) {
// Update the list of groups
try {((GroupComboBoxModel)jComboBoxGroup.getModel()).update();}
catch (Exception e) {}
// Update the group comment
if ((BundleGroup)jComboBoxGroup.getSelectedItem() != null)
jLabelGroupComment.setText(((BundleGroup)jComboBoxGroup.getSelectedItem()).getComment());
else jLabelGroupComment.setText("");
// Update the list of resources
ListModel lmodel = jListGroup.getModel();
if (lmodel instanceof GroupItemsListModel)
((GroupItemsListModel)lmodel).update();
else {
GroupItemsListModel newModel = new GroupItemsListModel((BundleGroup)jComboBoxGroup.getSelectedItem());
RBManagerGUI.debugMsg("List Model not as anticipated: " + lmodel.getClass().getName());
jListGroup.setModel(newModel);
newModel.update();
}
/*
try {GroupItemsListModel mod = (GroupItemsListModel) lmodel; }
catch (Exception e) {
e.printStackTrace(System.err);
}
*/
if (lmodel instanceof AbstractListModel) {
RBManagerGUI.debugMsg("List Model is an AbstractListModel");
} else {
RBManagerGUI.debugMsg("List Model is not an AbstractListModel");
}
} else {
removeAll();
}
//validate();
}
private void handleDeleteItem(String key) {
if (rbm != null) rbm.deleteItem(key);
}
}
/**
* The action listener which monitors changes in the group to display
*/
class GroupComboActionListener implements ActionListener {
JTable table;
JList list;
protected GroupComboActionListener(JTable table) {
list = null;
this.table = table;
}
protected GroupComboActionListener(JList list) {
table = null;
this.list = list;
}
public void actionPerformed(ActionEvent ev) {
JComboBox cbox = (JComboBox)ev.getSource();
if (table != null) {
BundleGroup bg = (BundleGroup)cbox.getSelectedItem();
((GroupItemsTableModel)table.getModel()).setGroup((BundleGroup)cbox.getSelectedItem());
//table.validate();
Container c = table.getParent();
while (!(c instanceof RBGroupPanel)) { c = c.getParent(); }
((RBGroupPanel)c).updateComponents();
} else if (list != null) {
list.setListData(((BundleGroup)cbox.getSelectedItem()).getItemsAsVector());
//list.validate();
Container c = list.getParent();
while (!(c instanceof RBGroupPanel)) { c = c.getParent(); }
((RBGroupPanel)c).updateComponents();
} else RBManagerGUI.debugMsg("Selection changed, but no active components");
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,180 @@
/*
*****************************************************************************
* Copyright (C) 2000-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************
*/
package com.ibm.rbm.gui;
import java.awt.*;
import java.awt.event.*;
import java.util.Vector;
import javax.swing.*;
import com.ibm.rbm.*;
/**
*/
class RBProjectItemPanel extends JPanel implements ActionListener {
RBManagerGUI gui;
// Visual Components
Box mainBox;
JTextField itemFields[];
JLabel itemLabels[];
JButton commitButtons[];
JButton commitButton;
JLabel titleLabel;
JLabel keyLabel;
JLabel commentLabel;
public RBProjectItemPanel(RBManagerGUI gui) {
super();
this.gui = gui;
initComponents();
}
public void actionPerformed(ActionEvent ev) {
JButton button = (JButton)ev.getSource();
String buttonName = button.getName();
if (buttonName == null) {
// Save all components
RBManager bundle = gui.getSelectedProjectBundle();
Vector bundles = bundle.getBundles();
for (int i=0; i < itemFields.length; i++) {
String encoding = commitButtons[i].getName();
String translation = itemFields[i].getText();
String key = itemFields[i].getName();
for (int j=0; j < bundles.size(); j++) {
Bundle rbundle = (Bundle)bundles.elementAt(j);
if (rbundle.encoding.equals(encoding)) {
BundleItem item = rbundle.getBundleItem(key);
if (item != null) item.setTranslation(translation);
break;
}
}
}
gui.saveResources(bundle);
} else {
// Save a particular encoding
String encoding = buttonName;
RBManager bundle = gui.getSelectedProjectBundle();
int index = -1;
for (int i=0; i < commitButtons.length; i++) {
if (commitButtons[i] == button) {
index = i;
break;
}
}
String translation = itemFields[index].getText();
String key = itemFields[index].getName();
Vector bundles = bundle.getBundles();
for (int i=0; i < bundles.size(); i++) {
Bundle rbundle = (Bundle)bundles.elementAt(i);
if (rbundle.encoding.equals(encoding)) {
BundleItem item = rbundle.getBundleItem(key);
if (item != null) {
item.setTranslation(translation);
System.out.println("Set translation to : " + translation);
}
else
System.out.println("Item was null");
break;
} else System.out.println("Compared " + rbundle.encoding + " with " + encoding);
}
gui.saveResources(bundle, encoding);
}
updateComponents();
}
private void initComponents() {
setLayout(new BorderLayout());
JPanel topPanel = new JPanel(new GridLayout(2,1));
titleLabel = new JLabel(Resources.getTranslation("project_panel_default_title"), SwingConstants.CENTER);
titleLabel.setFont(new Font("serif",Font.BOLD,18));
JPanel commentPanel = new JPanel(new GridLayout(2,1));
JLabel commentLabel2 = new JLabel(Resources.getTranslation("project_panel_comment"), SwingConstants.LEFT);
commentLabel = new JLabel(Resources.getTranslation("project_panel_comment_none"), SwingConstants.LEFT);
commentPanel.add(commentLabel2);
commentPanel.add(commentLabel);
topPanel.add(titleLabel);
topPanel.add(commentPanel);
JPanel centerPanel = new JPanel(new BorderLayout());
mainBox = new Box(BoxLayout.Y_AXIS);
JScrollPane scrollPane = new JScrollPane(mainBox,
JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
centerPanel.add(scrollPane, BorderLayout.NORTH);
centerPanel.setBorder(BorderFactory.createEtchedBorder());
JPanel botPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
commitButton = new JButton(Resources.getTranslation("project_panel_commit_button_all"));
commitButton.addActionListener(this);
botPanel.add(commitButton);
add(topPanel, BorderLayout.NORTH);
add(centerPanel, BorderLayout.CENTER);
add(botPanel, BorderLayout.SOUTH);
updateComponents();
}
public void updateComponents() {
BundleItem item = gui.getSelectedProjectBundleItem();
if (item == null) {
commentLabel.setText(Resources.getTranslation("project_panel_comment_none"));
titleLabel.setText(Resources.getTranslation("project_panel_default_title"));
itemFields = null;
itemLabels = null;
commitButtons = null;
commitButton.setEnabled(false);
} else {
String comment = item.getComment();
String key = item.getKey();
commentLabel.setText(comment);
titleLabel.setText(Resources.getTranslation("project_panel_title", key));
RBManager manager = gui.getSelectedProjectBundle();
Vector bundles = manager.getBundles();
itemFields = new JTextField[bundles.size()];
itemLabels = new JLabel[bundles.size()];
commitButtons = new JButton[bundles.size()];
for (int i=0; i < bundles.size(); i++) {
Bundle bundle = (Bundle)bundles.elementAt(i);
BundleItem bundleItem = bundle.getBundleItem(key);
boolean translated = bundleItem.isTranslated();
JLabel encodingLabel = new JLabel(Resources.getTranslation("project_panel_bundle", bundle.toString()),
SwingConstants.LEFT);
if (!translated) encodingLabel.setText(Resources.getTranslation("project_panel_bundle_untranslated",
bundle.toString()));
String fieldText = (bundleItem == null ? Resources.getTranslation("project_panel_item_inherits") :
bundleItem.getTranslation());
JTextField itemField = new JTextField(fieldText);
itemField.setMaximumSize(new Dimension(this.getSize().width-150, 200));
itemField.setName(key);
JButton commitItemButton = new JButton(Resources.getTranslation("project_panel_commit_button"));
commitItemButton.addActionListener(this);
commitItemButton.setName(bundle.encoding);
itemFields[i] = itemField;
itemLabels[i] = encodingLabel;
commitButtons[i] = commitItemButton;
}
commitButton.setEnabled(true);
}
mainBox.removeAll();
if (itemFields != null) {
for (int i=0; i < itemFields.length; i++) {
JPanel bundlePanel = new JPanel(new BorderLayout());
bundlePanel.setBorder(BorderFactory.createLineBorder(Color.darkGray));
bundlePanel.add(itemLabels[i], BorderLayout.NORTH);
bundlePanel.add(itemFields[i], BorderLayout.CENTER);
bundlePanel.add(commitButtons[i], BorderLayout.EAST);
mainBox.add(bundlePanel);
}
}
revalidate();
}
}

View file

@ -0,0 +1,278 @@
/*
*****************************************************************************
* Copyright (C) 2000-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************
*/
package com.ibm.rbm.gui;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
import com.ibm.rbm.*;
/**
* The class used to display untranslated items
*/
class RBSearchPanel extends JPanel {
RBManager rbm;
Bundle bundle;
RBManagerGUI listener;
// Components
JLabel titleLabel = new JLabel();
JLabel findLabel = new JLabel(Resources.getTranslation("search_find"));
JLabel replaceLabel = new JLabel(Resources.getTranslation("search_replace"));
JTextField findField = new JTextField();
JTextField replaceField = new JTextField();
JCheckBox keysCheck = new JCheckBox(Resources.getTranslation("search_keys"), false);
JCheckBox transCheck = new JCheckBox(Resources.getTranslation("search_values"), true);
JCheckBox commentsCheck = new JCheckBox(Resources.getTranslation("search_comments"), false);
JCheckBox caseCheck = new JCheckBox(Resources.getTranslation("search_case_sensitive"), false);
JButton findButton = new JButton(Resources.getTranslation("button_search_find_all"));
JButton replaceButton = new JButton(Resources.getTranslation("button_search_replace_all"));
SearchItemsTableModel model;
JTable table;
JScrollPane tableScroll;
public RBSearchPanel(RBManagerGUI gui) {
super();
listener = gui;
}
public void setBundle(Bundle b) {
rbm = null;
if (bundle == null) {
bundle = b;
initComponents();
} else if (bundle != b) {
bundle = b;
updateComponents();
}
}
public void setManager(RBManager m) {
bundle = null;
if (rbm == null) {
rbm = m;
initComponents();
} else if (rbm != m) {
rbm = m;
updateComponents();
}
}
public void removeElements() {
if (rbm != null || bundle != null) {
rbm = null;
bundle = null;
initComponents();
}
}
protected void performSearch() {
String search_term = findField.getText().trim();
if (search_term.length() < 1) return;
if (bundle != null) {
performSearch(search_term, bundle, caseCheck.isSelected());
} else if (rbm != null) {
performSearch(search_term, (Bundle)rbm.getBundles().elementAt(0), caseCheck.isSelected());
}
}
private void performSearch(String term, Bundle bundle, boolean case_sensitive) {
Vector ret_v = new Vector();
Enumeration enum = bundle.allItems.keys();
while (enum.hasMoreElements()) {
String key = (String)enum.nextElement();
BundleItem item = (BundleItem)bundle.allItems.get(key);
if (case_sensitive) {
if (keysCheck.isSelected() && key.indexOf(term) >= 0) {
ret_v.addElement(item);
continue;
} // end if - keys
if (transCheck.isSelected() && item.getTranslation().indexOf(term) >= 0) {
ret_v.addElement(item);
continue;
} // end if - translations
if (commentsCheck.isSelected()) {
if (item.getComment().indexOf(term) >= 0) {
ret_v.addElement(item);
continue;
}
Hashtable lookups = item.getLookups();
Enumeration enum2 = lookups.keys();
while (enum2.hasMoreElements()) {
String lookup_key = (String)enum2.nextElement();
String lookup_value = (String)lookups.get(lookup_key);
if (lookup_value.indexOf(term) >= 0) {
ret_v.addElement(item);
continue;
}
} // end while
} // end if - comments
} else {
// Not case sensitive
if (keysCheck.isSelected() && key.toUpperCase().indexOf(term.toUpperCase()) >= 0) {
ret_v.addElement(item);
continue;
} // end if - keys
if (transCheck.isSelected() && item.getTranslation().toUpperCase().indexOf(term.toUpperCase()) >= 0) {
ret_v.addElement(item);
continue;
} // end if - translations
if (commentsCheck.isSelected()) {
if (item.getComment().toUpperCase().indexOf(term.toUpperCase()) >= 0) {
ret_v.addElement(item);
continue;
}
Hashtable lookups = item.getLookups();
Enumeration enum2 = lookups.keys();
while (enum2.hasMoreElements()) {
String lookup_key = (String)enum2.nextElement();
String lookup_value = (String)lookups.get(lookup_key);
if (lookup_value.toUpperCase().indexOf(term.toUpperCase()) >= 0) {
ret_v.addElement(item);
continue;
}
} // end while
} // end if - comments
}
} // end while
model.setItems(ret_v);
model.update();
}
protected void performReplace() {
String search_term = findField.getText().trim();
String replace_term = replaceField.getText().trim();
performSearch();
if (search_term.length() < 1 || replace_term.length() < 1) return;
if (keysCheck.isSelected()) {
JOptionPane.showMessageDialog(this,
Resources.getTranslation("error_no_key_replace"),
Resources.getTranslation("warning"), JOptionPane.WARNING_MESSAGE);
}
Vector items = model.getBundleItems();
for (int i=0; i < items.size(); i++) {
BundleItem item = (BundleItem)items.elementAt(i);
if (transCheck.isSelected()) {
item.setTranslation(replace(item.getTranslation(), search_term, replace_term));
}
if (commentsCheck.isSelected()) {
item.setComment(replace(item.getComment(), search_term, replace_term));
}
}
model.update();
}
// Replaces all instances of match in original with replace
private String replace(String original, String match, String replace) {
int current_index = -1;
while (original.indexOf(match,++current_index) >= 0) {
current_index = original.indexOf(match, current_index);
original = original.substring(0,current_index) + replace +
original.substring(current_index+match.length(), original.length());
}
return original;
}
public void initComponents() {
// Initialize components
if (bundle != null) {
titleLabel.setText(bundle.name);
}
else if (rbm != null) {
titleLabel.setText(rbm.getBaseClass() + " - " + Resources.getTranslation("search"));
}
model = new SearchItemsTableModel(new Vector());
titleLabel.setFont(new Font("SansSerif",Font.PLAIN,18));
removeAll();
setLayout(new BorderLayout());
table = new JTable(model);
tableScroll = new JScrollPane(table);
table.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
table.addMouseListener(listener);
Dimension dim = new Dimension(75,15);
findField.setColumns(20);
replaceField.setColumns(20);
findLabel.setPreferredSize(dim);
replaceLabel.setPreferredSize(dim);
JPanel innerPanel = new JPanel(new BorderLayout());
JPanel southPanel = new JPanel();
JPanel westPanel1 = new JPanel(new FlowLayout(FlowLayout.LEFT));
JPanel westPanel2 = new JPanel(new FlowLayout(FlowLayout.LEFT));
Box rightBox = new Box(BoxLayout.Y_AXIS);
Box leftBox = new Box(BoxLayout.Y_AXIS);
// Add action listeners
findButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ev) {
performSearch();
}
});
replaceButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ev) {
performReplace();
}
});
findButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_search_find_all_trigger")));
replaceButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_search_replace_all_trigger")));
// Place components
westPanel1.add(findLabel);
westPanel1.add(Box.createHorizontalStrut(5));
westPanel1.add(findField);
westPanel2.add(replaceLabel);
westPanel2.add(Box.createHorizontalStrut(5));
westPanel2.add(replaceField);
leftBox.add(Box.createVerticalGlue());
leftBox.add(westPanel1);
leftBox.add(westPanel2);
//leftBox.add(caseCheck);
rightBox.add(keysCheck);
rightBox.add(transCheck);
rightBox.add(commentsCheck);
southPanel.add(findButton);
southPanel.add(Box.createHorizontalStrut(5));
southPanel.add(replaceButton);
southPanel.add(Box.createHorizontalStrut(10));
southPanel.add(caseCheck);
innerPanel.add(titleLabel, BorderLayout.NORTH);
innerPanel.add(leftBox, BorderLayout.CENTER);
innerPanel.add(rightBox, BorderLayout.EAST);
innerPanel.add(southPanel, BorderLayout.SOUTH);
add(innerPanel, BorderLayout.NORTH);
add(tableScroll, BorderLayout.CENTER);
if (rbm == null && bundle == null) {
removeAll();
}
}
public void updateComponents() {
}
}

View file

@ -0,0 +1,389 @@
/*
*****************************************************************************
* Copyright (C) 2000-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************
*/
package com.ibm.rbm.gui;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.JTextComponent;
import com.ibm.rbm.*;
/**
* The class used to display statistics
*/
class RBStatisticsPanel extends JPanel {
RBManager rbm;
Bundle bundle;
// Components - Bundle
JLabel jLabelStatsTitle;
JLabel jLabelStatsName;
JLabel jLabelStatsComment;
JLabel jLabelStatsManager;
JLabel jLabelStatsLanguage;
JLabel jLabelStatsCountry;
JLabel jLabelStatsVariant;
JLabel jLabelStatsNumTrans;
JLabel jLabelStatsNumUntrans;
JTextField jTextFieldStatsName;
JTextField jTextFieldStatsComment;
JTextField jTextFieldStatsManager;
JTextField jTextFieldStatsLanguage;
JTextField jTextFieldStatsCountry;
JTextField jTextFieldStatsVariant;
JButton updateButton;
Box boxStatsLeftRight1;
Box boxStatsLeftRight2;
// Components - bundle manager
JLabel titleLabel;
JLabel numFileLabel;
JLabel numDupLabel;
JLabel numGroupLabel;
JLabel numItemLabel;
JList groupList;
JList fileList;
JList dupList;
JScrollPane groupScroll;
JScrollPane dupScroll;
JScrollPane fileScroll;
JPanel filePanel;
JPanel itemPanel;
JPanel groupPanel;
JButton fileButton;
JButton groupButton;
JButton itemButton;
Box mainBox;
Box dupBox;
public void setBundle(Bundle b) {
rbm = null;
if (bundle == null) {
bundle = b;
initComponents();
} else if (bundle != b) {
bundle = b;
updateComponents();
}
}
public void setManager(RBManager m) {
bundle = null;
if (rbm == null) {
rbm = m;
initComponents();
} else if (rbm != m) {
rbm = m;
updateComponents();
}
}
public void removeElements() {
if (rbm != null || bundle != null) {
rbm = null;
bundle = null;
initComponents();
}
}
public void initComponents() {
// Initialize components
if (bundle != null) {
RBManagerGUI.debugMsg("Initializing components for Resource File");
int untranslated = bundle.getUntranslatedItemsSize();
jLabelStatsTitle = new JLabel(bundle.name);
jLabelStatsName = new JLabel(Resources.getTranslation("languagestats_title"));
jLabelStatsComment = new JLabel(Resources.getTranslation("languagestats_comment"));
jLabelStatsManager = new JLabel(Resources.getTranslation("languagestats_manager"));
jLabelStatsLanguage = new JLabel(Resources.getTranslation("languagestats_language"));
jLabelStatsCountry = new JLabel(Resources.getTranslation("languagestats_country"));
jLabelStatsVariant = new JLabel(Resources.getTranslation("languagestats_variant"));
jLabelStatsNumTrans = new JLabel(Resources.getTranslation("languagestats_item_count") + " " +
String.valueOf(bundle.allItems.size()));
jLabelStatsNumUntrans = new JLabel(Resources.getTranslation("languagestats_translation_count") +
String.valueOf(untranslated));
jTextFieldStatsName = new JTextField((bundle.name == null ? Resources.getTranslation("untitled") : bundle.name));
jTextFieldStatsComment = new JTextField((bundle.comment == null ? "" : bundle.comment));
jTextFieldStatsManager = new JTextField((bundle.manager == null ? "" : bundle.manager));
jTextFieldStatsLanguage = new JTextField((bundle.language == null ? "" : bundle.language),25);
jTextFieldStatsCountry = new JTextField((bundle.country == null ? "" : bundle.country),25);
jTextFieldStatsVariant = new JTextField((bundle.variant == null ? "" : bundle.variant),25);
boxStatsLeftRight1 = new Box(BoxLayout.X_AXIS);
boxStatsLeftRight2 = new Box(BoxLayout.X_AXIS);
updateButton = new JButton(Resources.getTranslation("button_update"));
updateButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_update_trigger")));
// Set up the components
jLabelStatsTitle.setFont(new Font("SansSerif",Font.PLAIN,18));
ButtonEnablerFocusListener befl = new ButtonEnablerFocusListener(updateButton);
// Add listeners
updateButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ev) {
updateBundleInfo();
}
});
jTextFieldStatsName.addFocusListener(befl);
jTextFieldStatsComment.addFocusListener(befl);
jTextFieldStatsManager.addFocusListener(befl);
jTextFieldStatsLanguage.addFocusListener(befl);
jTextFieldStatsCountry.addFocusListener(befl);
jTextFieldStatsVariant.addFocusListener(befl);
jTextFieldStatsName.setColumns(35);
jTextFieldStatsComment.setColumns(35);
jTextFieldStatsManager.setColumns(35);
jTextFieldStatsLanguage.setColumns(25);
jTextFieldStatsCountry.setColumns(25);
jTextFieldStatsVariant.setColumns(25);
updateButton.setEnabled(false);
// Update the display
if (mainBox != null){
mainBox.removeAll();
} else {
mainBox = new Box(BoxLayout.Y_AXIS);
}
if (dupBox != null) dupBox.removeAll();
removeAll();
mainBox.add(jLabelStatsTitle);
mainBox.add(Box.createVerticalStrut(10));
mainBox.add(jLabelStatsName);
mainBox.add(jTextFieldStatsName);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(jLabelStatsComment);
mainBox.add(jTextFieldStatsComment);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(jLabelStatsManager);
mainBox.add(jTextFieldStatsManager);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(jLabelStatsLanguage);
mainBox.add(jTextFieldStatsLanguage);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(jLabelStatsCountry);
mainBox.add(jTextFieldStatsCountry);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(jLabelStatsVariant);
mainBox.add(jTextFieldStatsVariant);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(jLabelStatsNumTrans);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(jLabelStatsNumUntrans);
mainBox.add(Box.createVerticalStrut(10));
mainBox.add(updateButton);
mainBox.add(Box.createHorizontalGlue());
if (!(getLayout() instanceof FlowLayout)) {
setLayout(new FlowLayout());
}
add(mainBox);
} else if (rbm != null) {
RBManagerGUI.debugMsg("Initializing components for Resource Bundle");
titleLabel = new JLabel(rbm.getBaseClass() + " - " + Resources.getTranslation("baseclass"));
numFileLabel = new JLabel(Resources.getTranslation("basestats_file_count") + " " + rbm.getNumberLanguages());
numGroupLabel = new JLabel(Resources.getTranslation("basestats_group_count") + " " + rbm.getNumberGroups());
numItemLabel = new JLabel(Resources.getTranslation("basestats_item_count") + " " + rbm.getNumberTotalTranslations());
numDupLabel = new JLabel(Resources.getTranslation("basestats_duplicates_count") + " " + rbm.getNumberDuplicates());
fileList = new JList(rbm.getLanguageListingVector());
groupList = new JList(rbm.getGroupListingVector());
dupList = new JList(rbm.getDuplicatesListingVector());
fileButton = new JButton(Resources.getTranslation("button_add_file"));
groupButton = new JButton(Resources.getTranslation("button_add_group"));
itemButton = new JButton(Resources.getTranslation("button_add_resource"));
filePanel = new JPanel();
groupPanel = new JPanel();
itemPanel = new JPanel();
fileScroll = new JScrollPane(fileList);
groupScroll = new JScrollPane(groupList);
dupScroll = new JScrollPane(dupList);
if (mainBox == null) {
mainBox = new Box(BoxLayout.Y_AXIS);
} else {
mainBox.removeAll();
}
dupBox = new Box(BoxLayout.Y_AXIS);
// Set up the components
filePanel.setLayout(new BorderLayout());
groupPanel.setLayout(new BorderLayout());
itemPanel.setLayout(new BorderLayout());
filePanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),
Resources.getTranslation("basestats_file_group")));
groupPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),
Resources.getTranslation("basestats_group_group")));
itemPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),
Resources.getTranslation("basestats_item_group")));
titleLabel.setFont(new Font("SansSerif",Font.PLAIN,18));
fileButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_add_file_trigger")));
groupButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_add_group_trigger")));
itemButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_add_resource_trigger")));
// Add listeners
fileButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ev) {
Container c = ((JButton)ev.getSource()).getParent();
RBManagerGUI gui = null;
while (!(c.getParent() instanceof RBManagerGUI)) c = c.getParent();
gui = (RBManagerGUI)c.getParent();
gui.createResourceFile();
}
});
groupButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ev) {
Container c = ((JButton)ev.getSource()).getParent();
RBManagerGUI gui = null;
while (!(c.getParent() instanceof RBManagerGUI)) c = c.getParent();
gui = (RBManagerGUI)c.getParent();
gui.createBundleGroup();
}
});
itemButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ev) {
Container c = ((JButton)ev.getSource()).getParent();
RBManagerGUI gui = null;
while (!(c.getParent() instanceof RBManagerGUI)) c = c.getParent();
gui = (RBManagerGUI)c.getParent();
gui.createBundleItem();
}
});
// Update the display
filePanel.removeAll();
filePanel.add(numFileLabel, BorderLayout.NORTH);
filePanel.add(fileScroll, BorderLayout.CENTER);
filePanel.add(fileButton, BorderLayout.SOUTH);
groupPanel.removeAll();
groupPanel.add(numGroupLabel, BorderLayout.NORTH);
groupPanel.add(groupScroll, BorderLayout.CENTER);
groupPanel.add(groupButton, BorderLayout.SOUTH);
dupBox.removeAll();
dupBox.add(numDupLabel);
dupBox.add(dupScroll);
itemPanel.removeAll();
itemPanel.add(numItemLabel, BorderLayout.NORTH);
itemPanel.add(dupBox, BorderLayout.CENTER);
itemPanel.add(itemButton, BorderLayout.SOUTH);
mainBox.removeAll();
mainBox.add(titleLabel);
mainBox.add(Box.createVerticalStrut(10));
mainBox.add(filePanel);
mainBox.add(Box.createVerticalStrut(10));
mainBox.add(groupPanel);
mainBox.add(Box.createVerticalStrut(10));
mainBox.add(itemPanel);
removeAll();
if (!(getLayout() instanceof BorderLayout))
setLayout(new BorderLayout());
add(mainBox, BorderLayout.CENTER);
updateComponents();
} else {
removeAll();
}
repaint();
}
public void updateComponents() {
if (bundle != null) {
int untranslated = bundle.getUntranslatedItemsSize();
jLabelStatsTitle.setText(bundle.name);
jTextFieldStatsName.setText(bundle.name == null ? Resources.getTranslation("untitled") : bundle.name);
jTextFieldStatsComment.setText(bundle.comment == null ? "" : bundle.comment);
jTextFieldStatsManager.setText(bundle.manager == null ? "" : bundle.manager);
jTextFieldStatsLanguage.setText(bundle.language == null ? "" : bundle.language);
jTextFieldStatsCountry.setText(bundle.country == null ? "" : bundle.country);
jTextFieldStatsVariant.setText(bundle.variant == null ? "" : bundle.variant);
} else if (rbm != null) {
} else {
removeAll();
}
}
void updateBundleInfo() {
bundle.name = jTextFieldStatsName.getText().trim();
bundle.comment = jTextFieldStatsComment.getText().trim();
bundle.manager = jTextFieldStatsManager.getText().trim();
bundle.language = jTextFieldStatsLanguage.getText().trim();
bundle.country = jTextFieldStatsCountry.getText().trim();
bundle.variant = jTextFieldStatsVariant.getText().trim();
updateButton.setEnabled(false);
}
public RBStatisticsPanel() {
super();
bundle = null;
rbm = null;
}
}
class ButtonEnablerFocusListener implements FocusListener {
JButton button;
String beforeText = null;
public ButtonEnablerFocusListener(JButton button) {
super();
this.button = button;
}
public void focusGained(FocusEvent ev) {
Object o = ev.getSource();
if (o instanceof JTextComponent) {
JTextComponent jtc = (JTextComponent)o;
beforeText = jtc.getText();
}
}
public void focusLost(FocusEvent ev) {
Object o = ev.getSource();
if (o instanceof JTextComponent) {
JTextComponent jtc = (JTextComponent)o;
String afterText = jtc.getText();
if (!afterText.equals(beforeText)) button.setEnabled(true);
} else button.setEnabled(true);
}
}

View file

@ -0,0 +1,252 @@
/*
*****************************************************************************
* Copyright (C) 2000-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************
*/
package com.ibm.rbm.gui;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.table.*;
import com.ibm.rbm.*;
/**
* The class used to display untranslated items
*/
class RBUntranslatedPanel extends JPanel {
RBManager rbm;
Bundle bundle;
RBManagerGUI listener;
// Components - Bundle
JLabel jLabelUntransTitle;
UntranslatedItemsTableModel untransTableModel;
JTable jTableUntrans;
JScrollPane jScrollPaneUntransTable;
// Components - Bundle Manager
Box mainBox;
JPanel mainPanels[];
JLabel numUntransLabels[];
JScrollPane mainScroll;
JScrollPane listScrolls[];
JList untransLists[];
public RBUntranslatedPanel(RBManagerGUI gui) {
super();
listener = gui;
}
public void setBundle(Bundle b) {
rbm = null;
if (bundle == null) {
bundle = b;
initComponents();
} else if (bundle != b) {
bundle = b;
updateComponents();
}
}
public void setManager(RBManager m) {
bundle = null;
if (rbm == null) {
rbm = m;
initComponents();
} else if (rbm != m) {
rbm = m;
updateComponents();
}
}
public void removeElements() {
if (rbm != null || bundle != null) {
rbm = null;
bundle = null;
initComponents();
}
}
// Marks the selected resource as translated and removes from this view
private void markSelectedResourceAsTranslated() {
if (bundle == null) return;
if (jTableUntrans.getSelectedRow() < 0) return;
if (jTableUntrans.getModel() instanceof UntranslatedItemsTableModel) {
int row = jTableUntrans.getSelectedRow();
UntranslatedItemsTableModel model = (UntranslatedItemsTableModel)jTableUntrans.getModel();
BundleItem item = model.getBundleItem(row);
item.setTranslated(true);
model.update();
}
}
// Removes the selected resource from the resource file
private void deleteSelectedResource() {
if (bundle == null) return;
if (jTableUntrans.getSelectedRow() < 0) return;
if (jTableUntrans.getModel() instanceof UntranslatedItemsTableModel) {
int row = jTableUntrans.getSelectedRow();
UntranslatedItemsTableModel model = (UntranslatedItemsTableModel)jTableUntrans.getModel();
BundleItem item = model.getBundleItem(row);
if (item.getParentGroup() != null && item.getParentGroup().getParentBundle() != null) {
Bundle bundle = item.getParentGroup().getParentBundle();
bundle.removeItem(item.getKey());
}
model.update();
}
}
private void printTable() {
PrintJob pjob = getToolkit().getPrintJob(new Frame(),
"Printing Test", null);
if (pjob != null) {
Graphics pg = pjob.getGraphics();
if (pg != null) {
//jTableUntrans.print(pg);
Dimension page_dim = pjob.getPageDimension();
pg.setColor(Color.black);
int y_off = 50;
int x_off = 30;
TableModel model = jTableUntrans.getModel();
pg.setFont(new Font("SansSerif", Font.BOLD, 14));
pg.drawString("Untranslated Items: Page 1", x_off, y_off);
pg.setFont(new Font("SansSerif", Font.PLAIN, 10));
for (int i=0 ; i < model.getRowCount(); i++) {
if (y_off < page_dim.height - 50) {
y_off += 15;
String key = model.getValueAt(i, 0).toString();
String translation = model.getValueAt(i,1).toString();
pg.drawString(key + " -> " + translation, x_off, y_off);
}
}
pg.dispose(); // flush page
}
pjob.end();
}
}
public void initComponents() {
// Initialize components
if (bundle != null) {
jLabelUntransTitle = new JLabel(bundle.name);
untransTableModel = new UntranslatedItemsTableModel(bundle);
jTableUntrans = new JTable(untransTableModel);
jScrollPaneUntransTable = new JScrollPane(jTableUntrans);
// Lower panel components
JPanel lowerPanel = new JPanel();
JButton deleteButton = new JButton(Resources.getTranslation("button_delete_resource"));
JButton translateButton = new JButton(Resources.getTranslation("button_mark_translated"));
JButton printButton = new JButton(Resources.getTranslation("button_print_table"));
deleteButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_delete_resource_trigger")));
translateButton.setMnemonic(RBManagerMenuBar.getKeyEventKey(Resources.getTranslation("button_mark_translated_trigger")));
lowerPanel.setBorder(BorderFactory.createTitledBorder(Resources.getTranslation("languageuntrans_selected_resources_options")));
lowerPanel.setLayout(new GridLayout(1,2));
jTableUntrans.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
jTableUntrans.addMouseListener(listener);
jLabelUntransTitle.setFont(new Font("SansSerif",Font.PLAIN,18));
// Add action listeners
deleteButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
deleteSelectedResource();
}
});
translateButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
markSelectedResourceAsTranslated();
}
});
printButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
printTable();
}
});
removeAll();
setLayout(new BorderLayout());
lowerPanel.add(deleteButton);
lowerPanel.add(translateButton);
//lowerPanel.add(printButton);
add(jLabelUntransTitle, BorderLayout.NORTH);
add(jScrollPaneUntransTable, BorderLayout.CENTER);
add(lowerPanel, BorderLayout.SOUTH);
} else if (rbm != null) {
int langCount = 0; // The number of languages with untranslated Items
for (int i=0; i < rbm.getBundles().size(); i++) {
Bundle bundle = (Bundle)rbm.getBundles().elementAt(i);
if (bundle.getUntranslatedItemsSize() > 0) langCount++;
}
// Initialize the components
mainPanels = new JPanel[langCount];
numUntransLabels = new JLabel[langCount];
listScrolls = new JScrollPane[langCount];
untransLists = new JList[langCount];
mainBox = new Box(BoxLayout.Y_AXIS);
mainScroll = new JScrollPane(mainBox);
jLabelUntransTitle = new JLabel(rbm.getBaseClass() + " - " + Resources.getTranslation("untranslated_items"));
// Set component properties
jLabelUntransTitle.setFont(new Font("SansSerif",Font.PLAIN,18));
mainBox.add(jLabelUntransTitle);
int count = 0;
for (int i=0; i < rbm.getBundles().size(); i++) {
Bundle bundle = (Bundle)rbm.getBundles().elementAt(i);
if (bundle.getUntranslatedItemsSize() > 0) {
mainPanels[count] = new JPanel();
mainPanels[count].setLayout(new BorderLayout());
numUntransLabels[count] = new JLabel(Resources.getTranslation("baseuntrans_untrans_count") +
bundle.getUntranslatedItemsSize());
// TODO: Implement a List Model for this list, remove use of vector
untransLists[count] = new JList(bundle.getUntranslatedItemsAsVector());
listScrolls[count] = new JScrollPane(untransLists[count]);
mainPanels[count].setBorder(BorderFactory.createTitledBorder(
BorderFactory.createEtchedBorder(),
Resources.getTranslation("baseuntrans_file") + " " + bundle.toString()));
mainPanels[count].removeAll();
mainPanels[count].add(numUntransLabels[count], BorderLayout.NORTH);
mainPanels[count].add(listScrolls[count], BorderLayout.CENTER);
mainBox.add(Box.createVerticalStrut(5));
mainBox.add(mainPanels[count]);
count++;
}
}
mainScroll.setPreferredSize(getSize());
removeAll();
add(mainScroll);
} else {
removeAll();
}
}
public void updateComponents() {
// Update components
if (bundle != null) {
jLabelUntransTitle.setText(bundle.name);
untransTableModel.setBundle(bundle);
} else if (rbm != null) {
initComponents();
} else {
removeAll();
}
}
}

View file

@ -0,0 +1,206 @@
/*
*****************************************************************************
* Copyright (C) 2000-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*****************************************************************************
*/
package com.ibm.rbm.gui;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import com.ibm.rbm.*;
/**
* A dialog for creating new Resource Files
*/
class ResourceCreationDialog extends JDialog {
RBManager rbm;
RBManagerGUI gui;
// Components
Box mainBox = new Box(BoxLayout.Y_AXIS);
Box infoBox = new Box(BoxLayout.Y_AXIS);
JPanel infoPanel = new JPanel();
JPanel infoTitlePanel = new JPanel();
JPanel infoCommentPanel = new JPanel();
JPanel infoManagerPanel = new JPanel();
JPanel langPanel = new JPanel();
JPanel counPanel = new JPanel();
JPanel variPanel = new JPanel();
JPanel buttPanel = new JPanel();
JLabel instructionsLabel = new JLabel("");
JLabel titleLabel = new JLabel(Resources.getTranslation("dialog_file_title"));
JLabel commentLabel = new JLabel(Resources.getTranslation("dialog_file_comment"));
JLabel managerLabel = new JLabel(Resources.getTranslation("dialog_file_manager"));
JLabel enc1Label = new JLabel(Resources.getTranslation("dialog_encoding"));
JLabel enc2Label = new JLabel(Resources.getTranslation("dialog_encoding"));
JLabel enc3Label = new JLabel(Resources.getTranslation("dialog_encoding"));
JLabel nam1Label = new JLabel(Resources.getTranslation("dialog_name"));
JLabel nam2Label = new JLabel(Resources.getTranslation("dialog_name"));
JLabel nam3Label = new JLabel(Resources.getTranslation("dialog_name"));
JTextField titleField = new JTextField("");
JTextField commentField = new JTextField("");
JTextField managerField = new JTextField("");
JTextField enc1Field = new JTextField("");
JTextField enc2Field = new JTextField("");
JTextField enc3Field = new JTextField("");
JTextField nam1Field = new JTextField("");
JTextField nam2Field = new JTextField("");
JTextField nam3Field = new JTextField("");
JCheckBox copyCheckBox = new JCheckBox(Resources.getTranslation("dialog_checkbox_copy_elements"), true);
JButton createButton = new JButton(Resources.getTranslation("button_create"));
JButton cancelButton = new JButton(Resources.getTranslation("button_cancel"));
public ResourceCreationDialog(RBManager rbm, JFrame frame, String title, boolean modal) {
super(frame, title, modal);
this.gui = (RBManagerGUI)frame;
this.rbm = rbm;
initComponents();
enableEvents(AWTEvent.KEY_EVENT_MASK);
}
protected void processKeyEvent(KeyEvent ev) {
if (ev.getKeyCode() == KeyEvent.VK_ENTER) {
boolean success = createResource();
if (!success) {
String alert = Resources.getTranslation("error_create_file") + " " +
Resources.getTranslation("error_try_again_file");
JOptionPane.showMessageDialog(this, alert, Resources.getTranslation("error"), JOptionPane.ERROR_MESSAGE);
} else {
setVisible(false);
dispose();
}
} else if (ev.getKeyCode() == KeyEvent.VK_CANCEL) {
closeWindow();
}
}
boolean createResource() {
if (rbm == null) return false;
String encoding = enc1Field.getText().trim();
String enc2 = enc2Field.getText().trim();
if (enc2 != null && !enc2.equals("")) encoding += "_" + enc2;
String enc3 = enc3Field.getText().trim();
if (enc3 != null && !enc3.equals("")) encoding += "_" + enc3;
boolean ret = rbm.createResource(titleField.getText().trim(), commentField.getText().trim(), managerField.getText().trim(),
encoding, nam1Field.getText().trim(), nam2Field.getText().trim(),
nam3Field.getText().trim(), copyCheckBox.isSelected());
if (ret) {
gui.updateDisplayTree();
gui.updateProjectTree();
gui.updateProjectPanels();
}
return ret;
}
public void initComponents(){
// Error check
if (rbm == null) {
String alert = Resources.getTranslation("error_no_bundle_for_file");
JOptionPane.showMessageDialog(this, alert, Resources.getTranslation("error"), JOptionPane.ERROR_MESSAGE);
closeWindow();
return;
}
// Initialize values
int tempWidth = 175;
Dimension labelDim = new Dimension(tempWidth, 30);
titleLabel.setPreferredSize(labelDim);
commentLabel.setPreferredSize(labelDim);
managerLabel.setPreferredSize(labelDim);
infoPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),
Resources.getTranslation("dialog_file_info")));
langPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),
Resources.getTranslation("dialog_language")));
counPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),
Resources.getTranslation("dialog_country")));
variPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(),
Resources.getTranslation("dialog_variant")));
Dimension encDim = new Dimension(50,20);
Dimension namDim = new Dimension(350,20);
Dimension othDim = new Dimension(400,20);
titleField.setColumns(30);
commentField.setColumns(30);
managerField.setColumns(30);
enc1Field.setColumns(3);
enc2Field.setColumns(3);
enc3Field.setColumns(3);
nam1Field.setColumns(20);
nam2Field.setColumns(20);
nam3Field.setColumns(20);
// Set up the components
infoTitlePanel.add(titleLabel); infoTitlePanel.add(titleField);
infoCommentPanel.add(commentLabel); infoCommentPanel.add(commentField);
infoManagerPanel.add(managerLabel); infoManagerPanel.add(managerField);
infoBox.add(infoTitlePanel);
infoBox.add(infoCommentPanel);
infoBox.add(infoManagerPanel);
infoPanel.add(infoBox);
langPanel.add(enc1Label); langPanel.add(enc1Field); langPanel.add(nam1Label); langPanel.add(nam1Field);
counPanel.add(enc2Label); counPanel.add(enc2Field); counPanel.add(nam2Label); counPanel.add(nam2Field);
variPanel.add(enc3Label); variPanel.add(enc3Field); variPanel.add(nam3Label); variPanel.add(nam3Field);
buttPanel.add(createButton); buttPanel.add(cancelButton);
// Add the appropriate listeners
cancelButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
JDialog dialog = (JDialog)((JButton)ev.getSource()).getParent().getParent().getParent().getParent().getParent().getParent();
dialog.setVisible(false);
dialog.dispose();
}
});
createButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ev) {
ResourceCreationDialog dialog =
(ResourceCreationDialog)((JButton)ev.getSource()).getParent().getParent().getParent().getParent().getParent().getParent();
boolean success = dialog.createResource();
if (!success) {
String alert = Resources.getTranslation("error_create_file") + " " +
Resources.getTranslation("error_try_again_file");
JOptionPane.showMessageDialog(dialog, alert, Resources.getTranslation("error"), JOptionPane.ERROR_MESSAGE);
} else {
dialog.setVisible(false);
dialog.dispose();
}
}
});
// Complete the component layout
mainBox.removeAll();
//mainBox.add(instructionsLabel);
mainBox.add(infoPanel);
mainBox.add(langPanel);
mainBox.add(counPanel);
mainBox.add(variPanel);
mainBox.add(copyCheckBox);
mainBox.add(buttPanel);
setLocation(new java.awt.Point(50, 50));
getContentPane().add(mainBox, BorderLayout.CENTER);
validateTree();
pack();
setVisible(true);
//setResizable(false);
}
void closeWindow() {
setVisible(false);
dispose();
}
}

View file

@ -1,9 +1,9 @@
Manifest-Version: 1.0
Specification-Title: Resource Bundle Manager
Specification-Version: 0.6
Specification-Version: 0.7
Specification-Vendor: IBM Corporation
Implementation-Title: Resource Bundle Manager
Implementation-Version: 0.6
Implementation-Version: 0.7
Implementation-Vendor: IBM Corporation
Implementation-Vendor-Id: com.ibm
Main-Class: com.ibm.rbm.RBManager

View file

@ -12,23 +12,6 @@
#
# @groupComment Reources concerning the licensing and enablement of the application
# @translated true @created 2001-06-29 @modified 2001-06-29 @creator Unknown @modifier Unknown
# @comment Title for a dialog box that appears to inform the user that the application has been deactivated
activation_error=RBManager\ Deactivated
# @translated true @created 2001-06-29 @modified 2001-06-29 @creator Unknown @modifier Unknown
# @comment Message to the user that their version of RBManager has been disabled and will no longer work.
activation_invalid=Sorry,\ this\ version\ of\ RBManager\ available\ through\ alphaWorks\nwas\ designed\ not\ to\ work\ after\ a\ certain\ amount\ of\ time.\ Please\nupdate\ your\ version\ of\ the\ application\ at\ www.alphaworks.ibm.com.
# @translated true @created 2001-06-29 @modified 2001-06-29 @creator Unknown @modifier Unknown
# @{0} Number of days left until the license runs out
# @comment Warning message sent out to users of RBManager when their alphaWorks license is running out
activation_over_soon=This\ version\ of\ RBManager\ has\ been\ provided\ through\ IBM's\nalphaWorks.\ Your\ license\ for\ this\ techonolgy\ will\ expire\ in\n{0}\ days.\ Please\ download\ update\ your\ copy\ by\ downloading\nthe\ latest\ version\ at\ www.alphaworks.ibm.com.
# @translated true @created 2001-06-29 @modified 2001-06-29 @creator Unknown @modifier Unknown
# @{0} Number of days passed activation
# @comment Warning message that the license for the product has expired.
activation_passed=This\ version\ of\ RBManager\ has\ been\ provided\ through\ IBM's\nalphaWorks\ and\ is\ only\ licensed\ for\ 90\ days.\ You\ have\ now\nbeen\ using\ the\ application\ for\ {0}\ days\ beyond\ that\ period.\nPlease\ download\ a\ new\ version\ at\ www.alphaworks.ibm.com.\nRBManager\ will\ eventually\ cease\ to\ function.
# @translated true @created 2001-06-29 @modified 2001-06-29 @creator Unknown @modifier Unknown
# @comment Dialog title for a warning to the user that their acitvation time has either elapsed or is drawing close
activation_warning=License\ Warning
#
# @group Base Class Groups Pane
@ -581,9 +564,9 @@ export_java_title=Please\ specify\ the\ following\ parameters\ for\ your\ Java\
# @translated true @created 2000-11-10 @modified 2000-10-26 @creator Jared @modifier Jared
# @comment The file or class composed of the default translations for the bundle
baseclass=Base\ Class
# @translated true @created 2000-11-10 @modified 2000-11-06 @creator Jared @modifier Jared
# @translated true @created 2000-11-10 @modified 2004-06-29 @creator Jared @modifier George
# @comment This is the legal copyright notice
copyright=(C)\ Copyright\ IBM\ Corp.\ 2000\ -\ All\ Rights\ Reserved
copyright=(C)\ Copyright\ IBM\ Corp.\ 2000-2004\ -\ All\ Rights\ Reserved
# @translated true @created 2001-02-06 @modified 2001-02-06 @creator Jared Jackson @modifier Jared Jackson
# @comment Gerneral use for file directories
directory=Directory
@ -614,9 +597,9 @@ project_table_resource_bundle=Resource\ Bundle
# @translated true @created 2000-11-10 @modified 2000-10-26 @creator Jared @modifier Jared
# @comment An abbreviated name of this application
rbmanager=RBManager
# @translated true @created 2000-11-10 @modified 2000-11-06 @creator Jared @modifier Jared
# @translated true @created 2000-11-10 @modified 2004-06-29 @creator Jared @modifier George
# @comment
rbmanager_contact=Author\:\ Jared\ Jackson\ -\ jjared@almaden.ibm.com
rbmanager_contact=Authors\:\ Jared\ Jackson\ &\ George\ Rhoten
# @translated true @created 2000-11-10 @modified 2000-10-26 @creator Jared @modifier Jared
# @comment The full name of this application
resource_bundle_manager=Resource\ Bundle\ Manager

View file

@ -581,9 +581,9 @@ export_java_title=Bitte\ geben\ Sie\ die\ folgenden\ Parameter\ fuer\ die\ Java-
# @translated true @created 2000-11-10 @modified 2000-11-08 @creator Jared @modifier Martin Gerlach
# @comment The file or class composed of the default translations for the bundle
baseclass=Basisklasse
# @translated true @created 2000-11-10 @modified 2000-11-08 @creator Jared @modifier Martin Gerlach
# @translated true @created 2000-11-10 @modified 2004-06-29 @creator Jared @modifier George
# @comment This is the legal copyright notice
copyright=(C)\ Copyright\ IBM\ Corp.\ 2000\ -\ Alle\ Rechte\ vorbehalten
copyright=(C)\ Copyright\ IBM\ Corp.\ 2000-2004\ -\ Alle\ Rechte\ vorbehalten
# @translated true @created 2001-02-06 @modified 2001-02-09 @creator Jared Jackson @modifier Jared Jackson
# @comment Gerneral use for file directories
directory=Verzeichnis
@ -614,9 +614,9 @@ project_table_resource_bundle=Resource\ Bundle
# @translated true @created 2000-11-10 @modified 2000-11-08 @creator Jared @modifier Martin Gerlach
# @comment An abbreviated name of this application
rbmanager=RBManager
# @translated true @created 2000-11-10 @modified 2000-11-08 @creator Jared @modifier Martin Gerlach
# @translated true @created 2000-11-10 @modified 2004-06-29 @creator Jared @modifier George
# @comment
rbmanager_contact=Autor\:\ Jared\ Jackson\ -\ jjared@almaden.ibm.com
rbmanager_contact=Autor\:\ Jared\ Jackson\ &\ George\ Rhoten
# @translated true @created 2000-11-10 @modified 2000-11-08 @creator Jared @modifier Martin Gerlach
# @comment The full name of this application
resource_bundle_manager=Resource\ Bundle\ Manager

View file

@ -584,9 +584,9 @@ export_java_title=Anna\ seuraavat\ parametrit\ Java-luokalle\:
# @translated true @created 2001-12-17 @modified 2000-11-09 @creator Jared @modifier Jussi Myllymäki
# @comment The file or class composed of the default translations for the bundle
baseclass=Base\ Class
# @translated true @created 2001-12-17 @modified 2000-11-08 @creator Jared @modifier Jussi Myllymäki
# @translated true @created 2001-12-17 @modified 2004-06-29 @creator Jared @modifier George
# @comment This is the legal copyright notice
copyright=(C)\ Copyright\ IBM\ Corp.\ 2000\ -\ Kaikki\ oikeudet\ pid\u00E4tetty
copyright=(C)\ Copyright\ IBM\ Corp.\ 2000-2004\ -\ Kaikki\ oikeudet\ pid\u00E4tetty
# @translated true @created 2001-12-17 @modified 2001-02-08 @creator Jared Jackson @modifier Jared Jackson
# @comment Gerneral use for file directories
directory=Hakemisto
@ -617,9 +617,9 @@ project_table_resource_bundle=Resurssikokoelma
# @translated true @created 2001-12-17 @modified 2000-11-09 @creator Jared @modifier Jussi Myllymäki
# @comment An abbreviated name of this application
rbmanager=RBManager
# @translated true @created 2001-12-17 @modified 2000-11-09 @creator Jared @modifier Jussi Myllymäki
# @translated true @created 2001-12-17 @modified 2004-06-29 @creator Jared @modifier George
# @comment
rbmanager_contact=Tekij\u00E4\:\ Jared\ Jackson\ -\ jjared@almaden.ibm.com
rbmanager_contact=Tekij\u00E4\:\ Jared\ Jackson\ &\ George\ Rhoten
# @translated true @created 2001-12-17 @modified 2000-11-09 @creator Jared @modifier Jussi Myllymäki
# @comment The full name of this application
resource_bundle_manager=Resurssimanageri

View file

@ -584,9 +584,9 @@ export_java_title=Var\ god\ specificera\ f\u00F6ljande\ parametrar\ f\u00F6r\ di
# @translated true @created 2000-11-10 @modified 2000-11-08 @creator Jared @modifier Stefan Edlund
# @comment The file or class composed of the default translations for the bundle
baseclass=Basklass
# @translated true @created 2000-11-10 @modified 2000-11-08 @creator Jared @modifier Stefan Edlund
# @translated true @created 2000-11-10 @modified 2004-06-29 @creator Jared @modifier George
# @comment This is the legal copyright notice
copyright=(C)\ Kopieringsskyddad\ IBM\ Corp.\ 2000\ -\ Alla\ rattigheter\ reserverade
copyright=(C)\ Kopieringsskyddad\ IBM\ Corp.\ 2000-2004\ -\ Alla\ rattigheter\ reserverade
# @translated true @created 2001-02-06 @modified 2001-02-19 @creator Jared Jackson @modifier Jared Jackson
# @comment Gerneral use for file directories
directory=Folder
@ -617,9 +617,9 @@ project_table_resource_bundle=Resource\ Bundle
# @translated true @created 2000-11-10 @modified 2000-11-10 @creator Jared @modifier Jared Jackson
# @comment An abbreviated name of this application
rbmanager=RBManager
# @translated true @created 2000-11-10 @modified 2000-11-08 @creator Jared @modifier Stefan Edlund
# @translated true @created 2000-11-10 @modified 2004-06-29 @creator Jared @modifier George
# @comment
rbmanager_contact=Skapare\:\ Jared\ Jackson\ -\ jjared@almaden.ibm.com
rbmanager_contact=Skapare\:\ Jared\ Jackson\ &\ George\ Rhoten
# @translated true @created 2000-11-10 @modified 2000-11-08 @creator Jared @modifier Stefan Edlund
# @comment The full name of this application
resource_bundle_manager=Resursgrupp\ Agare