├── README.md ├── arm ├── CarPlayMainWW │ ├── Assets │ │ ├── Icon │ │ │ ├── bluetooth.png │ │ │ ├── car.png │ │ │ ├── map.png │ │ │ ├── music.png │ │ │ ├── phonecall.png │ │ │ ├── settings.png │ │ │ └── weather.png │ │ └── Image │ │ │ └── background-main.jpg │ ├── CarPlayMainWW.pro │ ├── CarPlayMainWW.pro.user │ ├── CarPlayMainWW.pro.user.15a0740 │ ├── CarPlayMainWW.pro.user.1bd63b1 │ ├── MainWidget.cpp │ ├── MainWidget.h │ ├── MainWidget.ui │ ├── MyQSS.h │ ├── Resources.qrc │ ├── Threads.cpp │ ├── Threads.h │ ├── main.cpp │ ├── sr04.cpp │ └── sr04.h ├── Drivers │ └── sr04 │ │ ├── Makefile │ │ └── gpio_drv.c └── MusicPlayerWW │ ├── Assets │ ├── Icon │ │ ├── down-arrow.png │ │ ├── duration.png │ │ ├── folder.png │ │ ├── list.png │ │ ├── loop.png │ │ ├── loop41.png │ │ ├── music-playing.png │ │ ├── music.png │ │ ├── mute.png │ │ ├── neaten.png │ │ ├── next.png │ │ ├── non-music.png │ │ ├── pause.png │ │ ├── playing.png │ │ ├── pre.png │ │ ├── quit.png │ │ ├── random.png │ │ ├── singer.png │ │ ├── sliderHandle.png │ │ ├── sweep.png │ │ ├── title.png │ │ ├── up-arrow.png │ │ └── vol.png │ └── Image │ │ └── Background1.jpg │ ├── LyricWidget.cpp │ ├── LyricWidget.h │ ├── LyricWidget.ui │ ├── MainWidget.cpp │ ├── MainWidget.h │ ├── MainWidget.ui │ ├── MusicList.cpp │ ├── MusicList.h │ ├── MusicListWidget.cpp │ ├── MusicListWidget.h │ ├── MusicPlayerWW.pro │ ├── MusicPlayerWW.pro.user │ ├── MyMusic.cpp │ ├── MyMusic.h │ ├── MyQSS.h │ ├── Resources.qrc │ └── main.cpp └── x86 ├── CarPlayMainWW ├── Assets │ ├── Icon │ │ ├── bluetooth.png │ │ ├── car.png │ │ ├── map.png │ │ ├── music.png │ │ ├── phonecall.png │ │ ├── settings.png │ │ └── weather.png │ └── Image │ │ └── background-main.jpg ├── CarPlayMainWW.pro ├── CarPlayMainWW.pro.user ├── CarPlayMainWW.pro.user.15a0740 ├── CarPlayMainWW.pro.user.1bd63b1 ├── MainWidget.cpp ├── MainWidget.h ├── MainWidget.ui ├── MyQSS.h ├── Resources.qrc ├── Threads.cpp ├── Threads.h └── main.cpp └── MusicPlayerWW ├── Assets ├── Icon │ ├── down-arrow.png │ ├── duration.png │ ├── folder.png │ ├── list.png │ ├── loop.png │ ├── loop41.png │ ├── music-playing.png │ ├── music.png │ ├── mute.png │ ├── neaten.png │ ├── next.png │ ├── non-music.png │ ├── pause.png │ ├── playing.png │ ├── pre.png │ ├── quit.png │ ├── random.png │ ├── singer.png │ ├── sliderHandle.png │ ├── sweep.png │ ├── title.png │ ├── up-arrow.png │ └── vol.png └── Image │ └── Background1.jpg ├── LyricWidget.cpp ├── LyricWidget.h ├── LyricWidget.ui ├── MainWidget.cpp ├── MainWidget.h ├── MainWidget.ui ├── MusicList.cpp ├── MusicList.h ├── MusicListWidget.cpp ├── MusicListWidget.h ├── MusicPlayerWW.pro ├── MusicPlayerWW.pro.user ├── MyMusic.cpp ├── MyMusic.h ├── MyQSS.h ├── Resources.qrc └── main.cpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/README.md -------------------------------------------------------------------------------- /arm/CarPlayMainWW/Assets/Icon/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/Assets/Icon/bluetooth.png -------------------------------------------------------------------------------- /arm/CarPlayMainWW/Assets/Icon/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/Assets/Icon/car.png -------------------------------------------------------------------------------- /arm/CarPlayMainWW/Assets/Icon/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/Assets/Icon/map.png -------------------------------------------------------------------------------- /arm/CarPlayMainWW/Assets/Icon/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/Assets/Icon/music.png -------------------------------------------------------------------------------- /arm/CarPlayMainWW/Assets/Icon/phonecall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/Assets/Icon/phonecall.png -------------------------------------------------------------------------------- /arm/CarPlayMainWW/Assets/Icon/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/Assets/Icon/settings.png -------------------------------------------------------------------------------- /arm/CarPlayMainWW/Assets/Icon/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/Assets/Icon/weather.png -------------------------------------------------------------------------------- /arm/CarPlayMainWW/Assets/Image/background-main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/Assets/Image/background-main.jpg -------------------------------------------------------------------------------- /arm/CarPlayMainWW/CarPlayMainWW.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/CarPlayMainWW.pro -------------------------------------------------------------------------------- /arm/CarPlayMainWW/CarPlayMainWW.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/CarPlayMainWW.pro.user -------------------------------------------------------------------------------- /arm/CarPlayMainWW/CarPlayMainWW.pro.user.15a0740: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/CarPlayMainWW.pro.user.15a0740 -------------------------------------------------------------------------------- /arm/CarPlayMainWW/CarPlayMainWW.pro.user.1bd63b1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/CarPlayMainWW.pro.user.1bd63b1 -------------------------------------------------------------------------------- /arm/CarPlayMainWW/MainWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/MainWidget.cpp -------------------------------------------------------------------------------- /arm/CarPlayMainWW/MainWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/MainWidget.h -------------------------------------------------------------------------------- /arm/CarPlayMainWW/MainWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/MainWidget.ui -------------------------------------------------------------------------------- /arm/CarPlayMainWW/MyQSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/MyQSS.h -------------------------------------------------------------------------------- /arm/CarPlayMainWW/Resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/Resources.qrc -------------------------------------------------------------------------------- /arm/CarPlayMainWW/Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/Threads.cpp -------------------------------------------------------------------------------- /arm/CarPlayMainWW/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/Threads.h -------------------------------------------------------------------------------- /arm/CarPlayMainWW/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/main.cpp -------------------------------------------------------------------------------- /arm/CarPlayMainWW/sr04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/sr04.cpp -------------------------------------------------------------------------------- /arm/CarPlayMainWW/sr04.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/CarPlayMainWW/sr04.h -------------------------------------------------------------------------------- /arm/Drivers/sr04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/Drivers/sr04/Makefile -------------------------------------------------------------------------------- /arm/Drivers/sr04/gpio_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/Drivers/sr04/gpio_drv.c -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/down-arrow.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/duration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/duration.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/folder.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/list.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/loop.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/loop41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/loop41.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/music-playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/music-playing.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/music.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/mute.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/neaten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/neaten.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/next.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/non-music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/non-music.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/pause.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/playing.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/pre.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/quit.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/random.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/singer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/singer.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/sliderHandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/sliderHandle.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/sweep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/sweep.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/title.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/up-arrow.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Icon/vol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Icon/vol.png -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Assets/Image/Background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Assets/Image/Background1.jpg -------------------------------------------------------------------------------- /arm/MusicPlayerWW/LyricWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/LyricWidget.cpp -------------------------------------------------------------------------------- /arm/MusicPlayerWW/LyricWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/LyricWidget.h -------------------------------------------------------------------------------- /arm/MusicPlayerWW/LyricWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/LyricWidget.ui -------------------------------------------------------------------------------- /arm/MusicPlayerWW/MainWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/MainWidget.cpp -------------------------------------------------------------------------------- /arm/MusicPlayerWW/MainWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/MainWidget.h -------------------------------------------------------------------------------- /arm/MusicPlayerWW/MainWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/MainWidget.ui -------------------------------------------------------------------------------- /arm/MusicPlayerWW/MusicList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/MusicList.cpp -------------------------------------------------------------------------------- /arm/MusicPlayerWW/MusicList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/MusicList.h -------------------------------------------------------------------------------- /arm/MusicPlayerWW/MusicListWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/MusicListWidget.cpp -------------------------------------------------------------------------------- /arm/MusicPlayerWW/MusicListWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/MusicListWidget.h -------------------------------------------------------------------------------- /arm/MusicPlayerWW/MusicPlayerWW.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/MusicPlayerWW.pro -------------------------------------------------------------------------------- /arm/MusicPlayerWW/MusicPlayerWW.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/MusicPlayerWW.pro.user -------------------------------------------------------------------------------- /arm/MusicPlayerWW/MyMusic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/MyMusic.cpp -------------------------------------------------------------------------------- /arm/MusicPlayerWW/MyMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/MyMusic.h -------------------------------------------------------------------------------- /arm/MusicPlayerWW/MyQSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/MyQSS.h -------------------------------------------------------------------------------- /arm/MusicPlayerWW/Resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/Resources.qrc -------------------------------------------------------------------------------- /arm/MusicPlayerWW/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/arm/MusicPlayerWW/main.cpp -------------------------------------------------------------------------------- /x86/CarPlayMainWW/Assets/Icon/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/Assets/Icon/bluetooth.png -------------------------------------------------------------------------------- /x86/CarPlayMainWW/Assets/Icon/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/Assets/Icon/car.png -------------------------------------------------------------------------------- /x86/CarPlayMainWW/Assets/Icon/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/Assets/Icon/map.png -------------------------------------------------------------------------------- /x86/CarPlayMainWW/Assets/Icon/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/Assets/Icon/music.png -------------------------------------------------------------------------------- /x86/CarPlayMainWW/Assets/Icon/phonecall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/Assets/Icon/phonecall.png -------------------------------------------------------------------------------- /x86/CarPlayMainWW/Assets/Icon/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/Assets/Icon/settings.png -------------------------------------------------------------------------------- /x86/CarPlayMainWW/Assets/Icon/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/Assets/Icon/weather.png -------------------------------------------------------------------------------- /x86/CarPlayMainWW/Assets/Image/background-main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/Assets/Image/background-main.jpg -------------------------------------------------------------------------------- /x86/CarPlayMainWW/CarPlayMainWW.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/CarPlayMainWW.pro -------------------------------------------------------------------------------- /x86/CarPlayMainWW/CarPlayMainWW.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/CarPlayMainWW.pro.user -------------------------------------------------------------------------------- /x86/CarPlayMainWW/CarPlayMainWW.pro.user.15a0740: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/CarPlayMainWW.pro.user.15a0740 -------------------------------------------------------------------------------- /x86/CarPlayMainWW/CarPlayMainWW.pro.user.1bd63b1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/CarPlayMainWW.pro.user.1bd63b1 -------------------------------------------------------------------------------- /x86/CarPlayMainWW/MainWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/MainWidget.cpp -------------------------------------------------------------------------------- /x86/CarPlayMainWW/MainWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/MainWidget.h -------------------------------------------------------------------------------- /x86/CarPlayMainWW/MainWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/MainWidget.ui -------------------------------------------------------------------------------- /x86/CarPlayMainWW/MyQSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/MyQSS.h -------------------------------------------------------------------------------- /x86/CarPlayMainWW/Resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/Resources.qrc -------------------------------------------------------------------------------- /x86/CarPlayMainWW/Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/Threads.cpp -------------------------------------------------------------------------------- /x86/CarPlayMainWW/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/Threads.h -------------------------------------------------------------------------------- /x86/CarPlayMainWW/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/CarPlayMainWW/main.cpp -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/down-arrow.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/duration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/duration.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/folder.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/list.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/loop.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/loop41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/loop41.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/music-playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/music-playing.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/music.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/mute.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/neaten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/neaten.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/next.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/non-music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/non-music.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/pause.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/playing.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/pre.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/quit.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/random.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/singer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/singer.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/sliderHandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/sliderHandle.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/sweep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/sweep.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/title.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/up-arrow.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Icon/vol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Icon/vol.png -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Assets/Image/Background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Assets/Image/Background1.jpg -------------------------------------------------------------------------------- /x86/MusicPlayerWW/LyricWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/LyricWidget.cpp -------------------------------------------------------------------------------- /x86/MusicPlayerWW/LyricWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/LyricWidget.h -------------------------------------------------------------------------------- /x86/MusicPlayerWW/LyricWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/LyricWidget.ui -------------------------------------------------------------------------------- /x86/MusicPlayerWW/MainWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/MainWidget.cpp -------------------------------------------------------------------------------- /x86/MusicPlayerWW/MainWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/MainWidget.h -------------------------------------------------------------------------------- /x86/MusicPlayerWW/MainWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/MainWidget.ui -------------------------------------------------------------------------------- /x86/MusicPlayerWW/MusicList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/MusicList.cpp -------------------------------------------------------------------------------- /x86/MusicPlayerWW/MusicList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/MusicList.h -------------------------------------------------------------------------------- /x86/MusicPlayerWW/MusicListWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/MusicListWidget.cpp -------------------------------------------------------------------------------- /x86/MusicPlayerWW/MusicListWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/MusicListWidget.h -------------------------------------------------------------------------------- /x86/MusicPlayerWW/MusicPlayerWW.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/MusicPlayerWW.pro -------------------------------------------------------------------------------- /x86/MusicPlayerWW/MusicPlayerWW.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/MusicPlayerWW.pro.user -------------------------------------------------------------------------------- /x86/MusicPlayerWW/MyMusic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/MyMusic.cpp -------------------------------------------------------------------------------- /x86/MusicPlayerWW/MyMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/MyMusic.h -------------------------------------------------------------------------------- /x86/MusicPlayerWW/MyQSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/MyQSS.h -------------------------------------------------------------------------------- /x86/MusicPlayerWW/Resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/Resources.qrc -------------------------------------------------------------------------------- /x86/MusicPlayerWW/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaviShekdar/imx6ull_Qt5-CarPlay/HEAD/x86/MusicPlayerWW/main.cpp --------------------------------------------------------------------------------