{"id":20239145,"url":"https://github.com/edvin/tornadofx-controlsfx","last_synced_at":"2025-04-10T19:36:33.402Z","repository":{"id":57738187,"uuid":"62337561","full_name":"edvin/tornadofx-controlsfx","owner":"edvin","description":"ControlsFX Builder extensions and utilities for TornadoFX","archived":false,"fork":false,"pushed_at":"2019-04-06T09:17:57.000Z","size":177,"stargazers_count":71,"open_issues_count":6,"forks_count":10,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-04-04T22:43:40.590Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/edvin.png","metadata":{"files":{"readme":"README.md","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}},"created_at":"2016-06-30T19:37:26.000Z","updated_at":"2024-08-15T06:04:52.000Z","dependencies_parsed_at":"2022-08-24T07:31:00.949Z","dependency_job_id":null,"html_url":"https://github.com/edvin/tornadofx-controlsfx","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edvin%2Ftornadofx-controlsfx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edvin%2Ftornadofx-controlsfx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edvin%2Ftornadofx-controlsfx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edvin%2Ftornadofx-controlsfx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/edvin","download_url":"https://codeload.github.com/edvin/tornadofx-controlsfx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248281414,"owners_count":21077423,"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-11-14T08:37:40.454Z","updated_at":"2025-04-10T19:36:33.366Z","avatar_url":"https://github.com/edvin.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TornadoFX-ControlsFX\n\n[ControlsFX](http://fxexperience.com/controlsfx/features/) builder extensions and utilities for [TornadoFX](https://github.com/edvin/tornadofx).\n\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/no.tornado/tornadofx-controlsfx/badge.svg)](https://search.maven.org/#search|ga|1|no.tornado.tornadofx-controlsfx)\n[![Apache License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)\n\n### Add TornadoFX-ControlsFX to your project\n\n#### Maven\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eno.tornado\u003c/groupId\u003e\n    \u003cartifactId\u003etornadofx-controlsfx\u003c/artifactId\u003e\n    \u003cversion\u003e0.1\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n#### Gradle\n\n```groovy\ncompile 'no.tornado:tornadofx-controlsfx:0.1'\n```\n\n\n## Examples\n\n### TableView Filter\n\n```kotlin\nclass TableFilterView : View() {\n    override val root = tableview(patients) {\n\n        column(\"FIRST NAME\", Patient::firstName)\n        column(\"LAST NAME\", Patient::lastName)\n        column(\"GENDER\", Patient::gender) {\n            columnfilter {\n                exceptValue(Gender.FEMALE)\n            }\n        }\n        column(\"BIRTHDAY\", Patient::birthday)\n        column(\"AGE\", Patient::age)\n        column(\"WBCC\", Patient::whiteBloodCellCount)\n\n        tableFilter.executeFilter()\n    }\n}\n```\n\n![](https://i.imgur.com/OZJuBvG.png)\n\n### BreadCrumbBar\n\n```kotlin\nclass BreadCrumbPane: View() {\n\n    var targetCrumb: TreeItem\u003cString\u003e? = null\n\n    override val root = breadcrumbbar\u003cString\u003e {\n        treeitem(\"Alpha\") {\n            treeitem(\"Beta\") {\n                targetCrumb = treeitem(\"Gamma\")\n            }\n            treeitem(\"Zeta\")\n        }\n\n        selectedCrumb = targetCrumb\n    }\n}\n```\n\n![](https://i.imgur.com/OzxetsK.png)\n\n\n\n\n###\n\n\n## Contributing\n\nI might have missed some or may have included extraneous utilities, but any help to create a TornadoFX DSL for the following is welcome. \n\nPlease read JavaDocs for full list of controls:\nhttps://controlsfx.bitbucket.io/\n\n\n* [X] BreadCrumbBar\n* [X] Borders\n* [X] CheckListView\n* [X] CheckComboBox\n* [X] CheckTreeView\n* [X] Glyphs\n* [X] CustomPasswordField\n* [X] CustomTextField\n* [ ] Picker\n* [X] ProgressDialog\n* [X] ExceptionDialog\n* [X] TableFilter\n* [X] RangeSlider\n* [ ] SpreadsheetView\n* [X] StatusBar\n* [X] ToggleSwitch\n* [X] WorldMapView\n* [X] SegmentedBar\n* [X] Rating\n* [X] PropertySheet\n* [X] PopOver\n* [X] Plus/Minus Slider\n* [X] Notifications\n* [X] NotificationsPane\n* [X] MasterDetailPane\n* [X] MaskerPane\n* [X] HyperlinkLabel\n* [ ] GridView\n* [X] FontAwesome\n* [X] Decorator\n* [X] InfoOverlay\n* [X] ListSelectionView\n* [X] Prefix Selection Combobox/Choicebox\n* [X] SnapshotView\n* [X] HiddenSidesPane\n* [X] LoginDialog\n* [X] CommandLinksDialog\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedvin%2Ftornadofx-controlsfx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedvin%2Ftornadofx-controlsfx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedvin%2Ftornadofx-controlsfx/lists"}