All Projects β†’ miho β†’ ScaledFX

miho / ScaledFX

Licence: other
JavaFX pane for scaling arbitrary content nodes (used in VWorkflows)

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to ScaledFX

animated
🌊 Implicit animations for JavaFX.
Stars: ✭ 79 (-5.95%)
Mutual labels:  javafx
Brutal-wordlist-Generator
Brutal Wordlist Generator is a java based Application software used to generate the wordlist with best of UX interface
Stars: ✭ 24 (-71.43%)
Mutual labels:  javafx
Desktop-Applications-JavaFX
JavaFX Open Source Projects
Stars: ✭ 69 (-17.86%)
Mutual labels:  javafx
ElectronicStoreToolFX
Management tool for an electronics store JavaFx + MySQL
Stars: ✭ 18 (-78.57%)
Mutual labels:  javafx
ChessLiteGUI
A lightweight Chess GUI for playing Chess on a personal computer.
Stars: ✭ 2 (-97.62%)
Mutual labels:  javafx
scraper
A simple web scraper built around the JavaFX WebEngine
Stars: ✭ 13 (-84.52%)
Mutual labels:  javafx
JxBrowser-Examples
JxBrowser Examples & Tutorials
Stars: ✭ 49 (-41.67%)
Mutual labels:  javafx
NativeFX
Native Rendering integration for JavaFX (13 and beyond)
Stars: ✭ 125 (+48.81%)
Mutual labels:  javafx
InvMan
Open source JavaFX inventory management application
Stars: ✭ 40 (-52.38%)
Mutual labels:  javafx
LR-Parser
LR Parser (LR(0), SLR(1), CLR(1) and LALR(1))
Stars: ✭ 40 (-52.38%)
Mutual labels:  javafx
spring-javafx-material-design-admin
Aplicação desktop para Gerenciamento de estoque e vendas com Spring Boot, JavaFX e Material Design
Stars: ✭ 56 (-33.33%)
Mutual labels:  javafx
PiHoleWidgets
PiHole Widgets using JAVAFX
Stars: ✭ 67 (-20.24%)
Mutual labels:  javafx
StockManager
a JavaFX stock manager app
Stars: ✭ 29 (-65.48%)
Mutual labels:  javafx
MiniMetro Game
Java educational project with JavaFX
Stars: ✭ 20 (-76.19%)
Mutual labels:  javafx
FXTools
My JavaFX resources, libraries & ready tools (GUI) using in JavaFX projects.
Stars: ✭ 37 (-55.95%)
Mutual labels:  javafx
ModLoaderInstaller
JavaFX application that installs a mod loader for the game The Long Dark
Stars: ✭ 52 (-38.1%)
Mutual labels:  javafx
tqrespec
TQRespec - The respec tool for Titan Quest game
Stars: ✭ 59 (-29.76%)
Mutual labels:  javafx
actlist-plugin
πŸ”§ Actlist Plugin library to development and debugging.
Stars: ✭ 14 (-83.33%)
Mutual labels:  javafx
VickyWarAnalyzer
Victoria II war analyzer. Java 8 + JavaFX + Maven
Stars: ✭ 43 (-48.81%)
Mutual labels:  javafx
mano-simulator
πŸ–₯️ An assembler and hardware simulator for the Mano Basic Computer, a 16 bit computer.
Stars: ✭ 20 (-76.19%)
Mutual labels:  javafx

ScaledFX

Build Status Download Javadocs

JavaFX pane for scaling arbitrary content nodes (used in Vworkflows) by applying scale transformations. The ScalableContentPane scales its content to always fit the container bounds.

Sample 1

Sample 2

Sample Code:

public class Main extends Application {
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage primaryStage) throws Exception {
        ScalableContentPane scp = 
            new ScalableContentPane(new Button("Scaled Button"));
        
        primaryStage.setScene(new Scene(scp));
        primaryStage.setTitle("Scalable Content Pane Demo");
        primaryStage.show();
    }
}

Notes on JDK >=11

Version >= 0.5 is compatible with JDK >= 11. Just use the JavaFx Gradle plugin via

plugins {
  id 'org.openjfx.javafxplugin' version '0.0.7' // use latest version
}

and declare the dependency to the controls module.

javafx {
    modules = [ 'javafx.controls' ]
}

Notes on JDK 8

Version <= 0.4 is compatible with JDK 8 (probably also 9 and 10)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].