├── CBaseProperty.cpp ├── CBaseProperty.h ├── CBoolProperty.cpp ├── CBoolProperty.h ├── CButtonBasedEditor.cpp ├── CButtonBasedEditor.h ├── CColorProperty.cpp ├── CColorProperty.h ├── CDateProperty.cpp ├── CDateProperty.h ├── CDateTimeProperty.cpp ├── CDateTimeProperty.h ├── CDoubleProperty.cpp ├── CDoubleProperty.h ├── CFontProperty.cpp ├── CFontProperty.h ├── CIntegerProperty.cpp ├── CIntegerProperty.h ├── CListProperty.cpp ├── CListProperty.h ├── CPropertyEditor.cpp ├── CPropertyEditor.h ├── CPropertyHeader.cpp ├── CPropertyHeader.h ├── CStringProperty.cpp ├── CStringProperty.h ├── CTimeProperty.cpp ├── CTimeProperty.h ├── Icons ├── file-open.png ├── info.png └── remove.png ├── PropertyEditor.pro ├── QColorComboBox.cpp ├── QColorComboBox.h ├── README.md ├── main.cpp ├── screenshot.png ├── testwidget.cpp ├── testwidget.h ├── testwidget.qrc └── testwidget.ui /CBaseProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CBaseProperty.cpp -------------------------------------------------------------------------------- /CBaseProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CBaseProperty.h -------------------------------------------------------------------------------- /CBoolProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CBoolProperty.cpp -------------------------------------------------------------------------------- /CBoolProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CBoolProperty.h -------------------------------------------------------------------------------- /CButtonBasedEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CButtonBasedEditor.cpp -------------------------------------------------------------------------------- /CButtonBasedEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CButtonBasedEditor.h -------------------------------------------------------------------------------- /CColorProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CColorProperty.cpp -------------------------------------------------------------------------------- /CColorProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CColorProperty.h -------------------------------------------------------------------------------- /CDateProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CDateProperty.cpp -------------------------------------------------------------------------------- /CDateProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CDateProperty.h -------------------------------------------------------------------------------- /CDateTimeProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CDateTimeProperty.cpp -------------------------------------------------------------------------------- /CDateTimeProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CDateTimeProperty.h -------------------------------------------------------------------------------- /CDoubleProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CDoubleProperty.cpp -------------------------------------------------------------------------------- /CDoubleProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CDoubleProperty.h -------------------------------------------------------------------------------- /CFontProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CFontProperty.cpp -------------------------------------------------------------------------------- /CFontProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CFontProperty.h -------------------------------------------------------------------------------- /CIntegerProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CIntegerProperty.cpp -------------------------------------------------------------------------------- /CIntegerProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CIntegerProperty.h -------------------------------------------------------------------------------- /CListProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CListProperty.cpp -------------------------------------------------------------------------------- /CListProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CListProperty.h -------------------------------------------------------------------------------- /CPropertyEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CPropertyEditor.cpp -------------------------------------------------------------------------------- /CPropertyEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CPropertyEditor.h -------------------------------------------------------------------------------- /CPropertyHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CPropertyHeader.cpp -------------------------------------------------------------------------------- /CPropertyHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CPropertyHeader.h -------------------------------------------------------------------------------- /CStringProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CStringProperty.cpp -------------------------------------------------------------------------------- /CStringProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CStringProperty.h -------------------------------------------------------------------------------- /CTimeProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CTimeProperty.cpp -------------------------------------------------------------------------------- /CTimeProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/CTimeProperty.h -------------------------------------------------------------------------------- /Icons/file-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/Icons/file-open.png -------------------------------------------------------------------------------- /Icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/Icons/info.png -------------------------------------------------------------------------------- /Icons/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/Icons/remove.png -------------------------------------------------------------------------------- /PropertyEditor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/PropertyEditor.pro -------------------------------------------------------------------------------- /QColorComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/QColorComboBox.cpp -------------------------------------------------------------------------------- /QColorComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/QColorComboBox.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/main.cpp -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/screenshot.png -------------------------------------------------------------------------------- /testwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/testwidget.cpp -------------------------------------------------------------------------------- /testwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/testwidget.h -------------------------------------------------------------------------------- /testwidget.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/testwidget.qrc -------------------------------------------------------------------------------- /testwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qt-Widgets/Property-Editor/HEAD/testwidget.ui --------------------------------------------------------------------------------