com.io7m.laurel.gui.internal.LFileChoosers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.io7m.laurel.gui Show documentation
Show all versions of com.io7m.laurel.gui Show documentation
Image caption management (GUI)
The newest version!
/*
* Copyright © 2024 Mark Raynsford https://www.io7m.com
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
package com.io7m.laurel.gui.internal;
import com.io7m.jwheatsheaf.api.JWFileChooserConfiguration;
import com.io7m.jwheatsheaf.api.JWFileChooserFilterType;
import com.io7m.jwheatsheaf.api.JWFileChooserType;
import com.io7m.jwheatsheaf.api.JWFileChoosersType;
import com.io7m.jwheatsheaf.oxygen.JWOxygenIconSet;
import com.io7m.jwheatsheaf.ui.JWFileChoosers;
import com.io7m.repetoir.core.RPServiceDirectoryType;
import java.io.IOException;
import java.net.MalformedURLException;
import java.nio.file.Path;
import java.util.Locale;
import java.util.Objects;
import java.util.concurrent.Executors;
/**
* The file chooser service.
*/
public final class LFileChoosers implements LFileChoosersType
{
private static final JWOxygenIconSet OXYGEN_ICON_SET =
new JWOxygenIconSet();
private final JWFileChoosersType choosers;
private final LPreferencesType preferences;
private Path mostRecentDirectory;
/**
* The file chooser service.
*
* @param services The service directory
*/
public LFileChoosers(
final RPServiceDirectoryType services)
{
this.choosers =
JWFileChoosers.createWith(
Executors.newVirtualThreadPerTaskExecutor(),
Locale.getDefault()
);
this.preferences =
services.requireService(LPreferencesType.class);
}
@Override
public JWFileChooserType create(
final JWFileChooserConfiguration configuration)
{
final var builder =
JWFileChooserConfiguration.builder()
.from(configuration)
.addAllRecentFiles(
this.preferences.recentFiles()
.stream()
.sorted()
.toList())
.setFileImageSet(OXYGEN_ICON_SET);
if (this.mostRecentDirectory != null) {
builder.setInitialDirectory(this.mostRecentDirectory);
}
try {
builder.setCssStylesheet(LCSS.defaultCSS().toURL());
} catch (final MalformedURLException e) {
throw new IllegalStateException(e);
}
return this.choosers.create(builder.build());
}
@Override
public JWFileChooserFilterType filterForAllFiles()
{
return this.choosers.filterForAllFiles();
}
@Override
public JWFileChooserFilterType filterForOnlyDirectories()
{
return this.choosers.filterForOnlyDirectories();
}
@Override
public String description()
{
return "File chooser service.";
}
@Override
public void close()
throws IOException
{
this.choosers.close();
}
@Override
public String toString()
{
return String.format(
"[%s 0x%08x]",
this.getClass().getName(),
Integer.valueOf(this.hashCode())
);
}
@Override
public void setMostRecentDirectory(
final Path file)
{
this.mostRecentDirectory = Objects.requireNonNull(file, "file");
}
}