Tagged Questions
0
votes
0answers
128 views
Is it possible to create a Custom FileDialog in SWT/RCP
The existing FileDialog opens once we call the FileDialog constructor is -
Now I want to customize the same.
For example I want to add a new Button after Cancel named "Append".
Can it be possible in ...
0
votes
2answers
162 views
How can I give file extentions list using FileDialog?
I can give extentions for file using JFileChooser.
Example:
JFileChooser chooser = new JFileChooser();
FileNameExtensionFilter filter = new FileNameExtensionFilter(
"JPG & GIF Images", "jpg", ...
4
votes
3answers
558 views
improving JFileChooser under Ubuntu 12.04 (GTK)
I got a problem with the JFileChooser under Ubuntu 12.04.
It looks like on this screenshot: http://www.picfront.org/d/8ExK
Its very uncomfortable to use and it looks very ugly.
I would like to got ...
0
votes
1answer
1k views
JFileChooser vs JDialog vs FileDialog
I need to know which of the 3 is best for me. My requirements are as follows in order of importance:
Save and load files with ease.
File type filter during file selection (not afterwards).
Look and ...