├── .qmake.conf ├── .tag ├── CONTRIBUTORS.md ├── INSTALL.md ├── LICENSE.GPL3 ├── README.md ├── base.pri ├── doc ├── QMLLiveDoc ├── concepts.qdoc ├── doc.pri ├── doc.pro ├── examples.qdoc ├── examples │ ├── contentplugin.qdoc │ └── customruntime.qdoc ├── images │ ├── concept.png │ ├── contentplugin-example.png │ ├── creator_result.png │ ├── creator_shortcut.png │ ├── creator_tool.png │ ├── customruntime-example.png │ ├── favicon.png │ ├── icon_failover.png │ ├── icon_offline.png │ ├── icon_online.png │ ├── remote.png │ ├── runtime.png │ ├── server.png │ └── workbench.png ├── index.qdoc ├── installation.qdoc ├── ipc-group.qdoc ├── qmllive-group.qdoc ├── qmllive-online.qdocconf ├── qmllive-project.qdocconf ├── qmllive.qdocconf ├── style │ └── qt5-sidebar.html └── usage.qdoc ├── examples ├── contentplugin │ ├── contentplugin.pro │ ├── mycontentadapterplugin.cpp │ ├── mycontentadapterplugin.h │ ├── plugin.qml │ └── res.qrc ├── customruntime │ ├── customruntime.pro │ ├── icon.png │ ├── main.cpp │ └── qml │ │ ├── customruntime-item.qml │ │ └── customruntime-window.qml └── examples.pro ├── header.GPL-QTAS ├── icons ├── appicon.icns ├── appicon.ico └── appicon.rc ├── qmake-features └── config-output.prf ├── qmllive.pri ├── qmllive.pro ├── src ├── bench │ ├── aboutdialog.cpp │ ├── aboutdialog.h │ ├── allhostswidget.cpp │ ├── allhostswidget.h │ ├── appearanceoptionpage.cpp │ ├── appearanceoptionpage.h │ ├── appearanceoptionpage.ui │ ├── autodiscoveryhostsdialog.cpp │ ├── autodiscoveryhostsdialog.h │ ├── autodiscoveryhostsdialog.ui │ ├── bench.pro │ ├── benchlivenodeengine.cpp │ ├── benchlivenodeengine.h │ ├── directorypreviewadapter.cpp │ ├── directorypreviewadapter.h │ ├── dummydelegate.cpp │ ├── dummydelegate.h │ ├── host.cpp │ ├── host.h │ ├── hostdiscoverymanager.cpp │ ├── hostdiscoverymanager.h │ ├── hostmanager.cpp │ ├── hostmanager.h │ ├── hostmodel.cpp │ ├── hostmodel.h │ ├── hostsoptionpage.cpp │ ├── hostsoptionpage.h │ ├── hostsoptionpage.ui │ ├── hostwidget.cpp │ ├── hostwidget.h │ ├── httpproxyoptionpage.cpp │ ├── httpproxyoptionpage.h │ ├── httpproxyoptionpage.ui │ ├── importpathoptionpage.cpp │ ├── importpathoptionpage.h │ ├── importpathoptionpage.ui │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── newprojectwizard.cpp │ ├── newprojectwizard.h │ ├── options.cpp │ ├── options.h │ ├── optionsdialog.cpp │ ├── optionsdialog.h │ ├── optionsdialog.ui │ ├── previewimageprovider.cpp │ ├── previewimageprovider.h │ ├── qmlpreviewadapter.cpp │ ├── qmlpreviewadapter.h │ ├── reload.pro │ └── reload.qrc ├── contentadapterinterface.h ├── contentpluginfactory.cpp ├── contentpluginfactory.h ├── fontadapter.cpp ├── fontadapter.h ├── imageadapter.cpp ├── imageadapter.h ├── images │ ├── edit.svg │ ├── error_ball.svg │ ├── favicon.png │ ├── linked.svg │ ├── menu.svg │ ├── okay_ball.svg │ ├── publish.svg │ ├── refresh.svg │ └── warning_ball.svg ├── ipc │ ├── ipc.pri │ ├── ipcclient.cpp │ ├── ipcclient.h │ ├── ipcconnection.cpp │ ├── ipcconnection.h │ ├── ipcserver.cpp │ └── ipcserver.h ├── lib.pri ├── lib.pro ├── livedocument.cpp ├── livedocument.h ├── livehubengine.cpp ├── livehubengine.h ├── livenodeengine.cpp ├── livenodeengine.h ├── livert.qrc ├── livert │ ├── error_qt5.qml │ ├── error_qt5_controls.qml │ ├── folderview_qt5.qml │ ├── folderview_qt5_controls.qml │ ├── fontviewer_qt5.qml │ ├── fontviewer_qt5_controls.qml │ ├── imageviewer_qt5.qml │ ├── imageviewer_qt5_controls.qml │ ├── logo.png │ └── no.png ├── liveruntime.cpp ├── liveruntime.h ├── logger.cpp ├── logger.h ├── logreceiver.cpp ├── logreceiver.h ├── previewGenerator │ ├── main.cpp │ └── previewGenerator.pro ├── projectmanager.cpp ├── projectmanager.h ├── qmlhelper.cpp ├── qmlhelper.h ├── qmllive.cpp ├── qmllive.h ├── qmllive_global.h ├── qmllive_version.h ├── remotelogger.cpp ├── remotelogger.h ├── remotepublisher.cpp ├── remotepublisher.h ├── remotereceiver.cpp ├── remotereceiver.h ├── runtime │ ├── main.cpp │ ├── qml.qrc │ ├── qmlsplash │ │ ├── logo_white.png │ │ ├── splash-qt4.qml │ │ └── splash-qt5.qml │ └── runtime.pro ├── src.pri ├── src.pro ├── watcher.cpp ├── watcher.h └── widgets │ ├── filesystemmodel.cpp │ ├── filesystemmodel.h │ ├── logview.cpp │ ├── logview.h │ ├── widgets.pri │ ├── windowwidget.cpp │ ├── windowwidget.h │ ├── workspacedelegate.cpp │ ├── workspacedelegate.h │ ├── workspaceview.cpp │ └── workspaceview.h ├── sync.profile ├── testData ├── mixed │ ├── collision_avoidance@144.png │ ├── collision_avoidance@192.png │ ├── collision_avoidance@32.png │ ├── collision_avoidance@48.png │ ├── collision_avoidance@72.png │ ├── collision_avoidance@96.png │ ├── home@144.png │ ├── home@192.png │ ├── home@32.png │ ├── home@48.png │ ├── home@72.png │ └── home@96.png └── qml │ ├── explicit-size.qml │ ├── no-explicit-size.qml │ └── two-windows.qml └── tests ├── manual_tests └── javascript │ ├── lib.js │ ├── pragma_main.qml │ └── pragmalib.js ├── testipc ├── testipc.pro └── tst_testipc.cpp ├── tests.pro └── testsync └── tst_testsync.cpp /.qmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/.qmake.conf -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | 4c436ea99e3afeb26e09cac147e1f2da39d52b59 2 | -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.GPL3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/LICENSE.GPL3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/README.md -------------------------------------------------------------------------------- /base.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/base.pri -------------------------------------------------------------------------------- /doc/QMLLiveDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/QMLLiveDoc -------------------------------------------------------------------------------- /doc/concepts.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/concepts.qdoc -------------------------------------------------------------------------------- /doc/doc.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/doc.pri -------------------------------------------------------------------------------- /doc/doc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/doc.pro -------------------------------------------------------------------------------- /doc/examples.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/examples.qdoc -------------------------------------------------------------------------------- /doc/examples/contentplugin.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/examples/contentplugin.qdoc -------------------------------------------------------------------------------- /doc/examples/customruntime.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/examples/customruntime.qdoc -------------------------------------------------------------------------------- /doc/images/concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/concept.png -------------------------------------------------------------------------------- /doc/images/contentplugin-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/contentplugin-example.png -------------------------------------------------------------------------------- /doc/images/creator_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/creator_result.png -------------------------------------------------------------------------------- /doc/images/creator_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/creator_shortcut.png -------------------------------------------------------------------------------- /doc/images/creator_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/creator_tool.png -------------------------------------------------------------------------------- /doc/images/customruntime-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/customruntime-example.png -------------------------------------------------------------------------------- /doc/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/favicon.png -------------------------------------------------------------------------------- /doc/images/icon_failover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/icon_failover.png -------------------------------------------------------------------------------- /doc/images/icon_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/icon_offline.png -------------------------------------------------------------------------------- /doc/images/icon_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/icon_online.png -------------------------------------------------------------------------------- /doc/images/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/remote.png -------------------------------------------------------------------------------- /doc/images/runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/runtime.png -------------------------------------------------------------------------------- /doc/images/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/server.png -------------------------------------------------------------------------------- /doc/images/workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/images/workbench.png -------------------------------------------------------------------------------- /doc/index.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/index.qdoc -------------------------------------------------------------------------------- /doc/installation.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/installation.qdoc -------------------------------------------------------------------------------- /doc/ipc-group.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/ipc-group.qdoc -------------------------------------------------------------------------------- /doc/qmllive-group.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/qmllive-group.qdoc -------------------------------------------------------------------------------- /doc/qmllive-online.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/qmllive-online.qdocconf -------------------------------------------------------------------------------- /doc/qmllive-project.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/qmllive-project.qdocconf -------------------------------------------------------------------------------- /doc/qmllive.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/qmllive.qdocconf -------------------------------------------------------------------------------- /doc/style/qt5-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/style/qt5-sidebar.html -------------------------------------------------------------------------------- /doc/usage.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/doc/usage.qdoc -------------------------------------------------------------------------------- /examples/contentplugin/contentplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/examples/contentplugin/contentplugin.pro -------------------------------------------------------------------------------- /examples/contentplugin/mycontentadapterplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/examples/contentplugin/mycontentadapterplugin.cpp -------------------------------------------------------------------------------- /examples/contentplugin/mycontentadapterplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/examples/contentplugin/mycontentadapterplugin.h -------------------------------------------------------------------------------- /examples/contentplugin/plugin.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/examples/contentplugin/plugin.qml -------------------------------------------------------------------------------- /examples/contentplugin/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/examples/contentplugin/res.qrc -------------------------------------------------------------------------------- /examples/customruntime/customruntime.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/examples/customruntime/customruntime.pro -------------------------------------------------------------------------------- /examples/customruntime/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/examples/customruntime/icon.png -------------------------------------------------------------------------------- /examples/customruntime/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/examples/customruntime/main.cpp -------------------------------------------------------------------------------- /examples/customruntime/qml/customruntime-item.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/examples/customruntime/qml/customruntime-item.qml -------------------------------------------------------------------------------- /examples/customruntime/qml/customruntime-window.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/examples/customruntime/qml/customruntime-window.qml -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/examples/examples.pro -------------------------------------------------------------------------------- /header.GPL-QTAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/header.GPL-QTAS -------------------------------------------------------------------------------- /icons/appicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/icons/appicon.icns -------------------------------------------------------------------------------- /icons/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/icons/appicon.ico -------------------------------------------------------------------------------- /icons/appicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/icons/appicon.rc -------------------------------------------------------------------------------- /qmake-features/config-output.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/qmake-features/config-output.prf -------------------------------------------------------------------------------- /qmllive.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/qmllive.pri -------------------------------------------------------------------------------- /qmllive.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/qmllive.pro -------------------------------------------------------------------------------- /src/bench/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/aboutdialog.cpp -------------------------------------------------------------------------------- /src/bench/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/aboutdialog.h -------------------------------------------------------------------------------- /src/bench/allhostswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/allhostswidget.cpp -------------------------------------------------------------------------------- /src/bench/allhostswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/allhostswidget.h -------------------------------------------------------------------------------- /src/bench/appearanceoptionpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/appearanceoptionpage.cpp -------------------------------------------------------------------------------- /src/bench/appearanceoptionpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/appearanceoptionpage.h -------------------------------------------------------------------------------- /src/bench/appearanceoptionpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/appearanceoptionpage.ui -------------------------------------------------------------------------------- /src/bench/autodiscoveryhostsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/autodiscoveryhostsdialog.cpp -------------------------------------------------------------------------------- /src/bench/autodiscoveryhostsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/autodiscoveryhostsdialog.h -------------------------------------------------------------------------------- /src/bench/autodiscoveryhostsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/autodiscoveryhostsdialog.ui -------------------------------------------------------------------------------- /src/bench/bench.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/bench.pro -------------------------------------------------------------------------------- /src/bench/benchlivenodeengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/benchlivenodeengine.cpp -------------------------------------------------------------------------------- /src/bench/benchlivenodeengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/benchlivenodeengine.h -------------------------------------------------------------------------------- /src/bench/directorypreviewadapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/directorypreviewadapter.cpp -------------------------------------------------------------------------------- /src/bench/directorypreviewadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/directorypreviewadapter.h -------------------------------------------------------------------------------- /src/bench/dummydelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/dummydelegate.cpp -------------------------------------------------------------------------------- /src/bench/dummydelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/dummydelegate.h -------------------------------------------------------------------------------- /src/bench/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/host.cpp -------------------------------------------------------------------------------- /src/bench/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/host.h -------------------------------------------------------------------------------- /src/bench/hostdiscoverymanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/hostdiscoverymanager.cpp -------------------------------------------------------------------------------- /src/bench/hostdiscoverymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/hostdiscoverymanager.h -------------------------------------------------------------------------------- /src/bench/hostmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/hostmanager.cpp -------------------------------------------------------------------------------- /src/bench/hostmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/hostmanager.h -------------------------------------------------------------------------------- /src/bench/hostmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/hostmodel.cpp -------------------------------------------------------------------------------- /src/bench/hostmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/hostmodel.h -------------------------------------------------------------------------------- /src/bench/hostsoptionpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/hostsoptionpage.cpp -------------------------------------------------------------------------------- /src/bench/hostsoptionpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/hostsoptionpage.h -------------------------------------------------------------------------------- /src/bench/hostsoptionpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/hostsoptionpage.ui -------------------------------------------------------------------------------- /src/bench/hostwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/hostwidget.cpp -------------------------------------------------------------------------------- /src/bench/hostwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/hostwidget.h -------------------------------------------------------------------------------- /src/bench/httpproxyoptionpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/httpproxyoptionpage.cpp -------------------------------------------------------------------------------- /src/bench/httpproxyoptionpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/httpproxyoptionpage.h -------------------------------------------------------------------------------- /src/bench/httpproxyoptionpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/httpproxyoptionpage.ui -------------------------------------------------------------------------------- /src/bench/importpathoptionpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/importpathoptionpage.cpp -------------------------------------------------------------------------------- /src/bench/importpathoptionpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/importpathoptionpage.h -------------------------------------------------------------------------------- /src/bench/importpathoptionpage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/importpathoptionpage.ui -------------------------------------------------------------------------------- /src/bench/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/main.cpp -------------------------------------------------------------------------------- /src/bench/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/mainwindow.cpp -------------------------------------------------------------------------------- /src/bench/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/mainwindow.h -------------------------------------------------------------------------------- /src/bench/newprojectwizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/newprojectwizard.cpp -------------------------------------------------------------------------------- /src/bench/newprojectwizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/newprojectwizard.h -------------------------------------------------------------------------------- /src/bench/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/options.cpp -------------------------------------------------------------------------------- /src/bench/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/options.h -------------------------------------------------------------------------------- /src/bench/optionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/optionsdialog.cpp -------------------------------------------------------------------------------- /src/bench/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/optionsdialog.h -------------------------------------------------------------------------------- /src/bench/optionsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/optionsdialog.ui -------------------------------------------------------------------------------- /src/bench/previewimageprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/previewimageprovider.cpp -------------------------------------------------------------------------------- /src/bench/previewimageprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/previewimageprovider.h -------------------------------------------------------------------------------- /src/bench/qmlpreviewadapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/qmlpreviewadapter.cpp -------------------------------------------------------------------------------- /src/bench/qmlpreviewadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/qmlpreviewadapter.h -------------------------------------------------------------------------------- /src/bench/reload.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/reload.pro -------------------------------------------------------------------------------- /src/bench/reload.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/bench/reload.qrc -------------------------------------------------------------------------------- /src/contentadapterinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/contentadapterinterface.h -------------------------------------------------------------------------------- /src/contentpluginfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/contentpluginfactory.cpp -------------------------------------------------------------------------------- /src/contentpluginfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/contentpluginfactory.h -------------------------------------------------------------------------------- /src/fontadapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/fontadapter.cpp -------------------------------------------------------------------------------- /src/fontadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/fontadapter.h -------------------------------------------------------------------------------- /src/imageadapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/imageadapter.cpp -------------------------------------------------------------------------------- /src/imageadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/imageadapter.h -------------------------------------------------------------------------------- /src/images/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/images/edit.svg -------------------------------------------------------------------------------- /src/images/error_ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/images/error_ball.svg -------------------------------------------------------------------------------- /src/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/images/favicon.png -------------------------------------------------------------------------------- /src/images/linked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/images/linked.svg -------------------------------------------------------------------------------- /src/images/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/images/menu.svg -------------------------------------------------------------------------------- /src/images/okay_ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/images/okay_ball.svg -------------------------------------------------------------------------------- /src/images/publish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/images/publish.svg -------------------------------------------------------------------------------- /src/images/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/images/refresh.svg -------------------------------------------------------------------------------- /src/images/warning_ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/images/warning_ball.svg -------------------------------------------------------------------------------- /src/ipc/ipc.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/ipc/ipc.pri -------------------------------------------------------------------------------- /src/ipc/ipcclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/ipc/ipcclient.cpp -------------------------------------------------------------------------------- /src/ipc/ipcclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/ipc/ipcclient.h -------------------------------------------------------------------------------- /src/ipc/ipcconnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/ipc/ipcconnection.cpp -------------------------------------------------------------------------------- /src/ipc/ipcconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/ipc/ipcconnection.h -------------------------------------------------------------------------------- /src/ipc/ipcserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/ipc/ipcserver.cpp -------------------------------------------------------------------------------- /src/ipc/ipcserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/ipc/ipcserver.h -------------------------------------------------------------------------------- /src/lib.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/lib.pri -------------------------------------------------------------------------------- /src/lib.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/lib.pro -------------------------------------------------------------------------------- /src/livedocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livedocument.cpp -------------------------------------------------------------------------------- /src/livedocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livedocument.h -------------------------------------------------------------------------------- /src/livehubengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livehubengine.cpp -------------------------------------------------------------------------------- /src/livehubengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livehubengine.h -------------------------------------------------------------------------------- /src/livenodeengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livenodeengine.cpp -------------------------------------------------------------------------------- /src/livenodeengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livenodeengine.h -------------------------------------------------------------------------------- /src/livert.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livert.qrc -------------------------------------------------------------------------------- /src/livert/error_qt5.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livert/error_qt5.qml -------------------------------------------------------------------------------- /src/livert/error_qt5_controls.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livert/error_qt5_controls.qml -------------------------------------------------------------------------------- /src/livert/folderview_qt5.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livert/folderview_qt5.qml -------------------------------------------------------------------------------- /src/livert/folderview_qt5_controls.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livert/folderview_qt5_controls.qml -------------------------------------------------------------------------------- /src/livert/fontviewer_qt5.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livert/fontviewer_qt5.qml -------------------------------------------------------------------------------- /src/livert/fontviewer_qt5_controls.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livert/fontviewer_qt5_controls.qml -------------------------------------------------------------------------------- /src/livert/imageviewer_qt5.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livert/imageviewer_qt5.qml -------------------------------------------------------------------------------- /src/livert/imageviewer_qt5_controls.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livert/imageviewer_qt5_controls.qml -------------------------------------------------------------------------------- /src/livert/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livert/logo.png -------------------------------------------------------------------------------- /src/livert/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/livert/no.png -------------------------------------------------------------------------------- /src/liveruntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/liveruntime.cpp -------------------------------------------------------------------------------- /src/liveruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/liveruntime.h -------------------------------------------------------------------------------- /src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/logger.cpp -------------------------------------------------------------------------------- /src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/logger.h -------------------------------------------------------------------------------- /src/logreceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/logreceiver.cpp -------------------------------------------------------------------------------- /src/logreceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/logreceiver.h -------------------------------------------------------------------------------- /src/previewGenerator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/previewGenerator/main.cpp -------------------------------------------------------------------------------- /src/previewGenerator/previewGenerator.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/previewGenerator/previewGenerator.pro -------------------------------------------------------------------------------- /src/projectmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/projectmanager.cpp -------------------------------------------------------------------------------- /src/projectmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/projectmanager.h -------------------------------------------------------------------------------- /src/qmlhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/qmlhelper.cpp -------------------------------------------------------------------------------- /src/qmlhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/qmlhelper.h -------------------------------------------------------------------------------- /src/qmllive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/qmllive.cpp -------------------------------------------------------------------------------- /src/qmllive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/qmllive.h -------------------------------------------------------------------------------- /src/qmllive_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/qmllive_global.h -------------------------------------------------------------------------------- /src/qmllive_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/qmllive_version.h -------------------------------------------------------------------------------- /src/remotelogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/remotelogger.cpp -------------------------------------------------------------------------------- /src/remotelogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/remotelogger.h -------------------------------------------------------------------------------- /src/remotepublisher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/remotepublisher.cpp -------------------------------------------------------------------------------- /src/remotepublisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/remotepublisher.h -------------------------------------------------------------------------------- /src/remotereceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/remotereceiver.cpp -------------------------------------------------------------------------------- /src/remotereceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/remotereceiver.h -------------------------------------------------------------------------------- /src/runtime/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/runtime/main.cpp -------------------------------------------------------------------------------- /src/runtime/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/runtime/qml.qrc -------------------------------------------------------------------------------- /src/runtime/qmlsplash/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/runtime/qmlsplash/logo_white.png -------------------------------------------------------------------------------- /src/runtime/qmlsplash/splash-qt4.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/runtime/qmlsplash/splash-qt4.qml -------------------------------------------------------------------------------- /src/runtime/qmlsplash/splash-qt5.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/runtime/qmlsplash/splash-qt5.qml -------------------------------------------------------------------------------- /src/runtime/runtime.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/runtime/runtime.pro -------------------------------------------------------------------------------- /src/src.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/src.pri -------------------------------------------------------------------------------- /src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/src.pro -------------------------------------------------------------------------------- /src/watcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/watcher.cpp -------------------------------------------------------------------------------- /src/watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/watcher.h -------------------------------------------------------------------------------- /src/widgets/filesystemmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/widgets/filesystemmodel.cpp -------------------------------------------------------------------------------- /src/widgets/filesystemmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/widgets/filesystemmodel.h -------------------------------------------------------------------------------- /src/widgets/logview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/widgets/logview.cpp -------------------------------------------------------------------------------- /src/widgets/logview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/widgets/logview.h -------------------------------------------------------------------------------- /src/widgets/widgets.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/widgets/widgets.pri -------------------------------------------------------------------------------- /src/widgets/windowwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/widgets/windowwidget.cpp -------------------------------------------------------------------------------- /src/widgets/windowwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/widgets/windowwidget.h -------------------------------------------------------------------------------- /src/widgets/workspacedelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/widgets/workspacedelegate.cpp -------------------------------------------------------------------------------- /src/widgets/workspacedelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/widgets/workspacedelegate.h -------------------------------------------------------------------------------- /src/widgets/workspaceview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/widgets/workspaceview.cpp -------------------------------------------------------------------------------- /src/widgets/workspaceview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/src/widgets/workspaceview.h -------------------------------------------------------------------------------- /sync.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/sync.profile -------------------------------------------------------------------------------- /testData/mixed/collision_avoidance@144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/mixed/collision_avoidance@144.png -------------------------------------------------------------------------------- /testData/mixed/collision_avoidance@192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/mixed/collision_avoidance@192.png -------------------------------------------------------------------------------- /testData/mixed/collision_avoidance@32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/mixed/collision_avoidance@32.png -------------------------------------------------------------------------------- /testData/mixed/collision_avoidance@48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/mixed/collision_avoidance@48.png -------------------------------------------------------------------------------- /testData/mixed/collision_avoidance@72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/mixed/collision_avoidance@72.png -------------------------------------------------------------------------------- /testData/mixed/collision_avoidance@96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/mixed/collision_avoidance@96.png -------------------------------------------------------------------------------- /testData/mixed/home@144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/mixed/home@144.png -------------------------------------------------------------------------------- /testData/mixed/home@192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/mixed/home@192.png -------------------------------------------------------------------------------- /testData/mixed/home@32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/mixed/home@32.png -------------------------------------------------------------------------------- /testData/mixed/home@48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/mixed/home@48.png -------------------------------------------------------------------------------- /testData/mixed/home@72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/mixed/home@72.png -------------------------------------------------------------------------------- /testData/mixed/home@96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/mixed/home@96.png -------------------------------------------------------------------------------- /testData/qml/explicit-size.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/qml/explicit-size.qml -------------------------------------------------------------------------------- /testData/qml/no-explicit-size.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/qml/no-explicit-size.qml -------------------------------------------------------------------------------- /testData/qml/two-windows.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/testData/qml/two-windows.qml -------------------------------------------------------------------------------- /tests/manual_tests/javascript/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/tests/manual_tests/javascript/lib.js -------------------------------------------------------------------------------- /tests/manual_tests/javascript/pragma_main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/tests/manual_tests/javascript/pragma_main.qml -------------------------------------------------------------------------------- /tests/manual_tests/javascript/pragmalib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/tests/manual_tests/javascript/pragmalib.js -------------------------------------------------------------------------------- /tests/testipc/testipc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/tests/testipc/testipc.pro -------------------------------------------------------------------------------- /tests/testipc/tst_testipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/tests/testipc/tst_testipc.cpp -------------------------------------------------------------------------------- /tests/tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/tests/tests.pro -------------------------------------------------------------------------------- /tests/testsync/tst_testsync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtproject/qt-apps-qmllive/HEAD/tests/testsync/tst_testsync.cpp --------------------------------------------------------------------------------