jvmMain.org.jetbrains.letsPlot.frontend.DefaultSwingJfxFrontendContext.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lets-plot-kotlin-kernel Show documentation
Show all versions of lets-plot-kotlin-kernel Show documentation
Lets-Plot Kotlin API without dependencies.
The newest version!
/*
* Copyright (c) 2021. JetBrains s.r.o.
* Use of this source code is governed by the MIT license that can be found in the LICENSE file.
*/
package org.jetbrains.letsPlot.frontend
import org.jetbrains.letsPlot.jfx.plot.component.PlotViewerWindowJfx
import org.jetbrains.letsPlot.FrontendContext
/**
* Shows plot in Java Swing Window.
* Uses JavaFx Scene mapping for SVG rendering.
*/
class DefaultSwingJfxFrontendContext private constructor() : FrontendContext {
override fun display(plotSpecRaw: MutableMap) {
PlotViewerWindowJfx(
"Plot Viewer",
rawSpec = plotSpecRaw,
windowSize = null,
preserveAspectRatio = false,
repaintDelay = 300
).open()
}
companion object {
fun tryCreate(): FrontendContext? {
return try {
// Try load JavaFx window class.
// Requires "lets-plot-jfx-.jar" in classpath.
PlotViewerWindowJfx("", rawSpec = HashMap())
// If Ok - create the frontend context.
DefaultSwingJfxFrontendContext()
} catch (e: Throwable) {
when (e) {
is ClassNotFoundException,
is NoClassDefFoundError -> null
else -> throw e
}
}
}
}
}