├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── QtPropertyEditor.cpp ├── QtPropertyEditor.h ├── README.md ├── images ├── QtPropertyTableEditor.png └── QtPropertyTreeEditor.png └── test ├── CMakeLists.txt ├── test_QtPropertyEditor.cpp ├── test_QtPropertyEditor.h └── test_QtPropertyEditor.pro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertyEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertyEditor/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertyEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /QtPropertyEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertyEditor/HEAD/QtPropertyEditor.cpp -------------------------------------------------------------------------------- /QtPropertyEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertyEditor/HEAD/QtPropertyEditor.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertyEditor/HEAD/README.md -------------------------------------------------------------------------------- /images/QtPropertyTableEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertyEditor/HEAD/images/QtPropertyTableEditor.png -------------------------------------------------------------------------------- /images/QtPropertyTreeEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertyEditor/HEAD/images/QtPropertyTreeEditor.png -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertyEditor/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/test_QtPropertyEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertyEditor/HEAD/test/test_QtPropertyEditor.cpp -------------------------------------------------------------------------------- /test/test_QtPropertyEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertyEditor/HEAD/test/test_QtPropertyEditor.h -------------------------------------------------------------------------------- /test/test_QtPropertyEditor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-goldschen-ohm/QtPropertyEditor/HEAD/test/test_QtPropertyEditor.pro --------------------------------------------------------------------------------