com.io7m.laurel.gui.internal.LMetadataEditors 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 © 2023 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.laurel.model.LMetadataValue;
import com.io7m.repetoir.core.RPServiceType;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.Pane;
import javafx.stage.Stage;
import java.io.IOException;
import java.io.UncheckedIOException;
import java.util.Objects;
import static javafx.stage.Modality.APPLICATION_MODAL;
/**
* A service for creating metadata editors.
*/
public final class LMetadataEditors implements RPServiceType
{
private final LStrings strings;
/**
* A service for creating metadata editors.
*
* @param inStrings The string resources
*/
public LMetadataEditors(
final LStrings inStrings)
{
this.strings =
Objects.requireNonNull(inStrings, "inStrings");
}
/**
* Open an editor.
*
* @param metadata The metadata
*
* @return The editor
*/
public LMetadataEdit open(
final LMetadataValue metadata)
{
try {
final var stage = new Stage();
final var layout =
LMetadataEditors.class.getResource(
"/com/io7m/laurel/gui/internal/metadataEdit.fxml");
Objects.requireNonNull(layout, "layout");
final var loader =
new FXMLLoader(layout, this.strings.resources());
final var editor = new LMetadataEdit(stage, metadata);
loader.setControllerFactory(param -> {
return editor;
});
final Pane pane = loader.load();
LCSS.setCSS(pane);
stage.initModality(APPLICATION_MODAL);
stage.setTitle(this.strings.format("metadata.edit"));
stage.setWidth(512.0 + 32.0);
stage.setHeight(256.0);
stage.setMinWidth(512.0 + 32.0);
stage.setMinHeight(256.0);
stage.setScene(new Scene(pane));
stage.showAndWait();
return editor;
} catch (final IOException e) {
throw new UncheckedIOException(e);
}
}
@Override
public String toString()
{
return String.format(
"[LMetadataEditors 0x%08x]",
Integer.valueOf(this.hashCode())
);
}
@Override
public String description()
{
return "Metadata editor service";
}
}