jnafilechooser
jnafilechooser copied to clipboard
A Java file chooser API that uses the Windows native dialogs if possible.
It would be nice to support selection of multiple files. This is a little tricky to implement since it requires callbacks. https://github.com/steos/jnafilechooser/blob/2ab5a35db1b32e14b236b71bd5922905e43d58c6/api/src/main/java/jnafilechooser/api/JnaFileChooser.java#L127 Relevant msdn links: - GetOpenFileName: http://msdn.microsoft.com/en-us/library/ms646927.aspx - OFNHookProc:...
Hi! Since v1.0, multiple improvements and fixes were merged into the master branch. Is it possible to release a new version (v1.1?) with those changes? Thanks!
Just wondering, is there a way of setting the initial directory when opening the dialog chooser? as it always opens c:/users/ by default. I didn't see any method for it...
Thanks for creating this! I was always annoyed by the different looking Java implementations of file choosers. Is there any chance that other operating systems could also be supported?
Hi, and thanks for the cool lib! I noticed that when you drag around the native dialog, the underlying window isn't repainted. Is there anything specific needs to be done...
Since Windows Vista, Microsoft has a new API that replaces the API jnafilechooser is currently using. The new API, called "Common Item Dialog" has several important improvements, most importantly, it's...
Supports #16 Hi, thanks for creating this project, I found it very helpful for use on Windows. I thought it would be a good idea to also extend the functionality...