├── .clang-format ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGELOG ├── Demo ├── AB │ ├── PropertyABColor.cpp │ ├── PropertyABColor.h │ ├── PropertyDelegateABColor.cpp │ └── PropertyDelegateABColor.h ├── Demo.pef ├── Demo.peg.cpp ├── Demo.peg.h ├── Demo.pro ├── Freq │ ├── PropertyDelegateFreq.cpp │ ├── PropertyDelegateFreq.h │ ├── PropertyFreq.cpp │ └── PropertyFreq.h ├── Int │ ├── PropertyDelegateIntList.cpp │ └── PropertyDelegateIntList.h ├── Layer │ ├── PropertyDelegateLayer.cpp │ ├── PropertyDelegateLayer.h │ ├── PropertyLayer.cpp │ └── PropertyLayer.h ├── MainWindow.cpp ├── MainWindow.h ├── MainWindow.ui ├── PenWidth │ ├── PropertyDelegatePenWidth.cpp │ ├── PropertyDelegatePenWidth.h │ ├── PropertyPenWidth.cpp │ └── PropertyPenWidth.h ├── main.cpp ├── mydialog.cpp ├── mydialog.h └── mydialog.ui ├── Docs ├── Doxyfile ├── Example │ ├── TextAttributes.pef │ ├── TextAttributes.peg.cpp │ └── TextAttributes.peg.h └── img │ ├── 1.png │ ├── Demo1.png │ ├── DemoWin.png │ └── Example1.png ├── Internal ├── BaseConfig.pri └── TargetConfig.pri ├── LICENSE ├── NOTICE ├── PEG ├── Bison.pri ├── Flex.pri ├── PEG.pri ├── PEG.pro ├── PropertyEnum.l ├── PropertyEnum.y ├── PropertyEnumGenerator.cpp ├── PropertyEnumGenerator.h ├── PropertyEnumGeneratorCommon.h └── main.cpp ├── QtnProperty.pro ├── QtnProperty ├── Auxiliary │ ├── PropertyAux.h │ ├── PropertyDelegateInfo.cpp │ ├── PropertyDelegateInfo.h │ ├── PropertyMacro.h │ └── PropertyTemplates.h ├── Config.h ├── Core │ ├── PropertyBool.cpp │ ├── PropertyBool.h │ ├── PropertyDouble.cpp │ ├── PropertyDouble.h │ ├── PropertyEnum.cpp │ ├── PropertyEnum.h │ ├── PropertyEnumFlags.cpp │ ├── PropertyEnumFlags.h │ ├── PropertyFloat.cpp │ ├── PropertyFloat.h │ ├── PropertyInt.cpp │ ├── PropertyInt.h │ ├── PropertyQPoint.cpp │ ├── PropertyQPoint.h │ ├── PropertyQPointF.cpp │ ├── PropertyQPointF.h │ ├── PropertyQRect.cpp │ ├── PropertyQRect.h │ ├── PropertyQRectF.cpp │ ├── PropertyQRectF.h │ ├── PropertyQSize.cpp │ ├── PropertyQSize.h │ ├── PropertyQSizeF.cpp │ ├── PropertyQSizeF.h │ ├── PropertyQString.cpp │ ├── PropertyQString.h │ ├── PropertyUInt.cpp │ └── PropertyUInt.h ├── CustomPropertyEditorDialog.cpp ├── CustomPropertyEditorDialog.h ├── CustomPropertyEditorDialog.ui ├── CustomPropertyOptionsDialog.cpp ├── CustomPropertyOptionsDialog.h ├── CustomPropertyOptionsDialog.ui ├── CustomPropertyWidget.cpp ├── CustomPropertyWidget.h ├── Delegates │ ├── Core │ │ ├── PropertyDelegateBool.cpp │ │ ├── PropertyDelegateBool.h │ │ ├── PropertyDelegateDouble.cpp │ │ ├── PropertyDelegateDouble.h │ │ ├── PropertyDelegateEnum.cpp │ │ ├── PropertyDelegateEnum.h │ │ ├── PropertyDelegateEnumFlags.cpp │ │ ├── PropertyDelegateEnumFlags.h │ │ ├── PropertyDelegateFloat.cpp │ │ ├── PropertyDelegateFloat.h │ │ ├── PropertyDelegateInt.cpp │ │ ├── PropertyDelegateInt.h │ │ ├── PropertyDelegateQPoint.cpp │ │ ├── PropertyDelegateQPoint.h │ │ ├── PropertyDelegateQPointF.cpp │ │ ├── PropertyDelegateQPointF.h │ │ ├── PropertyDelegateQRect.cpp │ │ ├── PropertyDelegateQRect.h │ │ ├── PropertyDelegateQRectF.cpp │ │ ├── PropertyDelegateQRectF.h │ │ ├── PropertyDelegateQSize.cpp │ │ ├── PropertyDelegateQSize.h │ │ ├── PropertyDelegateQSizeF.cpp │ │ ├── PropertyDelegateQSizeF.h │ │ ├── PropertyDelegateQString.cpp │ │ ├── PropertyDelegateQString.h │ │ ├── PropertyDelegateUInt.cpp │ │ └── PropertyDelegateUInt.h │ ├── GUI │ │ ├── PropertyDelegateButton.cpp │ │ ├── PropertyDelegateButton.h │ │ ├── PropertyDelegateQBrush.cpp │ │ ├── PropertyDelegateQBrush.h │ │ ├── PropertyDelegateQColor.cpp │ │ ├── PropertyDelegateQColor.h │ │ ├── PropertyDelegateQFont.cpp │ │ ├── PropertyDelegateQFont.h │ │ ├── PropertyDelegateQPen.cpp │ │ ├── PropertyDelegateQPen.h │ │ ├── PropertyDelegateQVector3D.cpp │ │ └── PropertyDelegateQVector3D.h │ ├── PropertyDelegate.cpp │ ├── PropertyDelegate.h │ ├── PropertyDelegateAux.cpp │ ├── PropertyDelegateAux.h │ ├── PropertyDelegateFactory.cpp │ ├── PropertyDelegateFactory.h │ └── Utils │ │ ├── PropertyDelegateGeoCoord.cpp │ │ ├── PropertyDelegateGeoCoord.h │ │ ├── PropertyDelegateGeoPoint.cpp │ │ ├── PropertyDelegateGeoPoint.h │ │ ├── PropertyDelegateMisc.cpp │ │ ├── PropertyDelegateMisc.h │ │ ├── PropertyDelegatePropertySet.cpp │ │ ├── PropertyDelegatePropertySet.h │ │ ├── PropertyDelegateSliderBox.cpp │ │ ├── PropertyDelegateSliderBox.h │ │ ├── PropertyEditorAux.cpp │ │ ├── PropertyEditorAux.h │ │ ├── PropertyEditorHandler.cpp │ │ └── PropertyEditorHandler.h ├── Enum.cpp ├── Enum.h ├── FunctionalHelpers.h ├── GUI │ ├── PropertyButton.cpp │ ├── PropertyButton.h │ ├── PropertyQBrush.cpp │ ├── PropertyQBrush.h │ ├── PropertyQColor.cpp │ ├── PropertyQColor.h │ ├── PropertyQFont.cpp │ ├── PropertyQFont.h │ ├── PropertyQPen.cpp │ ├── PropertyQPen.h │ ├── PropertyQVector3D.cpp │ └── PropertyQVector3D.h ├── IQtnPropertyStateProvider.h ├── Install.cpp ├── Install.h ├── MultiProperty.cpp ├── MultiProperty.h ├── Property.cpp ├── Property.h ├── PropertyBase.cpp ├── PropertyBase.h ├── PropertyConnector.cpp ├── PropertyConnector.h ├── PropertyCore.h ├── PropertyDelegateAttrs.h ├── PropertyDelegateMetaEnum.cpp ├── PropertyDelegateMetaEnum.h ├── PropertyGUI.h ├── PropertyInt64.cpp ├── PropertyInt64.h ├── PropertyQKeySequence.cpp ├── PropertyQKeySequence.h ├── PropertyQVariant.cpp ├── PropertyQVariant.h ├── PropertySet.cpp ├── PropertySet.h ├── PropertyUInt64.cpp ├── PropertyUInt64.h ├── PropertyView.cpp ├── PropertyView.h ├── PropertyWidget.cpp ├── PropertyWidget.h ├── PropertyWidgetEx.cpp ├── PropertyWidgetEx.h ├── QObjectPropertySet.cpp ├── QObjectPropertySet.h ├── QObjectPropertyWidget.cpp ├── QObjectPropertyWidget.h ├── QtnProperty.pri ├── QtnProperty.pro ├── QtnProperty.qrc ├── StructPropertyBase.h ├── Translations │ ├── en.ts │ └── ru.ts ├── Utils │ ├── AccessibilityProxy.cpp │ ├── AccessibilityProxy.h │ ├── DoubleSpinBox.cpp │ ├── DoubleSpinBox.h │ ├── InplaceEditing.cpp │ ├── InplaceEditing.h │ ├── MultilineTextDialog.cpp │ ├── MultilineTextDialog.h │ ├── MultilineTextDialog.ui │ ├── QtnCompleterItemDelegate.cpp │ ├── QtnCompleterItemDelegate.h │ ├── QtnCompleterLineEdit.cpp │ ├── QtnCompleterLineEdit.h │ ├── QtnConnections.cpp │ ├── QtnConnections.h │ ├── QtnInt64SpinBox.cpp │ └── QtnInt64SpinBox.h ├── VarProperty.cpp └── VarProperty.h ├── QtnPropertyDepend.pri ├── README.md ├── TODO └── Tests ├── PEG ├── test.pef ├── test.peg.cpp ├── test.peg.h ├── test2.pef ├── test2.peg.cpp └── test2.peg.h ├── TestEnum.cpp ├── TestEnum.h ├── TestGeneratedProperty.cpp ├── TestGeneratedProperty.h ├── TestProperty.cpp ├── TestProperty.h ├── Tests.pro ├── main.cpp └── suite_squish_test_suit ├── envvars ├── objects.map ├── suite.conf └── tst_gui_test └── test.js /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Demo/AB/PropertyABColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/AB/PropertyABColor.cpp -------------------------------------------------------------------------------- /Demo/AB/PropertyABColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/AB/PropertyABColor.h -------------------------------------------------------------------------------- /Demo/AB/PropertyDelegateABColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/AB/PropertyDelegateABColor.cpp -------------------------------------------------------------------------------- /Demo/AB/PropertyDelegateABColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/AB/PropertyDelegateABColor.h -------------------------------------------------------------------------------- /Demo/Demo.pef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Demo.pef -------------------------------------------------------------------------------- /Demo/Demo.peg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Demo.peg.cpp -------------------------------------------------------------------------------- /Demo/Demo.peg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Demo.peg.h -------------------------------------------------------------------------------- /Demo/Demo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Demo.pro -------------------------------------------------------------------------------- /Demo/Freq/PropertyDelegateFreq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Freq/PropertyDelegateFreq.cpp -------------------------------------------------------------------------------- /Demo/Freq/PropertyDelegateFreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Freq/PropertyDelegateFreq.h -------------------------------------------------------------------------------- /Demo/Freq/PropertyFreq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Freq/PropertyFreq.cpp -------------------------------------------------------------------------------- /Demo/Freq/PropertyFreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Freq/PropertyFreq.h -------------------------------------------------------------------------------- /Demo/Int/PropertyDelegateIntList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Int/PropertyDelegateIntList.cpp -------------------------------------------------------------------------------- /Demo/Int/PropertyDelegateIntList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Int/PropertyDelegateIntList.h -------------------------------------------------------------------------------- /Demo/Layer/PropertyDelegateLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Layer/PropertyDelegateLayer.cpp -------------------------------------------------------------------------------- /Demo/Layer/PropertyDelegateLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Layer/PropertyDelegateLayer.h -------------------------------------------------------------------------------- /Demo/Layer/PropertyLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Layer/PropertyLayer.cpp -------------------------------------------------------------------------------- /Demo/Layer/PropertyLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/Layer/PropertyLayer.h -------------------------------------------------------------------------------- /Demo/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/MainWindow.cpp -------------------------------------------------------------------------------- /Demo/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/MainWindow.h -------------------------------------------------------------------------------- /Demo/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/MainWindow.ui -------------------------------------------------------------------------------- /Demo/PenWidth/PropertyDelegatePenWidth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/PenWidth/PropertyDelegatePenWidth.cpp -------------------------------------------------------------------------------- /Demo/PenWidth/PropertyDelegatePenWidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/PenWidth/PropertyDelegatePenWidth.h -------------------------------------------------------------------------------- /Demo/PenWidth/PropertyPenWidth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/PenWidth/PropertyPenWidth.cpp -------------------------------------------------------------------------------- /Demo/PenWidth/PropertyPenWidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/PenWidth/PropertyPenWidth.h -------------------------------------------------------------------------------- /Demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/main.cpp -------------------------------------------------------------------------------- /Demo/mydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/mydialog.cpp -------------------------------------------------------------------------------- /Demo/mydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/mydialog.h -------------------------------------------------------------------------------- /Demo/mydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Demo/mydialog.ui -------------------------------------------------------------------------------- /Docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Docs/Doxyfile -------------------------------------------------------------------------------- /Docs/Example/TextAttributes.pef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Docs/Example/TextAttributes.pef -------------------------------------------------------------------------------- /Docs/Example/TextAttributes.peg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Docs/Example/TextAttributes.peg.cpp -------------------------------------------------------------------------------- /Docs/Example/TextAttributes.peg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Docs/Example/TextAttributes.peg.h -------------------------------------------------------------------------------- /Docs/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Docs/img/1.png -------------------------------------------------------------------------------- /Docs/img/Demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Docs/img/Demo1.png -------------------------------------------------------------------------------- /Docs/img/DemoWin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Docs/img/DemoWin.png -------------------------------------------------------------------------------- /Docs/img/Example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Docs/img/Example1.png -------------------------------------------------------------------------------- /Internal/BaseConfig.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Internal/BaseConfig.pri -------------------------------------------------------------------------------- /Internal/TargetConfig.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Internal/TargetConfig.pri -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/NOTICE -------------------------------------------------------------------------------- /PEG/Bison.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/PEG/Bison.pri -------------------------------------------------------------------------------- /PEG/Flex.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/PEG/Flex.pri -------------------------------------------------------------------------------- /PEG/PEG.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/PEG/PEG.pri -------------------------------------------------------------------------------- /PEG/PEG.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/PEG/PEG.pro -------------------------------------------------------------------------------- /PEG/PropertyEnum.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/PEG/PropertyEnum.l -------------------------------------------------------------------------------- /PEG/PropertyEnum.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/PEG/PropertyEnum.y -------------------------------------------------------------------------------- /PEG/PropertyEnumGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/PEG/PropertyEnumGenerator.cpp -------------------------------------------------------------------------------- /PEG/PropertyEnumGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/PEG/PropertyEnumGenerator.h -------------------------------------------------------------------------------- /PEG/PropertyEnumGeneratorCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/PEG/PropertyEnumGeneratorCommon.h -------------------------------------------------------------------------------- /PEG/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/PEG/main.cpp -------------------------------------------------------------------------------- /QtnProperty.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty.pro -------------------------------------------------------------------------------- /QtnProperty/Auxiliary/PropertyAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Auxiliary/PropertyAux.h -------------------------------------------------------------------------------- /QtnProperty/Auxiliary/PropertyDelegateInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Auxiliary/PropertyDelegateInfo.cpp -------------------------------------------------------------------------------- /QtnProperty/Auxiliary/PropertyDelegateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Auxiliary/PropertyDelegateInfo.h -------------------------------------------------------------------------------- /QtnProperty/Auxiliary/PropertyMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Auxiliary/PropertyMacro.h -------------------------------------------------------------------------------- /QtnProperty/Auxiliary/PropertyTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Auxiliary/PropertyTemplates.h -------------------------------------------------------------------------------- /QtnProperty/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Config.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyBool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyBool.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyBool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyBool.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyDouble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyDouble.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyDouble.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyEnum.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyEnum.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyEnumFlags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyEnumFlags.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyEnumFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyEnumFlags.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyFloat.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyFloat.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyInt.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyInt.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQPoint.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQPoint.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQPointF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQPointF.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQPointF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQPointF.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQRect.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQRect.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQRectF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQRectF.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQRectF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQRectF.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQSize.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQSize.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQSizeF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQSizeF.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQSizeF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQSizeF.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQString.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyQString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyQString.h -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyUInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyUInt.cpp -------------------------------------------------------------------------------- /QtnProperty/Core/PropertyUInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Core/PropertyUInt.h -------------------------------------------------------------------------------- /QtnProperty/CustomPropertyEditorDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/CustomPropertyEditorDialog.cpp -------------------------------------------------------------------------------- /QtnProperty/CustomPropertyEditorDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/CustomPropertyEditorDialog.h -------------------------------------------------------------------------------- /QtnProperty/CustomPropertyEditorDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/CustomPropertyEditorDialog.ui -------------------------------------------------------------------------------- /QtnProperty/CustomPropertyOptionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/CustomPropertyOptionsDialog.cpp -------------------------------------------------------------------------------- /QtnProperty/CustomPropertyOptionsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/CustomPropertyOptionsDialog.h -------------------------------------------------------------------------------- /QtnProperty/CustomPropertyOptionsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/CustomPropertyOptionsDialog.ui -------------------------------------------------------------------------------- /QtnProperty/CustomPropertyWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/CustomPropertyWidget.cpp -------------------------------------------------------------------------------- /QtnProperty/CustomPropertyWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/CustomPropertyWidget.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateBool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateBool.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateBool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateBool.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateDouble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateDouble.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateDouble.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateEnum.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateEnum.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateEnumFlags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateEnumFlags.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateEnumFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateEnumFlags.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateFloat.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateFloat.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateInt.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateInt.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQPoint.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQPoint.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQPointF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQPointF.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQPointF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQPointF.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQRect.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQRect.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQRectF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQRectF.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQRectF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQRectF.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQSize.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQSize.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQSizeF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQSizeF.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQSizeF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQSizeF.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQString.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateQString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateQString.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateUInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateUInt.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Core/PropertyDelegateUInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Core/PropertyDelegateUInt.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/GUI/PropertyDelegateButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/GUI/PropertyDelegateButton.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/GUI/PropertyDelegateButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/GUI/PropertyDelegateButton.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/GUI/PropertyDelegateQBrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/GUI/PropertyDelegateQBrush.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/GUI/PropertyDelegateQBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/GUI/PropertyDelegateQBrush.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/GUI/PropertyDelegateQColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/GUI/PropertyDelegateQColor.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/GUI/PropertyDelegateQColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/GUI/PropertyDelegateQColor.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/GUI/PropertyDelegateQFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/GUI/PropertyDelegateQFont.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/GUI/PropertyDelegateQFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/GUI/PropertyDelegateQFont.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/GUI/PropertyDelegateQPen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/GUI/PropertyDelegateQPen.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/GUI/PropertyDelegateQPen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/GUI/PropertyDelegateQPen.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/GUI/PropertyDelegateQVector3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/GUI/PropertyDelegateQVector3D.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/GUI/PropertyDelegateQVector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/GUI/PropertyDelegateQVector3D.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/PropertyDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/PropertyDelegate.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/PropertyDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/PropertyDelegate.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/PropertyDelegateAux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/PropertyDelegateAux.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/PropertyDelegateAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/PropertyDelegateAux.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/PropertyDelegateFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/PropertyDelegateFactory.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/PropertyDelegateFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/PropertyDelegateFactory.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyDelegateGeoCoord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyDelegateGeoCoord.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyDelegateGeoCoord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyDelegateGeoCoord.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyDelegateGeoPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyDelegateGeoPoint.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyDelegateGeoPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyDelegateGeoPoint.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyDelegateMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyDelegateMisc.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyDelegateMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyDelegateMisc.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyDelegatePropertySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyDelegatePropertySet.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyDelegatePropertySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyDelegatePropertySet.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyDelegateSliderBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyDelegateSliderBox.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyDelegateSliderBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyDelegateSliderBox.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyEditorAux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyEditorAux.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyEditorAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyEditorAux.h -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyEditorHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyEditorHandler.cpp -------------------------------------------------------------------------------- /QtnProperty/Delegates/Utils/PropertyEditorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Delegates/Utils/PropertyEditorHandler.h -------------------------------------------------------------------------------- /QtnProperty/Enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Enum.cpp -------------------------------------------------------------------------------- /QtnProperty/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Enum.h -------------------------------------------------------------------------------- /QtnProperty/FunctionalHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/FunctionalHelpers.h -------------------------------------------------------------------------------- /QtnProperty/GUI/PropertyButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/GUI/PropertyButton.cpp -------------------------------------------------------------------------------- /QtnProperty/GUI/PropertyButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/GUI/PropertyButton.h -------------------------------------------------------------------------------- /QtnProperty/GUI/PropertyQBrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/GUI/PropertyQBrush.cpp -------------------------------------------------------------------------------- /QtnProperty/GUI/PropertyQBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/GUI/PropertyQBrush.h -------------------------------------------------------------------------------- /QtnProperty/GUI/PropertyQColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/GUI/PropertyQColor.cpp -------------------------------------------------------------------------------- /QtnProperty/GUI/PropertyQColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/GUI/PropertyQColor.h -------------------------------------------------------------------------------- /QtnProperty/GUI/PropertyQFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/GUI/PropertyQFont.cpp -------------------------------------------------------------------------------- /QtnProperty/GUI/PropertyQFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/GUI/PropertyQFont.h -------------------------------------------------------------------------------- /QtnProperty/GUI/PropertyQPen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/GUI/PropertyQPen.cpp -------------------------------------------------------------------------------- /QtnProperty/GUI/PropertyQPen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/GUI/PropertyQPen.h -------------------------------------------------------------------------------- /QtnProperty/GUI/PropertyQVector3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/GUI/PropertyQVector3D.cpp -------------------------------------------------------------------------------- /QtnProperty/GUI/PropertyQVector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/GUI/PropertyQVector3D.h -------------------------------------------------------------------------------- /QtnProperty/IQtnPropertyStateProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/IQtnPropertyStateProvider.h -------------------------------------------------------------------------------- /QtnProperty/Install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Install.cpp -------------------------------------------------------------------------------- /QtnProperty/Install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Install.h -------------------------------------------------------------------------------- /QtnProperty/MultiProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/MultiProperty.cpp -------------------------------------------------------------------------------- /QtnProperty/MultiProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/MultiProperty.h -------------------------------------------------------------------------------- /QtnProperty/Property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Property.cpp -------------------------------------------------------------------------------- /QtnProperty/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Property.h -------------------------------------------------------------------------------- /QtnProperty/PropertyBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyBase.cpp -------------------------------------------------------------------------------- /QtnProperty/PropertyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyBase.h -------------------------------------------------------------------------------- /QtnProperty/PropertyConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyConnector.cpp -------------------------------------------------------------------------------- /QtnProperty/PropertyConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyConnector.h -------------------------------------------------------------------------------- /QtnProperty/PropertyCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyCore.h -------------------------------------------------------------------------------- /QtnProperty/PropertyDelegateAttrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyDelegateAttrs.h -------------------------------------------------------------------------------- /QtnProperty/PropertyDelegateMetaEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyDelegateMetaEnum.cpp -------------------------------------------------------------------------------- /QtnProperty/PropertyDelegateMetaEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyDelegateMetaEnum.h -------------------------------------------------------------------------------- /QtnProperty/PropertyGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyGUI.h -------------------------------------------------------------------------------- /QtnProperty/PropertyInt64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyInt64.cpp -------------------------------------------------------------------------------- /QtnProperty/PropertyInt64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyInt64.h -------------------------------------------------------------------------------- /QtnProperty/PropertyQKeySequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyQKeySequence.cpp -------------------------------------------------------------------------------- /QtnProperty/PropertyQKeySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyQKeySequence.h -------------------------------------------------------------------------------- /QtnProperty/PropertyQVariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyQVariant.cpp -------------------------------------------------------------------------------- /QtnProperty/PropertyQVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyQVariant.h -------------------------------------------------------------------------------- /QtnProperty/PropertySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertySet.cpp -------------------------------------------------------------------------------- /QtnProperty/PropertySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertySet.h -------------------------------------------------------------------------------- /QtnProperty/PropertyUInt64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyUInt64.cpp -------------------------------------------------------------------------------- /QtnProperty/PropertyUInt64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyUInt64.h -------------------------------------------------------------------------------- /QtnProperty/PropertyView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyView.cpp -------------------------------------------------------------------------------- /QtnProperty/PropertyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyView.h -------------------------------------------------------------------------------- /QtnProperty/PropertyWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyWidget.cpp -------------------------------------------------------------------------------- /QtnProperty/PropertyWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyWidget.h -------------------------------------------------------------------------------- /QtnProperty/PropertyWidgetEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyWidgetEx.cpp -------------------------------------------------------------------------------- /QtnProperty/PropertyWidgetEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/PropertyWidgetEx.h -------------------------------------------------------------------------------- /QtnProperty/QObjectPropertySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/QObjectPropertySet.cpp -------------------------------------------------------------------------------- /QtnProperty/QObjectPropertySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/QObjectPropertySet.h -------------------------------------------------------------------------------- /QtnProperty/QObjectPropertyWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/QObjectPropertyWidget.cpp -------------------------------------------------------------------------------- /QtnProperty/QObjectPropertyWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/QObjectPropertyWidget.h -------------------------------------------------------------------------------- /QtnProperty/QtnProperty.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/QtnProperty.pri -------------------------------------------------------------------------------- /QtnProperty/QtnProperty.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/QtnProperty.pro -------------------------------------------------------------------------------- /QtnProperty/QtnProperty.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/QtnProperty.qrc -------------------------------------------------------------------------------- /QtnProperty/StructPropertyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/StructPropertyBase.h -------------------------------------------------------------------------------- /QtnProperty/Translations/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Translations/en.ts -------------------------------------------------------------------------------- /QtnProperty/Translations/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Translations/ru.ts -------------------------------------------------------------------------------- /QtnProperty/Utils/AccessibilityProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/AccessibilityProxy.cpp -------------------------------------------------------------------------------- /QtnProperty/Utils/AccessibilityProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/AccessibilityProxy.h -------------------------------------------------------------------------------- /QtnProperty/Utils/DoubleSpinBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/DoubleSpinBox.cpp -------------------------------------------------------------------------------- /QtnProperty/Utils/DoubleSpinBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/DoubleSpinBox.h -------------------------------------------------------------------------------- /QtnProperty/Utils/InplaceEditing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/InplaceEditing.cpp -------------------------------------------------------------------------------- /QtnProperty/Utils/InplaceEditing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/InplaceEditing.h -------------------------------------------------------------------------------- /QtnProperty/Utils/MultilineTextDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/MultilineTextDialog.cpp -------------------------------------------------------------------------------- /QtnProperty/Utils/MultilineTextDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/MultilineTextDialog.h -------------------------------------------------------------------------------- /QtnProperty/Utils/MultilineTextDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/MultilineTextDialog.ui -------------------------------------------------------------------------------- /QtnProperty/Utils/QtnCompleterItemDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/QtnCompleterItemDelegate.cpp -------------------------------------------------------------------------------- /QtnProperty/Utils/QtnCompleterItemDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/QtnCompleterItemDelegate.h -------------------------------------------------------------------------------- /QtnProperty/Utils/QtnCompleterLineEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/QtnCompleterLineEdit.cpp -------------------------------------------------------------------------------- /QtnProperty/Utils/QtnCompleterLineEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/QtnCompleterLineEdit.h -------------------------------------------------------------------------------- /QtnProperty/Utils/QtnConnections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/QtnConnections.cpp -------------------------------------------------------------------------------- /QtnProperty/Utils/QtnConnections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/QtnConnections.h -------------------------------------------------------------------------------- /QtnProperty/Utils/QtnInt64SpinBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/QtnInt64SpinBox.cpp -------------------------------------------------------------------------------- /QtnProperty/Utils/QtnInt64SpinBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/Utils/QtnInt64SpinBox.h -------------------------------------------------------------------------------- /QtnProperty/VarProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/VarProperty.cpp -------------------------------------------------------------------------------- /QtnProperty/VarProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnProperty/VarProperty.h -------------------------------------------------------------------------------- /QtnPropertyDepend.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/QtnPropertyDepend.pri -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/TODO -------------------------------------------------------------------------------- /Tests/PEG/test.pef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/PEG/test.pef -------------------------------------------------------------------------------- /Tests/PEG/test.peg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/PEG/test.peg.cpp -------------------------------------------------------------------------------- /Tests/PEG/test.peg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/PEG/test.peg.h -------------------------------------------------------------------------------- /Tests/PEG/test2.pef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/PEG/test2.pef -------------------------------------------------------------------------------- /Tests/PEG/test2.peg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/PEG/test2.peg.cpp -------------------------------------------------------------------------------- /Tests/PEG/test2.peg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/PEG/test2.peg.h -------------------------------------------------------------------------------- /Tests/TestEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/TestEnum.cpp -------------------------------------------------------------------------------- /Tests/TestEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/TestEnum.h -------------------------------------------------------------------------------- /Tests/TestGeneratedProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/TestGeneratedProperty.cpp -------------------------------------------------------------------------------- /Tests/TestGeneratedProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/TestGeneratedProperty.h -------------------------------------------------------------------------------- /Tests/TestProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/TestProperty.cpp -------------------------------------------------------------------------------- /Tests/TestProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/TestProperty.h -------------------------------------------------------------------------------- /Tests/Tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/Tests.pro -------------------------------------------------------------------------------- /Tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/main.cpp -------------------------------------------------------------------------------- /Tests/suite_squish_test_suit/envvars: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/suite_squish_test_suit/objects.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/suite_squish_test_suit/objects.map -------------------------------------------------------------------------------- /Tests/suite_squish_test_suit/suite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/suite_squish_test_suit/suite.conf -------------------------------------------------------------------------------- /Tests/suite_squish_test_suit/tst_gui_test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtinuum/QtnProperty/HEAD/Tests/suite_squish_test_suit/tst_gui_test/test.js --------------------------------------------------------------------------------