gitextract_gjnt3x0x/ ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── .gitmodules ├── .vscode/ │ └── c_cpp_properties.json ├── CMakeLists.txt ├── CNAME ├── INSTALL.txt ├── LICENSE ├── README.md ├── _config.yml ├── doc/ │ └── API.md ├── lib/ │ ├── CMakeLists.txt │ ├── clipboard/ │ │ ├── CMakeLists.txt │ │ ├── clipboard.h │ │ ├── clipboard_linux.cpp │ │ ├── clipboard_mac.mm │ │ └── clipboard_win.cpp │ ├── glew/ │ │ ├── CMakeLists.txt │ │ ├── eglew.h │ │ ├── glew.c │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ ├── lb_xplane/ │ │ ├── CMakeLists.txt │ │ ├── command.h │ │ ├── command_provider.cpp │ │ ├── command_provider.h │ │ ├── dataref.h │ │ ├── dataref_provider.h │ │ ├── flight_loop.h │ │ ├── logging.cpp │ │ ├── logging.h │ │ ├── menus.cpp │ │ └── menus.h │ ├── lb_xplane_ui/ │ │ ├── CMakeLists.txt │ │ ├── container/ │ │ │ ├── container.cpp │ │ │ ├── container.h │ │ │ ├── scroll.cpp │ │ │ ├── scroll.h │ │ │ ├── single_axis_layout.cpp │ │ │ └── single_axis_layout.h │ │ ├── containers.h │ │ ├── draw_basic.cpp │ │ ├── draw_basic.h │ │ ├── geometry.h │ │ ├── gl_utils.cpp │ │ ├── gl_utils.h │ │ ├── layout_object.cpp │ │ ├── layout_object.h │ │ ├── widgets/ │ │ │ ├── button.cpp │ │ │ ├── button.h │ │ │ ├── horizontal_bar.cpp │ │ │ ├── horizontal_bar.h │ │ │ ├── image.cpp │ │ │ ├── image.h │ │ │ ├── progress.cpp │ │ │ ├── progress.h │ │ │ ├── scroll_bar.cpp │ │ │ ├── scroll_bar.h │ │ │ ├── spacer.h │ │ │ ├── text.cpp │ │ │ ├── text.h │ │ │ ├── text_field.cpp │ │ │ ├── text_field.h │ │ │ └── widget.h │ │ ├── widgets.h │ │ ├── window11.cpp │ │ └── window11.h │ ├── mio/ │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── include/ │ │ └── mio.hpp │ └── nlohmann/ │ └── json.hpp ├── make_release_zip.sh ├── scripts/ │ └── make_keychain.sh └── src/ ├── CMakeLists.txt ├── drt_client/ │ ├── CMakeLists.txt │ ├── drt_client.c │ ├── drt_client.h │ ├── example_queries.c │ ├── example_queries.h │ └── plugin.c ├── libdrt/ │ ├── CMakeLists.txt │ ├── scan/ │ │ ├── deduplicate_vector.h │ │ ├── scan_entity.cpp │ │ ├── scan_entity.h │ │ ├── scan_files.cpp │ │ └── scan_files.h │ ├── search/ │ │ ├── allrefs.cpp │ │ ├── allrefs.h │ │ ├── commandref.cpp │ │ ├── commandref.h │ │ ├── dataref.cpp │ │ ├── dataref.h │ │ ├── ref.cpp │ │ ├── ref.h │ │ ├── search.cpp │ │ └── search.h │ └── util/ │ ├── string_util.cpp │ ├── string_util.h │ └── visit_backport.h └── plugin/ ├── CMakeLists.txt ├── drt_datarefs.cpp ├── drt_datarefs.h ├── drt_plugin.cpp ├── drt_plugin.h ├── internal_dataref_list.cpp ├── internal_dataref_list.h ├── next_flight_loop_callback.h ├── plugin.cpp ├── plugin.h ├── plugin_menu.cpp ├── plugin_menu.h ├── prefs.cpp ├── prefs.h ├── search_api.cpp ├── search_api.h ├── threaded_scanner.cpp ├── threaded_scanner.h └── ui/ ├── about_window.cpp ├── about_window.h ├── commandref_window.cpp ├── commandref_window.h ├── dataref_edit_panel.cpp ├── dataref_edit_panel.h ├── dataref_window.cpp ├── dataref_window.h ├── search_window.cpp ├── search_window.h ├── selectable_list.cpp └── selectable_list.h