Change file open di...
 
Share:
Notifications
Clear all

2023-04-17: APP 2.0.0-beta17 has been released !

RAW support for camera color matrix with Bayer Drizzle integration, fixed couple of image viewer issues.

 

We are very close now to  releasing APP 2.0.0 stable with a complete printable manual...

 

Astro Pixel Processor Windows 64-bit

Astro Pixel Processor macOS Intel 64-bit

Astro Pixel Processor macOS Apple M Silicon 64-bit

Astro Pixel Processor Linux DEB 64-bit

Astro Pixel Processor Linux RPM 64-bit

Change file open dialog and remember working directory in startup dialog

5 Posts
3 Users
2 Likes
314 Views
(@markusd112)
White Dwarf
Joined: 2 years ago
Posts: 8
Topic starter  

Hi,

I am using APP on windows. The own (non windows standard) file open dialog used in APP is a little bit difficult to use:

  • no "favorites" available, stored in Windows Explorer
  • any little movement of the mouse during double click won't activate the double click action (in windows file dialog this is no problem), instead nothing happens

So my feature request is to replace the app own dialog box with the windows standard dialog to enabling the use of all the windows file explorer features.

The second thing is the start dialog box of APP for choosing the working directory: APP doesn't remember the working directory of the previous session, so you have to start over from scratch each time you start APP to find the desired directory. I am using a network drive on my NAS with some deep directory hierarchy, so it is a little bit annoying going into the right directory again and again...

It would help if APP offers the old directory of the previous session as a starting point.

Thanks,

Markus

This topic was modified 1 year ago by markusd112

   
ReplyQuote
Topic Tags
(@wvreeven)
Quasar
Joined: 5 years ago
Posts: 2106
 

@markusd112 Thank you for the feedback.

Posted by: @markusd112

So my feature request is to replace to app own dialogue box with the windows standard dialogue enabling to use all the windows file explorer features.

To my best of knowledge, Java (the language in which APP is developed) doesn't provide such a functionality.

Posted by: @markusd112

It would help if APP offers the old directory of the previous sessen as a starting point.

This and saving other user settings will be part of the next major release which currently is in preparation.


   
markusd112 reacted
ReplyQuote
(@turtlecat1000)
Red Giant
Joined: 2 years ago
Posts: 63
 

This is for swing and may not be part of the OpenJDK but this might help:

 

try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception ex) {
    ex.printStackTrace();
}
JFileChooser jfc = new JFileChooser();
jfc.showOpenDialog(null);

   
markusd112 reacted
ReplyQuote
(@wvreeven)
Quasar
Joined: 5 years ago
Posts: 2106
 

@turtlecat1000 Thanks for your input. However, this is the look and feel. That doesn't mean that all the windows explorer features are used, does it?


   
ReplyQuote
(@turtlecat1000)
Red Giant
Joined: 2 years ago
Posts: 63
 
Posted by: @wvreeven

@turtlecat1000 Thanks for your input. However, this is the look and feel. That doesn't mean that all the windows explorer features are used, does it?

No, not all the features as I understand it. But I think the similarity of the native OS would be a good middle ground.


   
ReplyQuote
Share: