{"id":13777105,"url":"https://github.com/TangoraBox/ComponentInspector","last_synced_at":"2025-05-11T11:32:52.584Z","repository":{"id":45113672,"uuid":"268712750","full_name":"TangoraBox/ComponentInspector","owner":"TangoraBox","description":"Java Desktop (JavaFX and Swing) Component Inspector on mouse over","archived":false,"fork":false,"pushed_at":"2022-06-08T14:17:05.000Z","size":8344,"stargazers_count":23,"open_issues_count":1,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-02-13T10:02:01.189Z","etag":null,"topics":["component","component-inspector","desktop","inspector","java","javafx","node","swing"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TangoraBox.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":"2020-06-02T05:51:58.000Z","updated_at":"2024-01-18T18:26:31.000Z","dependencies_parsed_at":"2022-09-12T02:11:57.933Z","dependency_job_id":null,"html_url":"https://github.com/TangoraBox/ComponentInspector","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoraBox%2FComponentInspector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoraBox%2FComponentInspector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoraBox%2FComponentInspector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoraBox%2FComponentInspector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TangoraBox","download_url":"https://codeload.github.com/TangoraBox/ComponentInspector/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225043055,"owners_count":17411924,"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":["component","component-inspector","desktop","inspector","java","javafx","node","swing"],"created_at":"2024-08-03T18:00:37.688Z","updated_at":"2024-11-17T13:30:30.020Z","avatar_url":"https://github.com/TangoraBox.png","language":"Java","readme":"# Java Desktop (JavaFX and Swing) Component Inspector\n\n\u003e A Tool for help you to inspect the location and some properties (see features section) of the component under mouse, in a window hierarchy\n\n[![License: LGPL v3](https://img.shields.io/badge/License-LGPLv3-blue.svg)](https://opensource.org/licenses/LGPL-3.0)\n[![Build Status](https://travis-ci.com/TangoraBox/ComponentInspector.svg?branch=master)](https://travis-ci.com/TangoraBox/ComponentInspector)\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=com.tangorabox%3Acomponent-inspector\u0026metric=alert_status)](https://sonarcloud.io/dashboard?id=com.tangorabox%3Acomponent-inspector)\n\n\n## Features\n\n- CSS class name in javafx node components [![css-class](doc/images/css-class.png)]()\n- Field name of component declaration in parent (when possible) [![css-class](doc/images/field-name.png)]()\n- The inspected component is highlighted _(since v1.1.0)_\n---\n\n## Usage\n\n\u003e The inspector window is only shown if you hold down the CONTROL key when you move the mouse\n\n---\n\n## Example Demo\n\n![Example Demo](doc/images/demo.gif)\n\n## ScreenShots\n\n***JavaFX Component Inspector***\n\n[![FXInspector](doc/images/FXInspector.png)]()\n\n***Swing Component Inspector***\n\n[![FXInspector](doc/images/SwingInspector.png)]()\n\n***Swing inside JavaFX***\n\n[![FXInspector](doc/images/JavaFXWithSwingNode.png)]()\n\n***JavaFX inside Swing***\n\n[![FXInspector](doc/images/SwingWithJavaFXPanel.png)]()\n\n---\n\n## How to use\n\nSimple, one line of code to handle all:\n\n***Java FX Example***\n\nAdd this line in the `public void start(Stage primaryStage)` of your main JavaFX class that extends `Application`:\n\n```java\nFXComponentInspectorHandler.handleAll();\n```\n\n***Swing Example***\n\nAdd this line in the `public static void main(String[] args)` of your application launch class:\n\n```java\nSwingComponentInspectorHandler.handleAll();\n```\n\n---\n\n## Library import with Maven\n\nThe artifacts have been published to maven central:\n\n\n### FXComponentInspector\n\n***Java 11+***\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.tangorabox\u003c/groupId\u003e\n    \u003cartifactId\u003ecomponent-inspector-fx\u003c/artifactId\u003e\n    \u003cversion\u003e1.1.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n***Java 8***\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.tangorabox\u003c/groupId\u003e\n    \u003cartifactId\u003ecomponent-inspector-fx\u003c/artifactId\u003e\n    \u003cversion\u003e1.1.0-java8\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n---\n\n### SwingComponentInspector\n\n***Java 11+***\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.tangorabox\u003c/groupId\u003e\n    \u003cartifactId\u003ecomponent-inspector-swing\u003c/artifactId\u003e\n    \u003cversion\u003e1.1.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n***Java 8***\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.tangorabox\u003c/groupId\u003e\n    \u003cartifactId\u003ecomponent-inspector-swing\u003c/artifactId\u003e\n    \u003cversion\u003e1.1.0-java8\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n---\n\n\n## Contributing\n\n\u003e If you want to contribute to upgrade this project with new features or fixing bugs, you're welcome, please make a pull request.\n\n---\n\n## Team\n\n\n| \u003ca href=\"https://github.com/garzy\" target=\"_blank\"\u003e**GaRzY**\u003c/a\u003e | \n| :---: \n| [![GaRzY](https://avatars0.githubusercontent.com/u/10849239?s=200)](https://github.com/garzy)   \n| \u003ca href=\"https://github.com/garzy\" target=\"_blank\"\u003e`github.com/garzy`\u003c/a\u003e | \n\n\n---\n\n## Support\n\nReach out to me at one of the following places!\n\n- Mail to [info@tangorabox.com](mailto:info@tangorabox.com)\n\n---\n\n\n## License\n\n[![License: LGPL v3](https://img.shields.io/badge/License-LGPLv3-blue.svg)](https://opensource.org/licenses/LGPL-3.0)\n","funding_links":[],"categories":["Community","Libraries, Tools and Projects"],"sub_categories":["Tools"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTangoraBox%2FComponentInspector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTangoraBox%2FComponentInspector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTangoraBox%2FComponentInspector/lists"}