{"id":16122125,"url":"https://github.com/foxcapades/java-lib-fxx","last_synced_at":"2025-04-06T11:41:32.865Z","repository":{"id":90411090,"uuid":"138829641","full_name":"Foxcapades/java-lib-fxx","owner":"Foxcapades","description":"Builder-y JavaFX types.","archived":false,"fork":false,"pushed_at":"2020-05-30T00:13:50.000Z","size":80,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-12T17:19:28.915Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Foxcapades.png","metadata":{"files":{"readme":"readme.adoc","changelog":null,"contributing":null,"funding":null,"license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-06-27T04:29:44.000Z","updated_at":"2020-05-30T00:13:47.000Z","dependencies_parsed_at":"2023-03-13T17:58:36.844Z","dependency_job_id":null,"html_url":"https://github.com/Foxcapades/java-lib-fxx","commit_stats":{"total_commits":20,"total_committers":2,"mean_commits":10.0,"dds":"0.050000000000000044","last_synced_commit":"69d0650a9813a85b93344e94a9c1150e7fe33cc6"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fjava-lib-fxx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fjava-lib-fxx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fjava-lib-fxx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Foxcapades%2Fjava-lib-fxx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Foxcapades","download_url":"https://codeload.github.com/Foxcapades/java-lib-fxx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247478234,"owners_count":20945262,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-09T21:09:37.079Z","updated_at":"2025-04-06T11:41:32.850Z","avatar_url":"https://github.com/Foxcapades.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"= fxx\n:jfx: javafx\n:fxx: io.vulpine.lib.fxx\n\nBuilder style extensions for JavaFX classes.\n\n[source,java]\n----\nvar tab = new Tab(\"title\");\ntab.setStyle(\"-fx-something: value\");\ntab.getStyleClass().addAll(\"tabby\", \"some-class\");\ntab.setOnClose(myCloseHandler);\n\nmyTabPane.getTabs().add(tab);\n----\n\nvs\n\n[source,java]\n----\nmyTabPane.add(\n  new Tab(\"title\")\n    .style(\"-fx-something: value\")\n    .styleClasses(\"tabby\", \"some-class\")\n    .onClose(myCloseHandler)\n);\n----\n\n== Progress\n\nUntil v1 is reached this listing will track what is presently implemented.\nOnce v1 is reached this library should mirror all the major control/pane types\npresent in JavaFX.\n\n[%header, width=\"25%\", cols=3]\n.Implementation Mapping\n|===\n^|Since  ^|JavaFX                           ^| Mirror\n^|v0.0.6 \u003e|`{jfx}.scene.control.Accordion`  \u003c|`{fxx}.control.Accordion`\n^|v0.0.7 \u003e|`{jfx}.scene.control.Alert`      \u003c|`{fxx}.control.Alert`\n^|v0.0.6 \u003e|`{jfx}.scene.control.Button`     \u003c|`{fxx}.control.Button`\n^|v0.0.7 \u003e|`{jfx}.scene.control.ButtonBar`  \u003c|`{fxx}.control.ButtonBar`\n^|v0.0.6 \u003e|`{jfx}.scene.control.CheckBox`   \u003c|`{fxx}.control.CheckBox`\n^|v0.0.7 \u003e|`{jfx}.scene.control.Dialog`     \u003c|`{fxx}.control.Dialog`\n^|v0.0.5 \u003e|`{jfx}.scene.control.Label`      \u003c|`{fxx}.control.Label`\n^|v0.0.7 \u003e|`{jfx}.scene.control.Menu`       \u003c|`{fxx}.menu.Menu`\n^|v0.0.7 \u003e|`{jfx}.scene.control.MenuBar`    \u003c|`{fxx}.menu.MenuBar`\n^|v0.0.7 \u003e|`{jfx}.scene.control.MenuButton` \u003c|`{fxx}.menu.MenuButton`\n^|v0.0.7 \u003e|`{jfx}.scene.control.MenuItem`   \u003c|`{fxx}.menu.MenuItem`\n^|v0.0.6 \u003e|`{jfx}.scene.control.ScrollPane` \u003c|`{fxx}.control.ScrollPane`\n^|v0.0.1 \u003e|`{jfx}.scene.control.Tab`        \u003c|`{fxx}.control.Tab`\n^|v0.0.1 \u003e|`{jfx}.scene.control.TabPane`    \u003c|`{fxx}.control.TabPane`\n^|v0.0.6 \u003e|`{jfx}.scene.control.TextArea`   \u003c|`{fxx}.control.TextArea`\n^|v0.0.6 \u003e|`{jfx}.scene.control.TextField`  \u003c|`{fxx}.control.TextField`\n^|v0.0.6 \u003e|`{jfx}.scene.control.TitledPane` \u003c|`{fxx}.control.TitledPane`\n^|v0.0.3 \u003e|`{jfx}.scene.layout.AnchorPane`  \u003c|`{fxx}.layout.AnchorPane`\n^|v0.0.4 \u003e|`{jfx}.scene.layout.BorderPane`  \u003c|`{fxx}.layout.BorderPane`\n^|v0.0.4 \u003e|`{jfx}.scene.layout.DialogPane`  \u003c|`{fxx}.layout.DialogPane`\n^|v0.0.4 \u003e|`{jfx}.scene.layout.FlowPane`    \u003c|`{fxx}.layout.FlowPane`\n^|v0.0.3 \u003e|`{jfx}.scene.layout.GridPane`    \u003c|`{fxx}.layout.GridPane`\n^|v0.0.2 \u003e|`{jfx}.scene.layout.HBox`        \u003c|`{fxx}.layout.HBox`\n^|v0.0.3 \u003e|`{jfx}.scene.layout.Pane`        \u003c|`{fxx}.layout.Pane`\n^|v0.0.3 \u003e|`{jfx}.scene.layout.Region`      \u003c|`{fxx}.layout.Region`\n^|v0.0.4 \u003e|`{jfx}.scene.layout.StackPane`   \u003c|`{fxx}.layout.StackPane`\n^|v0.0.4 \u003e|`{jfx}.scene.layout.TilePane`    \u003c|`{fxx}.layout.TilePane`\n^|v0.0.2 \u003e|`{jfx}.scene.layout.VBox`        \u003c|`{fxx}.layout.VBox`\n^|v0.0.8 \u003e|`{jfx}.scene.Scene`              \u003c|`{fxx}.scene.Scene`\n^|v0.0.8 \u003e|`{jfx}.scene.SubScene`           \u003c|`{fxx}.scene.SubScene`\n^|v0.0.5 \u003e|`{jfx}.scene.text.Text`          \u003c|`{fxx}.text.Text`\n^|v0.0.7 \u003e|`{jfx}.scene.text.TextFlow`      \u003c|`{fxx}.text.TextFlow`\n|===","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoxcapades%2Fjava-lib-fxx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffoxcapades%2Fjava-lib-fxx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoxcapades%2Fjava-lib-fxx/lists"}