├── .gitattributes ├── .gitignore ├── README.md ├── dist bin 1.0 ├── Undecorator.html ├── Undecorator.jar ├── Undecorator.jnlp └── web-files │ ├── dtjava.js │ ├── error.png │ ├── get_java.png │ ├── get_javafx.png │ ├── javafx-chrome.png │ ├── javafx-loading-100x100.gif │ ├── javafx-loading-25x25.gif │ ├── upgrade_java.png │ └── upgrade_javafx.png ├── dist ├── Undecorator.html ├── Undecorator.jar ├── Undecorator.jnlp └── web-files │ ├── dtjava.js │ ├── error.png │ ├── get_java.png │ ├── get_javafx.png │ ├── javafx-chrome.png │ ├── javafx-loading-100x100.gif │ ├── javafx-loading-25x25.gif │ ├── upgrade_java.png │ └── upgrade_javafx.png ├── manifest.mf ├── nbproject ├── build-impl.xml ├── build-impl.xml~ ├── configs │ ├── Run_as_WebStart.properties │ └── Run_in_Browser.properties ├── genfiles.properties ├── jfx-impl.xml ├── jfx-impl_backup.xml ├── private │ ├── configs │ │ ├── Run_as_WebStart.properties │ │ └── Run_in_Browser.properties │ ├── private.properties │ └── private.xml ├── project.properties └── project.xml └── src ├── demoapp ├── ClientArea.fxml ├── ClientAreaUtility.fxml ├── UndecoratorSceneDemo.java ├── UndecoratorStageDemo.java ├── demoapp.css ├── in-sidefx.png └── snippet.png ├── insidefx └── undecorator │ ├── Undecorator.java │ ├── UndecoratorController.java │ ├── UndecoratorScene.java │ ├── resources │ ├── localization.properties │ └── localization_fr.properties │ ├── stageUtilityDecoration.fxml │ └── stagedecoration.fxml └── skin ├── close-hover.png ├── close.png ├── fullscreen-hover.png ├── fullscreen.png ├── maximize-hover.png ├── maximize.png ├── menu-hover.png ├── menu.png ├── minimize-hover.png ├── minimize.png ├── resizeSE.png ├── restore-hover.png ├── restore.png ├── undecorator.css ├── undecorator.properties ├── undecoratorUtilityStage.css ├── unfullscreen-hover.png └── unfullscreen.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/README.md -------------------------------------------------------------------------------- /dist bin 1.0/Undecorator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist bin 1.0/Undecorator.html -------------------------------------------------------------------------------- /dist bin 1.0/Undecorator.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist bin 1.0/Undecorator.jar -------------------------------------------------------------------------------- /dist bin 1.0/Undecorator.jnlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist bin 1.0/Undecorator.jnlp -------------------------------------------------------------------------------- /dist bin 1.0/web-files/dtjava.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist bin 1.0/web-files/dtjava.js -------------------------------------------------------------------------------- /dist bin 1.0/web-files/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist bin 1.0/web-files/error.png -------------------------------------------------------------------------------- /dist bin 1.0/web-files/get_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist bin 1.0/web-files/get_java.png -------------------------------------------------------------------------------- /dist bin 1.0/web-files/get_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist bin 1.0/web-files/get_javafx.png -------------------------------------------------------------------------------- /dist bin 1.0/web-files/javafx-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist bin 1.0/web-files/javafx-chrome.png -------------------------------------------------------------------------------- /dist bin 1.0/web-files/javafx-loading-100x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist bin 1.0/web-files/javafx-loading-100x100.gif -------------------------------------------------------------------------------- /dist bin 1.0/web-files/javafx-loading-25x25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist bin 1.0/web-files/javafx-loading-25x25.gif -------------------------------------------------------------------------------- /dist bin 1.0/web-files/upgrade_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist bin 1.0/web-files/upgrade_java.png -------------------------------------------------------------------------------- /dist bin 1.0/web-files/upgrade_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist bin 1.0/web-files/upgrade_javafx.png -------------------------------------------------------------------------------- /dist/Undecorator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist/Undecorator.html -------------------------------------------------------------------------------- /dist/Undecorator.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist/Undecorator.jar -------------------------------------------------------------------------------- /dist/Undecorator.jnlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist/Undecorator.jnlp -------------------------------------------------------------------------------- /dist/web-files/dtjava.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist/web-files/dtjava.js -------------------------------------------------------------------------------- /dist/web-files/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist/web-files/error.png -------------------------------------------------------------------------------- /dist/web-files/get_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist/web-files/get_java.png -------------------------------------------------------------------------------- /dist/web-files/get_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist/web-files/get_javafx.png -------------------------------------------------------------------------------- /dist/web-files/javafx-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist/web-files/javafx-chrome.png -------------------------------------------------------------------------------- /dist/web-files/javafx-loading-100x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist/web-files/javafx-loading-100x100.gif -------------------------------------------------------------------------------- /dist/web-files/javafx-loading-25x25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist/web-files/javafx-loading-25x25.gif -------------------------------------------------------------------------------- /dist/web-files/upgrade_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist/web-files/upgrade_java.png -------------------------------------------------------------------------------- /dist/web-files/upgrade_javafx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/dist/web-files/upgrade_javafx.png -------------------------------------------------------------------------------- /manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/manifest.mf -------------------------------------------------------------------------------- /nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/build-impl.xml -------------------------------------------------------------------------------- /nbproject/build-impl.xml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/build-impl.xml~ -------------------------------------------------------------------------------- /nbproject/configs/Run_as_WebStart.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/configs/Run_as_WebStart.properties -------------------------------------------------------------------------------- /nbproject/configs/Run_in_Browser.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/configs/Run_in_Browser.properties -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/genfiles.properties -------------------------------------------------------------------------------- /nbproject/jfx-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/jfx-impl.xml -------------------------------------------------------------------------------- /nbproject/jfx-impl_backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/jfx-impl_backup.xml -------------------------------------------------------------------------------- /nbproject/private/configs/Run_as_WebStart.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/private/configs/Run_as_WebStart.properties -------------------------------------------------------------------------------- /nbproject/private/configs/Run_in_Browser.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/private/configs/Run_in_Browser.properties -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/private/private.properties -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/private/private.xml -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /src/demoapp/ClientArea.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/demoapp/ClientArea.fxml -------------------------------------------------------------------------------- /src/demoapp/ClientAreaUtility.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/demoapp/ClientAreaUtility.fxml -------------------------------------------------------------------------------- /src/demoapp/UndecoratorSceneDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/demoapp/UndecoratorSceneDemo.java -------------------------------------------------------------------------------- /src/demoapp/UndecoratorStageDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/demoapp/UndecoratorStageDemo.java -------------------------------------------------------------------------------- /src/demoapp/demoapp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/demoapp/demoapp.css -------------------------------------------------------------------------------- /src/demoapp/in-sidefx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/demoapp/in-sidefx.png -------------------------------------------------------------------------------- /src/demoapp/snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/demoapp/snippet.png -------------------------------------------------------------------------------- /src/insidefx/undecorator/Undecorator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/insidefx/undecorator/Undecorator.java -------------------------------------------------------------------------------- /src/insidefx/undecorator/UndecoratorController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/insidefx/undecorator/UndecoratorController.java -------------------------------------------------------------------------------- /src/insidefx/undecorator/UndecoratorScene.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/insidefx/undecorator/UndecoratorScene.java -------------------------------------------------------------------------------- /src/insidefx/undecorator/resources/localization.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/insidefx/undecorator/resources/localization.properties -------------------------------------------------------------------------------- /src/insidefx/undecorator/resources/localization_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/insidefx/undecorator/resources/localization_fr.properties -------------------------------------------------------------------------------- /src/insidefx/undecorator/stageUtilityDecoration.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/insidefx/undecorator/stageUtilityDecoration.fxml -------------------------------------------------------------------------------- /src/insidefx/undecorator/stagedecoration.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/insidefx/undecorator/stagedecoration.fxml -------------------------------------------------------------------------------- /src/skin/close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/close-hover.png -------------------------------------------------------------------------------- /src/skin/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/close.png -------------------------------------------------------------------------------- /src/skin/fullscreen-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/fullscreen-hover.png -------------------------------------------------------------------------------- /src/skin/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/fullscreen.png -------------------------------------------------------------------------------- /src/skin/maximize-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/maximize-hover.png -------------------------------------------------------------------------------- /src/skin/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/maximize.png -------------------------------------------------------------------------------- /src/skin/menu-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/menu-hover.png -------------------------------------------------------------------------------- /src/skin/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/menu.png -------------------------------------------------------------------------------- /src/skin/minimize-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/minimize-hover.png -------------------------------------------------------------------------------- /src/skin/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/minimize.png -------------------------------------------------------------------------------- /src/skin/resizeSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/resizeSE.png -------------------------------------------------------------------------------- /src/skin/restore-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/restore-hover.png -------------------------------------------------------------------------------- /src/skin/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/restore.png -------------------------------------------------------------------------------- /src/skin/undecorator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/undecorator.css -------------------------------------------------------------------------------- /src/skin/undecorator.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/undecorator.properties -------------------------------------------------------------------------------- /src/skin/undecoratorUtilityStage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/undecoratorUtilityStage.css -------------------------------------------------------------------------------- /src/skin/unfullscreen-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/unfullscreen-hover.png -------------------------------------------------------------------------------- /src/skin/unfullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/in-sideFX/Undecorator/HEAD/src/skin/unfullscreen.png --------------------------------------------------------------------------------