-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.4.0
-
generic
-
generic
Name: jbT81659 Date: 11/15/2001
OS: All RTL (Localized) Enabled platforms
JDK: jdk1.4.0-b83
Test case: jFileChooser_RTL.java
The JFileChooser with SetComponentOrientation set explicitly to RTL
displays bidi file names using implicit bidi algorithm orientation.
This results in colons (:) displayed on the left of drive letters instead
of on the right and the "on" word prefix with the "-" to be affixed to the
wrong word. See screen capture gif at http://www.tkos.co.il/sun/gifs/jFileChooser_RTL_winXP_iw_IL.png
--------Code--------------
/*
Copyright (c) Sun Microsystems 1998
$Header: /home-bazelet/sun/src/javaLab/JDK1.4/ComponentOrientation/setComponentOrientation/RTL/jFileChooser_RTL.java,v 1.1 2001/11/07 08:20:56 isam Exp $
*/
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
public class jFileChooser_RTL extends JApplet
{
public void init()
{
jFileChooser1 sfc = new jFileChooser1();
sfc.setVisible(true);
}
public static void main(String[] argv)
{
jFileChooser1 sfc = new jFileChooser1();
sfc.setVisible(true);
}
}
class jFileChooser1 extends JFrame
{
JFrame parent;
public jFileChooser1()
{
super("\u0645\u062b\u0627\u0644");
setSize(350, 200);
parent = this;
parent.addWindowListener( new WindowAdapter()
{
public void windowClosing( WindowEvent e)
{
System.exit(0);
}
});
Container c = getContentPane();
UIManager.getDefaults().put("Button.font",new Font("Lucida Sans Regular", Font.PLAIN, 16));
UIManager.put("FileChooser.lookInLabelText", "\u05d8\u05e2\u05df: ");
UIManager.put("FileChooser.openButtonText", "\u0641\u062a\u062d: ");
UIManager.put("FileChooser.cancelButtonText", "\u0625\u0644\u063a\u0627\u0621: ");
UIManager.put("FileChooser.saveButtonText", "\u062d\u0642\u0638:");
UIManager.put("FileChooser.filesOfTypeLabelText", "\u0646\u0648\u0639\u064a\u0629\u0020\u0627\u0644\u0645\u0644\u0641: ");
UIManager.put("FileChooser.fileNameLabelText", "\u0625\u0633\u0645\u0020\u0627\u0644\u0645\u0644\u0641: ");
c.setLayout(new GridLayout(3,1));
JButton openButton = new JButton("\u05d8\u05e2\u05df");
JButton saveButton = new JButton("\u05d0\u05d7\u05e1\u05df");
JButton dirButton = new JButton("\u0625\u062e\u062a\u0627\u0631");
final JLabel statusbar =
new JLabel("\u0645\u062b\u0627\u0644\u0020\u05d3\u05d2\u05de\u05d4 JFileChooser");
statusbar.setFont(new Font("Lucida Sans Regular", Font.PLAIN, 18));
openButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
JFileChooser chooser = new JFileChooser();
chooser.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
int option = chooser.showOpenDialog(parent);
if (option == JFileChooser.APPROVE_OPTION)
{
statusbar.setText("You chose " +
((chooser.getSelectedFile()!=null)?
chooser.getSelectedFile().getName():
"nothing"));
}
else
{
// statusbar.setText("You canceled.");
}
}
});
saveButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
JFileChooser chooser = new JFileChooser();
chooser.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
int option = chooser.showSaveDialog(parent);
if (option == JFileChooser.APPROVE_OPTION)
{
statusbar.setText("You saved " +
((chooser.getSelectedFile()!=null)?
chooser.getSelectedFile().getName():
"nothing"));
}
else
{
statusbar.setText("You canceled.");
}
}
});
dirButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
JFileChooser chooser = new JFileChooser();
chooser.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int option = chooser.showOpenDialog(parent);
if (option == JFileChooser.APPROVE_OPTION)
{
statusbar.setText("You opened " +
((chooser.getSelectedFile()!=null)?
chooser.getSelectedFile().getName():
"nothing"));
}
else
{
statusbar.setText("You canceled.");
}
}
});
openButton.setFont(new Font("Lucida Sans Regular", Font.PLAIN, 18));
saveButton.setFont(new Font("Lucida Sans Regular", Font.PLAIN, 18));
dirButton.setFont(new Font("Lucida Sans Regular", Font.PLAIN, 18));
c.add(openButton);
c.add(saveButton);
c.add(dirButton);
//c.add(statusbar);
}
}
--------------------------
======================================================================
- duplicates
-
JDK-4501166 Win32: JFileChooser doesn't display drives/volumes correctly in RtoL
-
- Open
-