nextpnr/3rdparty/QtPropertyBrowser
Miodrag Milanović 17d42e41db
Make GUI able to compile on both Qt5 and Qt6 (#1576)
* Use QtPropertyBrowser for Qt5/6

* Fix cmake for python-console for consistency

* Make GUI compile for both Qt5 and Qt6

* Fix crash on init with Wayland on Qt6

* Cleanup

* disable deprecation warnings for now

* Relaxed cmake check for initial Qt6 test
2025-10-15 12:19:20 +02:00
..
cmake Added QtPropertyBrowser source 2018-06-11 21:30:22 +02:00
doc/images Added QtPropertyBrowser source 2018-06-11 21:30:22 +02:00
examples Added QtPropertyBrowser source 2018-06-11 21:30:22 +02:00
src Make GUI able to compile on both Qt5 and Qt6 (#1576) 2025-10-15 12:19:20 +02:00
.gitignore put some files back and place generated files in special folder for deps 2018-06-20 16:23:07 +02:00
CMakeLists.txt Make GUI able to compile on both Qt5 and Qt6 (#1576) 2025-10-15 12:19:20 +02:00
README.md Added QtPropertyBrowser source 2018-06-11 21:30:22 +02:00

README.md

Qt Solutions Component: Property Browser

A property browser framework enabling the user to edit a set of properties.

The framework provides a browser widget that displays the given properties with labels and corresponding editing widgets (e.g. line edits or comboboxes). The various types of editing widgets are provided by the framework's editor factories: For each property type, the framework provides a property manager (e.g. QtIntPropertyManager and QtStringPropertyManager) which can be associated with the preferred editor factory (e.g.QtSpinBoxFactory and QtLineEditFactory). The framework also provides a variant based property type with corresponding variant manager and factory. Finally, the framework provides three ready-made implementations of the browser widget: QtTreePropertyBrowser, QtButtonPropertyBrowser and QtGroupBoxPropertyBrowser.

Original source code is archived at https://qt.gitorious.org/qt-solutions/qt-solutions This fork adds CMake and Qt5 support