# ObjectFindTool **Repository Path**: daonvshu/ObjectFindTool ## Basic Information - **Project Name**: ObjectFindTool - **Description**: qt widget's object name find tool - **Primary Language**: C++ - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-10-29 - **Last Updated**: 2025-04-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ObjectFindTool qt widget's object name find tool ![image](https://github.com/daonvshu/ObjectFindTool/blob/main/screenshot/p0.gif?raw=true) ## How to use relace your application to `ObjectFinderApplication` ```cpp #ifdef QT_DEBUG #include "src/objectfindtool.h" #endif #include "test/widget.h" int main(int argc, char* argv[]) { #ifdef QT_DEBUG ObjectFinderApplication a(argc, argv); #else QApplication a(argc, argv); #endif MyWidget w; w.show(); return a.exec(); } ``` - press key `F2(default)` to display current focus widget's object name and geometry. - press `Ctrl+C` to copy current focus widget's object name. - press and hold the key `Alt` to show the relative position to another widget.