From 64551c373988866607cc4af49e8b3e55aa0d218e Mon Sep 17 00:00:00 2001 From: Tasuku Suzuki Date: Thu, 4 Jan 2018 23:43:58 +0900 Subject: Add demo video player app for CES2018 Change-Id: I4fb664a8520f02bc8e8eb8a87aa14c52d0fe8800 Signed-off-by: Tasuku Suzuki --- package/HMI_AppLauncher_VideoPlayer_Active-01.png | Bin 0 -> 26944 bytes package/HMI_AppLauncher_VideoPlayer_Active-01.svg | 269 +++++++++++++++++++++ .../HMI_AppLauncher_VideoPlayer_Inactive-01.png | Bin 0 -> 14631 bytes .../HMI_AppLauncher_VideoPlayer_Inactive-01.svg | 259 ++++++++++++++++++++ package/config.xml | 20 ++ package/icon.svg | 266 ++++++++++++++++++++ package/package.pro | 23 ++ 7 files changed, 837 insertions(+) create mode 100644 package/HMI_AppLauncher_VideoPlayer_Active-01.png create mode 100644 package/HMI_AppLauncher_VideoPlayer_Active-01.svg create mode 100644 package/HMI_AppLauncher_VideoPlayer_Inactive-01.png create mode 100644 package/HMI_AppLauncher_VideoPlayer_Inactive-01.svg create mode 100644 package/config.xml create mode 100644 package/icon.svg create mode 100644 package/package.pro (limited to 'package') diff --git a/package/HMI_AppLauncher_VideoPlayer_Active-01.png b/package/HMI_AppLauncher_VideoPlayer_Active-01.png new file mode 100644 index 0000000..da194f4 Binary files /dev/null and b/package/HMI_AppLauncher_VideoPlayer_Active-01.png differ diff --git a/package/HMI_AppLauncher_VideoPlayer_Active-01.svg b/package/HMI_AppLauncher_VideoPlayer_Active-01.svg new file mode 100644 index 0000000..11d3668 --- /dev/null +++ b/package/HMI_AppLauncher_VideoPlayer_Active-01.svg @@ -0,0 +1,269 @@ + + + +image/svg+xmlVIDEOPLAYER + + \ No newline at end of file diff --git a/package/HMI_AppLauncher_VideoPlayer_Inactive-01.png b/package/HMI_AppLauncher_VideoPlayer_Inactive-01.png new file mode 100644 index 0000000..f521504 Binary files /dev/null and b/package/HMI_AppLauncher_VideoPlayer_Inactive-01.png differ diff --git a/package/HMI_AppLauncher_VideoPlayer_Inactive-01.svg b/package/HMI_AppLauncher_VideoPlayer_Inactive-01.svg new file mode 100644 index 0000000..1cd0763 --- /dev/null +++ b/package/HMI_AppLauncher_VideoPlayer_Inactive-01.svg @@ -0,0 +1,259 @@ + + + +image/svg+xmlVIDEOPLAYER + + \ No newline at end of file diff --git a/package/config.xml b/package/config.xml new file mode 100644 index 0000000..e1a64ad --- /dev/null +++ b/package/config.xml @@ -0,0 +1,20 @@ + + + Video + + + This is a demo videoplayer application + Tasuku Suzuki <tasuku.suzuki@qt.io> + APL 2.0 + + + + + + + + + + + + diff --git a/package/icon.svg b/package/icon.svg new file mode 100644 index 0000000..b9b8e67 --- /dev/null +++ b/package/icon.svg @@ -0,0 +1,266 @@ + + + +image/svg+xmlVIDEOPLAYER + + \ No newline at end of file diff --git a/package/package.pro b/package/package.pro new file mode 100644 index 0000000..1b97041 --- /dev/null +++ b/package/package.pro @@ -0,0 +1,23 @@ + +DISTFILES = icon.svg config.xml + +copy_icon.target = $$OUT_PWD/root/icon.svg +copy_icon.depends = $$_PRO_FILE_PWD_/icon.svg +copy_icon.commands = $(COPY_FILE) \"$$replace(copy_icon.depends, /, $$QMAKE_DIR_SEP)\" \"$$replace(copy_icon.target, /, $$QMAKE_DIR_SEP)\" +QMAKE_EXTRA_TARGETS += copy_icon +PRE_TARGETDEPS += $$copy_icon.target + +copy_config.target = $$OUT_PWD/root/config.xml +copy_config.depends = $$_PRO_FILE_PWD_/config.xml +copy_config.commands = $(COPY_FILE) \"$$replace(copy_config.depends, /, $$QMAKE_DIR_SEP)\" \"$$replace(copy_config.target, /, $$QMAKE_DIR_SEP)\" +QMAKE_EXTRA_TARGETS += copy_config +PRE_TARGETDEPS += $$copy_config.target + +wgt.target = package +wgt.commands = wgtpkg-pack -f -o videoplayer.wgt root + +QMAKE_EXTRA_TARGETS += wgt + +deploy.files = videoplayer.wgt +deploy.path = /usr/AGL/apps/autoinstall +INSTALLS += deploy -- cgit 1.2.3-korg