├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── WindowsUsage.md ├── dub.json ├── examples ├── abstractitemmodel │ ├── .gitignore │ ├── dub.json │ └── source │ │ ├── app.d │ │ ├── app.qml │ │ └── model.d ├── contactapp │ ├── .gitignore │ ├── dub.json │ └── source │ │ ├── app.d │ │ ├── app.qml │ │ ├── applicationlogic.d │ │ ├── contact.d │ │ └── contactlist.d ├── helloworld │ ├── .gitignore │ ├── dub.json │ └── source │ │ ├── app.d │ │ └── app.qml ├── qmlregistertype │ ├── .gitignore │ ├── dub.json │ └── source │ │ ├── app.d │ │ ├── app.qml │ │ └── contact.d ├── receivesignals │ ├── .gitignore │ ├── dub.sdl │ └── source │ │ ├── app.d │ │ ├── app.qml │ │ ├── receiver.d │ │ └── sender.d ├── resourcebundling │ ├── .gitignore │ ├── dub.sdl │ └── source │ │ ├── app.d │ │ ├── app.qml │ │ └── app.qrc ├── simpledata │ ├── .gitignore │ ├── dub.json │ └── source │ │ ├── app.d │ │ └── app.qml └── slotsandproperties │ ├── dub.json │ └── source │ ├── app.d │ ├── app.qml │ └── contact.d └── source └── dqml ├── dothersideinterface.d ├── global.d ├── package.d ├── qabstractitemmodel.d ├── qabstractlistmodel.d ├── qabstracttablemodel.d ├── qapplication.d ├── qcoreapplication.d ├── qdeclarative.d ├── qguiapplication.d ├── qhashintbytearray.d ├── qmetaobject.d ├── qmetatype.d ├── qmodelindex.d ├── qobject.d ├── qobjectgenerators.d ├── qqmlapplicationengine.d ├── qqmlcontext.d ├── qquickview.d ├── qresource.d ├── qt.d ├── qurl.d └── qvariant.d /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/README.md -------------------------------------------------------------------------------- /WindowsUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/WindowsUsage.md -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/dub.json -------------------------------------------------------------------------------- /examples/abstractitemmodel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/abstractitemmodel/.gitignore -------------------------------------------------------------------------------- /examples/abstractitemmodel/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/abstractitemmodel/dub.json -------------------------------------------------------------------------------- /examples/abstractitemmodel/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/abstractitemmodel/source/app.d -------------------------------------------------------------------------------- /examples/abstractitemmodel/source/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/abstractitemmodel/source/app.qml -------------------------------------------------------------------------------- /examples/abstractitemmodel/source/model.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/abstractitemmodel/source/model.d -------------------------------------------------------------------------------- /examples/contactapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/contactapp/.gitignore -------------------------------------------------------------------------------- /examples/contactapp/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/contactapp/dub.json -------------------------------------------------------------------------------- /examples/contactapp/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/contactapp/source/app.d -------------------------------------------------------------------------------- /examples/contactapp/source/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/contactapp/source/app.qml -------------------------------------------------------------------------------- /examples/contactapp/source/applicationlogic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/contactapp/source/applicationlogic.d -------------------------------------------------------------------------------- /examples/contactapp/source/contact.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/contactapp/source/contact.d -------------------------------------------------------------------------------- /examples/contactapp/source/contactlist.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/contactapp/source/contactlist.d -------------------------------------------------------------------------------- /examples/helloworld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/helloworld/.gitignore -------------------------------------------------------------------------------- /examples/helloworld/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/helloworld/dub.json -------------------------------------------------------------------------------- /examples/helloworld/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/helloworld/source/app.d -------------------------------------------------------------------------------- /examples/helloworld/source/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/helloworld/source/app.qml -------------------------------------------------------------------------------- /examples/qmlregistertype/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/qmlregistertype/.gitignore -------------------------------------------------------------------------------- /examples/qmlregistertype/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/qmlregistertype/dub.json -------------------------------------------------------------------------------- /examples/qmlregistertype/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/qmlregistertype/source/app.d -------------------------------------------------------------------------------- /examples/qmlregistertype/source/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/qmlregistertype/source/app.qml -------------------------------------------------------------------------------- /examples/qmlregistertype/source/contact.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/qmlregistertype/source/contact.d -------------------------------------------------------------------------------- /examples/receivesignals/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/receivesignals/.gitignore -------------------------------------------------------------------------------- /examples/receivesignals/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/receivesignals/dub.sdl -------------------------------------------------------------------------------- /examples/receivesignals/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/receivesignals/source/app.d -------------------------------------------------------------------------------- /examples/receivesignals/source/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/receivesignals/source/app.qml -------------------------------------------------------------------------------- /examples/receivesignals/source/receiver.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/receivesignals/source/receiver.d -------------------------------------------------------------------------------- /examples/receivesignals/source/sender.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/receivesignals/source/sender.d -------------------------------------------------------------------------------- /examples/resourcebundling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/resourcebundling/.gitignore -------------------------------------------------------------------------------- /examples/resourcebundling/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/resourcebundling/dub.sdl -------------------------------------------------------------------------------- /examples/resourcebundling/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/resourcebundling/source/app.d -------------------------------------------------------------------------------- /examples/resourcebundling/source/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/resourcebundling/source/app.qml -------------------------------------------------------------------------------- /examples/resourcebundling/source/app.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/resourcebundling/source/app.qrc -------------------------------------------------------------------------------- /examples/simpledata/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/simpledata/.gitignore -------------------------------------------------------------------------------- /examples/simpledata/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/simpledata/dub.json -------------------------------------------------------------------------------- /examples/simpledata/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/simpledata/source/app.d -------------------------------------------------------------------------------- /examples/simpledata/source/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/simpledata/source/app.qml -------------------------------------------------------------------------------- /examples/slotsandproperties/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/slotsandproperties/dub.json -------------------------------------------------------------------------------- /examples/slotsandproperties/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/slotsandproperties/source/app.d -------------------------------------------------------------------------------- /examples/slotsandproperties/source/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/slotsandproperties/source/app.qml -------------------------------------------------------------------------------- /examples/slotsandproperties/source/contact.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/examples/slotsandproperties/source/contact.d -------------------------------------------------------------------------------- /source/dqml/dothersideinterface.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/dothersideinterface.d -------------------------------------------------------------------------------- /source/dqml/global.d: -------------------------------------------------------------------------------- 1 | module dqml.global; 2 | 3 | enum Ownership { Take, Clone }; 4 | -------------------------------------------------------------------------------- /source/dqml/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/package.d -------------------------------------------------------------------------------- /source/dqml/qabstractitemmodel.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qabstractitemmodel.d -------------------------------------------------------------------------------- /source/dqml/qabstractlistmodel.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qabstractlistmodel.d -------------------------------------------------------------------------------- /source/dqml/qabstracttablemodel.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qabstracttablemodel.d -------------------------------------------------------------------------------- /source/dqml/qapplication.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qapplication.d -------------------------------------------------------------------------------- /source/dqml/qcoreapplication.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qcoreapplication.d -------------------------------------------------------------------------------- /source/dqml/qdeclarative.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qdeclarative.d -------------------------------------------------------------------------------- /source/dqml/qguiapplication.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qguiapplication.d -------------------------------------------------------------------------------- /source/dqml/qhashintbytearray.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qhashintbytearray.d -------------------------------------------------------------------------------- /source/dqml/qmetaobject.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qmetaobject.d -------------------------------------------------------------------------------- /source/dqml/qmetatype.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qmetatype.d -------------------------------------------------------------------------------- /source/dqml/qmodelindex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qmodelindex.d -------------------------------------------------------------------------------- /source/dqml/qobject.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qobject.d -------------------------------------------------------------------------------- /source/dqml/qobjectgenerators.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qobjectgenerators.d -------------------------------------------------------------------------------- /source/dqml/qqmlapplicationengine.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qqmlapplicationengine.d -------------------------------------------------------------------------------- /source/dqml/qqmlcontext.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qqmlcontext.d -------------------------------------------------------------------------------- /source/dqml/qquickview.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qquickview.d -------------------------------------------------------------------------------- /source/dqml/qresource.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qresource.d -------------------------------------------------------------------------------- /source/dqml/qt.d: -------------------------------------------------------------------------------- 1 | module dqml.qt; 2 | 3 | public const int UserRole = 0x100; 4 | -------------------------------------------------------------------------------- /source/dqml/qurl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qurl.d -------------------------------------------------------------------------------- /source/dqml/qvariant.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filcuc/dqml/HEAD/source/dqml/qvariant.d --------------------------------------------------------------------------------