Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #3079 from pblottiere/constraints
[FEATURE] widgets constraints
- Loading branch information
Showing
with
1,113 additions
and 45 deletions.
- +42 −1 python/core/qgseditformconfig.sip
- +1 −1 python/core/qgsfield.sip
- +38 −0 python/gui/editorwidgets/core/qgseditorwidgetwrapper.sip
- +14 −0 python/gui/editorwidgets/qgsrelationreferencewidgetwrapper.sip
- +34 −2 src/app/qgsattributetypedialog.cpp
- +39 −3 src/app/qgsattributetypedialog.h
- +14 −0 src/app/qgsfieldsproperties.cpp
- +3 −0 src/app/qgsfieldsproperties.h
- +47 −1 src/core/qgseditformconfig.cpp
- +50 −6 src/core/qgseditformconfig.h
- +5 −1 src/core/qgseditorwidgetconfig.h
- +6 −0 src/core/qgsfeature.cpp
- +2 −2 src/core/qgsvectorlayer.cpp
- +2 −2 src/core/qgsvectorlayer.h
- +7 −0 src/gui/editorwidgets/core/qgseditorwidgetregistry.cpp
- +77 −0 src/gui/editorwidgets/core/qgseditorwidgetwrapper.cpp
- +45 −0 src/gui/editorwidgets/core/qgseditorwidgetwrapper.h
- +5 −0 src/gui/editorwidgets/qgscolorwidgetwrapper.cpp
- +2 −0 src/gui/editorwidgets/qgscolorwidgetwrapper.h
- +17 −1 src/gui/editorwidgets/qgsexternalresourcewidgetwrapper.cpp
- +2 −0 src/gui/editorwidgets/qgsexternalresourcewidgetwrapper.h
- +13 −0 src/gui/editorwidgets/qgsfilenamewidgetwrapper.cpp
- +2 −0 src/gui/editorwidgets/qgsfilenamewidgetwrapper.h
- +13 −0 src/gui/editorwidgets/qgsphotowidgetwrapper.cpp
- +2 −0 src/gui/editorwidgets/qgsphotowidgetwrapper.h
- +1 −1 src/gui/editorwidgets/qgsrangewidgetfactory.cpp
- +1 −1 src/gui/editorwidgets/qgsrelationreferenceconfigdlg.cpp
- +1 −1 src/gui/editorwidgets/qgsrelationreferencefactory.cpp
- +11 −0 src/gui/editorwidgets/qgsrelationreferencewidgetwrapper.cpp
- +14 −0 src/gui/editorwidgets/qgsrelationreferencewidgetwrapper.h
- +13 −0 src/gui/editorwidgets/qgswebviewwidgetwrapper.cpp
- +2 −0 src/gui/editorwidgets/qgswebviewwidgetwrapper.h
- +258 −3 src/gui/qgsattributeform.cpp
- +19 −2 src/gui/qgsattributeform.h
- +62 −14 src/ui/qgsattributetypeedit.ui
- +4 −3 tests/src/gui/CMakeLists.txt
- +245 −0 tests/src/gui/testqgsattributeform.cpp
Oops, something went wrong.