├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── HMI_SDK_LIB ├── CMakeLists.txt ├── Config │ ├── VehicleInfo.json │ ├── staticConfigDB.json │ └── staticResult.json ├── README.md ├── app │ ├── CMakeLists.txt │ └── main.cpp ├── hmi_sdk │ ├── CMakeLists.txt │ ├── app_data │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── app_data.h │ │ │ └── app_list.h │ │ └── src │ │ │ ├── app_data.cpp │ │ │ └── app_list.cpp │ └── connect │ │ ├── CMakeLists.txt │ │ ├── include │ │ ├── WS_Session.h │ │ ├── basic_communication.h │ │ ├── hmi_button.h │ │ ├── hmi_channel.h │ │ ├── hmi_navigation.h │ │ ├── hmi_tts.h │ │ ├── hmi_ui.h │ │ ├── hmi_vehicle_info.h │ │ ├── hmi_video_stream.h │ │ ├── hmi_vr.h │ │ ├── sdl_connector.h │ │ ├── sockets_to_sdl.h │ │ └── websocket_to_sdl.h │ │ ├── set_3rd_party_paths.cmake │ │ └── src │ │ ├── WS_Session.cpp │ │ ├── basic_communication.cpp │ │ ├── hmi_button.cpp │ │ ├── hmi_channel.cpp │ │ ├── hmi_navigation.cpp │ │ ├── hmi_tts.cpp │ │ ├── hmi_ui.cpp │ │ ├── hmi_vehicle_info.cpp │ │ ├── hmi_video_stream.cpp │ │ ├── hmi_vr.cpp │ │ ├── sdl_connector.cpp │ │ ├── sockets_to_sdl.cpp │ │ └── websocket_to_sdl.cpp ├── include │ ├── app_common.h │ ├── app_data_interface.h │ ├── app_list_interface.h │ ├── global_first.h │ ├── message_interface.h │ ├── protocol_defines.h │ ├── pthread │ │ ├── implement.h │ │ ├── need_errno.h │ │ ├── pthread.h │ │ ├── sched.h │ │ └── semaphore.h │ ├── rpc_value_interface.h │ ├── sdk_export.h │ ├── sdl_export.h │ ├── socket_manager_interface.h │ ├── ui_interface.h │ ├── ui_lib.h │ └── wince │ │ └── stdint.h ├── lib │ ├── android │ │ ├── libhmi_sdk.so │ │ └── libsmartDeviceLinkCore.so │ ├── linux │ │ └── libsmartDeviceLinkCore.so │ ├── win32 │ │ ├── smartDeviceLinkCore.dll │ │ └── smartDeviceLinkCore.lib │ └── wince │ │ ├── smartDeviceLinkCore.dll │ │ └── smartDeviceLinkCore.lib ├── releaseNote.xlsx └── tools │ ├── CMakeLists.txt │ ├── jsoncpp │ ├── CMakeLists.txt │ ├── devtools │ │ ├── __init__.py │ │ ├── agent_vmw7.json │ │ ├── agent_vmxp.json │ │ ├── antglob.py │ │ ├── batchbuild.py │ │ ├── fixeol.py │ │ ├── licenseupdater.py │ │ └── tarball.py │ ├── doc │ │ ├── doxyfile.in │ │ ├── footer.html │ │ ├── header.html │ │ ├── jsoncpp.dox │ │ ├── readme.txt │ │ ├── roadmap.dox │ │ └── web_doxyfile.in │ ├── include │ │ ├── CMakeLists.txt │ │ └── json │ │ │ ├── allocator.h │ │ │ ├── assertions.h │ │ │ ├── autolink.h │ │ │ ├── config.h │ │ │ ├── features.h │ │ │ ├── forwards.h │ │ │ ├── json.h │ │ │ ├── reader.h │ │ │ ├── value.h │ │ │ ├── version.h │ │ │ └── writer.h │ ├── pkg-config │ │ └── jsoncpp.pc.in │ ├── scons-tools │ │ ├── globtool.py │ │ ├── srcdist.py │ │ ├── substinfile.py │ │ └── targz.py │ ├── src │ │ ├── CMakeLists.txt │ │ ├── jsontestrunner │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ └── sconscript │ │ ├── lib_json │ │ │ ├── CMakeLists.txt │ │ │ ├── json_reader.cpp │ │ │ ├── json_tool.h │ │ │ ├── json_value.cpp │ │ │ ├── json_valueiterator.inl │ │ │ ├── json_writer.cpp │ │ │ ├── sconscript │ │ │ └── version.h.in │ │ └── test_lib_json │ │ │ ├── CMakeLists.txt │ │ │ ├── jsontest.cpp │ │ │ ├── jsontest.h │ │ │ ├── main.cpp │ │ │ └── sconscript │ ├── test │ │ ├── cleantests.py │ │ ├── data │ │ │ ├── fail_test_array_01.json │ │ │ ├── fail_test_stack_limit.json │ │ │ ├── test_array_01.expected │ │ │ ├── test_array_01.json │ │ │ ├── test_array_02.expected │ │ │ ├── test_array_02.json │ │ │ ├── test_array_03.expected │ │ │ ├── test_array_03.json │ │ │ ├── test_array_04.expected │ │ │ ├── test_array_04.json │ │ │ ├── test_array_05.expected │ │ │ ├── test_array_05.json │ │ │ ├── test_array_06.expected │ │ │ ├── test_array_06.json │ │ │ ├── test_array_07.expected │ │ │ ├── test_array_07.json │ │ │ ├── test_basic_01.expected │ │ │ ├── test_basic_01.json │ │ │ ├── test_basic_02.expected │ │ │ ├── test_basic_02.json │ │ │ ├── test_basic_03.expected │ │ │ ├── test_basic_03.json │ │ │ ├── test_basic_04.expected │ │ │ ├── test_basic_04.json │ │ │ ├── test_basic_05.expected │ │ │ ├── test_basic_05.json │ │ │ ├── test_basic_06.expected │ │ │ ├── test_basic_06.json │ │ │ ├── test_basic_07.expected │ │ │ ├── test_basic_07.json │ │ │ ├── test_basic_08.expected │ │ │ ├── test_basic_08.json │ │ │ ├── test_basic_09.expected │ │ │ ├── test_basic_09.json │ │ │ ├── test_comment_00.expected │ │ │ ├── test_comment_00.json │ │ │ ├── test_comment_01.expected │ │ │ ├── test_comment_01.json │ │ │ ├── test_comment_02.expected │ │ │ ├── test_comment_02.json │ │ │ ├── test_complex_01.expected │ │ │ ├── test_complex_01.json │ │ │ ├── test_integer_01.expected │ │ │ ├── test_integer_01.json │ │ │ ├── test_integer_02.expected │ │ │ ├── test_integer_02.json │ │ │ ├── test_integer_03.expected │ │ │ ├── test_integer_03.json │ │ │ ├── test_integer_04.expected │ │ │ ├── test_integer_04.json │ │ │ ├── test_integer_05.expected │ │ │ ├── test_integer_05.json │ │ │ ├── test_integer_06_64bits.expected │ │ │ ├── test_integer_06_64bits.json │ │ │ ├── test_integer_07_64bits.expected │ │ │ ├── test_integer_07_64bits.json │ │ │ ├── test_integer_08_64bits.expected │ │ │ ├── test_integer_08_64bits.json │ │ │ ├── test_large_01.expected │ │ │ ├── test_large_01.json │ │ │ ├── test_object_01.expected │ │ │ ├── test_object_01.json │ │ │ ├── test_object_02.expected │ │ │ ├── test_object_02.json │ │ │ ├── test_object_03.expected │ │ │ ├── test_object_03.json │ │ │ ├── test_object_04.expected │ │ │ ├── test_object_04.json │ │ │ ├── test_preserve_comment_01.expected │ │ │ ├── test_preserve_comment_01.json │ │ │ ├── test_real_01.expected │ │ │ ├── test_real_01.json │ │ │ ├── test_real_02.expected │ │ │ ├── test_real_02.json │ │ │ ├── test_real_03.expected │ │ │ ├── test_real_03.json │ │ │ ├── test_real_04.expected │ │ │ ├── test_real_04.json │ │ │ ├── test_real_05.expected │ │ │ ├── test_real_05.json │ │ │ ├── test_real_06.expected │ │ │ ├── test_real_06.json │ │ │ ├── test_real_07.expected │ │ │ ├── test_real_07.json │ │ │ ├── test_real_08.expected │ │ │ ├── test_real_08.json │ │ │ ├── test_real_09.expected │ │ │ ├── test_real_09.json │ │ │ ├── test_real_10.expected │ │ │ ├── test_real_10.json │ │ │ ├── test_real_11.expected │ │ │ ├── test_real_11.json │ │ │ ├── test_real_12.expected │ │ │ ├── test_real_12.json │ │ │ ├── test_string_01.expected │ │ │ ├── test_string_01.json │ │ │ ├── test_string_02.expected │ │ │ ├── test_string_02.json │ │ │ ├── test_string_03.expected │ │ │ ├── test_string_03.json │ │ │ ├── test_string_04.expected │ │ │ ├── test_string_04.json │ │ │ ├── test_string_05.expected │ │ │ ├── test_string_05.json │ │ │ ├── test_string_unicode_01.expected │ │ │ ├── test_string_unicode_01.json │ │ │ ├── test_string_unicode_02.expected │ │ │ ├── test_string_unicode_02.json │ │ │ ├── test_string_unicode_03.expected │ │ │ ├── test_string_unicode_03.json │ │ │ ├── test_string_unicode_04.expected │ │ │ ├── test_string_unicode_04.json │ │ │ ├── test_string_unicode_05.expected │ │ │ └── test_string_unicode_05.json │ │ ├── generate_expected.py │ │ ├── jsonchecker │ │ │ ├── fail1.json │ │ │ ├── fail10.json │ │ │ ├── fail11.json │ │ │ ├── fail12.json │ │ │ ├── fail13.json │ │ │ ├── fail14.json │ │ │ ├── fail15.json │ │ │ ├── fail16.json │ │ │ ├── fail17.json │ │ │ ├── fail18.json │ │ │ ├── fail19.json │ │ │ ├── fail2.json │ │ │ ├── fail20.json │ │ │ ├── fail21.json │ │ │ ├── fail22.json │ │ │ ├── fail23.json │ │ │ ├── fail24.json │ │ │ ├── fail25.json │ │ │ ├── fail26.json │ │ │ ├── fail27.json │ │ │ ├── fail28.json │ │ │ ├── fail29.json │ │ │ ├── fail3.json │ │ │ ├── fail30.json │ │ │ ├── fail31.json │ │ │ ├── fail32.json │ │ │ ├── fail33.json │ │ │ ├── fail4.json │ │ │ ├── fail5.json │ │ │ ├── fail6.json │ │ │ ├── fail7.json │ │ │ ├── fail8.json │ │ │ ├── fail9.json │ │ │ ├── pass1.json │ │ │ ├── pass2.json │ │ │ ├── pass3.json │ │ │ └── readme.txt │ │ ├── pyjsontestrunner.py │ │ ├── runjsontests.py │ │ └── rununittests.py │ └── version.in │ └── pthread4w │ ├── CMakeLists.txt │ ├── attr.c │ ├── autostatic.c │ ├── barrier.c │ ├── cancel.c │ ├── cleanup.c │ ├── condvar.c │ ├── config.h │ ├── context.h │ ├── create.c │ ├── dll.c │ ├── errno.c │ ├── exit.c │ ├── fork.c │ ├── global.c │ ├── implement.h │ ├── misc.c │ ├── mutex.c │ ├── need_errno.h │ ├── nonportable.c │ ├── private.c │ ├── pthread.c │ ├── pthread.h │ ├── pthread_attr_destroy.c │ ├── pthread_attr_getdetachstate.c │ ├── pthread_attr_getinheritsched.c │ ├── pthread_attr_getschedparam.c │ ├── pthread_attr_getschedpolicy.c │ ├── pthread_attr_getscope.c │ ├── pthread_attr_getstackaddr.c │ ├── pthread_attr_getstacksize.c │ ├── pthread_attr_init.c │ ├── pthread_attr_setdetachstate.c │ ├── pthread_attr_setinheritsched.c │ ├── pthread_attr_setschedparam.c │ ├── pthread_attr_setschedpolicy.c │ ├── pthread_attr_setscope.c │ ├── pthread_attr_setstackaddr.c │ ├── pthread_attr_setstacksize.c │ ├── pthread_barrier_destroy.c │ ├── pthread_barrier_init.c │ ├── pthread_barrier_wait.c │ ├── pthread_barrierattr_destroy.c │ ├── pthread_barrierattr_getpshared.c │ ├── pthread_barrierattr_init.c │ ├── pthread_barrierattr_setpshared.c │ ├── pthread_cancel.c │ ├── pthread_cond_destroy.c │ ├── pthread_cond_init.c │ ├── pthread_cond_signal.c │ ├── pthread_cond_wait.c │ ├── pthread_condattr_destroy.c │ ├── pthread_condattr_getpshared.c │ ├── pthread_condattr_init.c │ ├── pthread_condattr_setpshared.c │ ├── pthread_delay_np.c │ ├── pthread_detach.c │ ├── pthread_equal.c │ ├── pthread_exit.c │ ├── pthread_getconcurrency.c │ ├── pthread_getschedparam.c │ ├── pthread_getspecific.c │ ├── pthread_getunique_np.c │ ├── pthread_getw32threadhandle_np.c │ ├── pthread_join.c │ ├── pthread_key_create.c │ ├── pthread_key_delete.c │ ├── pthread_kill.c │ ├── pthread_mutex_consistent.c │ ├── pthread_mutex_destroy.c │ ├── pthread_mutex_init.c │ ├── pthread_mutex_lock.c │ ├── pthread_mutex_timedlock.c │ ├── pthread_mutex_trylock.c │ ├── pthread_mutex_unlock.c │ ├── pthread_mutexattr_destroy.c │ ├── pthread_mutexattr_getkind_np.c │ ├── pthread_mutexattr_getpshared.c │ ├── pthread_mutexattr_getrobust.c │ ├── pthread_mutexattr_gettype.c │ ├── pthread_mutexattr_init.c │ ├── pthread_mutexattr_setkind_np.c │ ├── pthread_mutexattr_setpshared.c │ ├── pthread_mutexattr_setrobust.c │ ├── pthread_mutexattr_settype.c │ ├── pthread_num_processors_np.c │ ├── pthread_once.c │ ├── pthread_rwlock_destroy.c │ ├── pthread_rwlock_init.c │ ├── pthread_rwlock_rdlock.c │ ├── pthread_rwlock_timedrdlock.c │ ├── pthread_rwlock_timedwrlock.c │ ├── pthread_rwlock_tryrdlock.c │ ├── pthread_rwlock_trywrlock.c │ ├── pthread_rwlock_unlock.c │ ├── pthread_rwlock_wrlock.c │ ├── pthread_rwlockattr_destroy.c │ ├── pthread_rwlockattr_getpshared.c │ ├── pthread_rwlockattr_init.c │ ├── pthread_rwlockattr_setpshared.c │ ├── pthread_self.c │ ├── pthread_setcancelstate.c │ ├── pthread_setcanceltype.c │ ├── pthread_setconcurrency.c │ ├── pthread_setschedparam.c │ ├── pthread_setspecific.c │ ├── pthread_spin_destroy.c │ ├── pthread_spin_init.c │ ├── pthread_spin_lock.c │ ├── pthread_spin_trylock.c │ ├── pthread_spin_unlock.c │ ├── pthread_testcancel.c │ ├── pthread_timechange_handler_np.c │ ├── pthread_win32_attach_detach_np.c │ ├── ptw32_MCS_lock.c │ ├── ptw32_OLL_lock.c │ ├── ptw32_callUserDestroyRoutines.c │ ├── ptw32_calloc.c │ ├── ptw32_cond_check_need_init.c │ ├── ptw32_getprocessors.c │ ├── ptw32_is_attr.c │ ├── ptw32_mutex_check_need_init.c │ ├── ptw32_new.c │ ├── ptw32_processInitialize.c │ ├── ptw32_processTerminate.c │ ├── ptw32_relmillisecs.c │ ├── ptw32_reuse.c │ ├── ptw32_rwlock_cancelwrwait.c │ ├── ptw32_rwlock_check_need_init.c │ ├── ptw32_semwait.c │ ├── ptw32_spinlock_check_need_init.c │ ├── ptw32_threadDestroy.c │ ├── ptw32_threadStart.c │ ├── ptw32_throw.c │ ├── ptw32_timespec.c │ ├── ptw32_tkAssocCreate.c │ ├── ptw32_tkAssocDestroy.c │ ├── rwlock.c │ ├── sched.c │ ├── sched.h │ ├── sched_get_priority_max.c │ ├── sched_get_priority_min.c │ ├── sched_getscheduler.c │ ├── sched_setscheduler.c │ ├── sched_yield.c │ ├── sem_close.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_post.c │ ├── sem_post_multiple.c │ ├── sem_timedwait.c │ ├── sem_trywait.c │ ├── sem_unlink.c │ ├── sem_wait.c │ ├── semaphore.c │ ├── semaphore.h │ ├── signal.c │ ├── spin.c │ ├── sync.c │ ├── tsd.c │ └── w32_CancelableWait.c ├── LICENSE ├── README.md └── ReferenceDesign └── SampleQTHMI ├── 3rd_party ├── include │ └── json │ │ ├── allocator.h │ │ ├── assertions.h │ │ ├── autolink.h │ │ ├── config.h │ │ ├── features.h │ │ ├── forwards.h │ │ ├── json.h │ │ ├── reader.h │ │ ├── value.h │ │ ├── version.h │ │ └── writer.h └── lib │ ├── libjsoncpp.a │ └── pkg-config │ └── jsoncpp.pc ├── CMakeLists.txt ├── HMIFrameWork ├── App.cpp ├── App.h ├── AppConfig.h ├── AppManager.cpp ├── AppManager.h ├── CMakeLists.txt ├── CView.cpp ├── CView.h ├── GstPlayer.cpp ├── GstPlayer.h ├── GstPlayerMessage.cpp ├── GstPlayerMessage.h ├── HMIFrameWork.cpp ├── HMIFrameWork.h ├── Interface.h ├── ViewFactory.cpp ├── ViewFactory.h ├── log_interface.cpp └── log_interface.h ├── HMIWidgets ├── AlbumCoverWidget.cpp ├── AlbumCoverWidget.h ├── AppListWidget.cpp ├── AppListWidget.h ├── CAppButton.cpp ├── CAppButton.h ├── CCButton.cpp ├── CCButton.h ├── CComboBox.cpp ├── CComboBox.h ├── CComboBoxDelegate.cpp ├── CComboBoxDelegate.h ├── CListWidgetItem.cpp ├── CListWidgetItem.h ├── CMakeLists.txt ├── CPushButton.cpp ├── CPushButton.h ├── CRotationWidget.cpp ├── CRotationWidget.h ├── CSlider.cpp ├── CSlider.h ├── CVListWidget.cpp ├── CVListWidget.h ├── DateTimePicker.cpp ├── DateTimePicker.h ├── ListDelegate.cpp ├── ListDelegate.h ├── ListScroller.cpp ├── ListScroller.h ├── PhonePicker.cpp ├── PhonePicker.h ├── Picker.cpp ├── Picker.h ├── ScrollText.cpp ├── ScrollText.h ├── SliderSelect.cpp ├── SliderSelect.h ├── TopNavigateWidget.cpp ├── TopNavigateWidget.h └── WidgetsCommon.h ├── HVAC ├── CMakeLists.txt ├── Factory │ ├── HVACVFactory.cpp │ └── HVACVFactory.h ├── Source │ ├── HVACImages.qrc │ └── images │ │ ├── aa_off.png │ │ ├── aa_on.png │ │ ├── atuo_off.png │ │ ├── auto_on.png │ │ ├── bb_off.png │ │ ├── bb_on.png │ │ ├── button_off.png │ │ ├── button_on.png │ │ ├── button_on_push.png │ │ ├── cc_off.png │ │ ├── cc_on.png │ │ ├── dd_off.png │ │ ├── dd_on.png │ │ ├── down.png │ │ ├── external_off.png │ │ ├── external_on.png │ │ ├── internalcirculation_off.png │ │ ├── internalcirculation_on.png │ │ ├── select_tiao_c.png │ │ ├── select_tiao_l.png │ │ ├── select_tiao_r.png │ │ ├── swish_off.png │ │ ├── swish_on.png │ │ ├── tiao_bg.png │ │ ├── top_line.png │ │ ├── top_line_bg.png │ │ ├── top_select.png │ │ ├── up.png │ │ ├── wind_bg.png │ │ ├── wind_down_normal.png │ │ ├── wind_down_select.png │ │ ├── wind_down_window_normal.png │ │ ├── wind_down_window_select.png │ │ ├── wind_left.png │ │ ├── wind_right.png │ │ ├── wind_select.png │ │ ├── wind_up_normal.png │ │ ├── wind_up_select.png │ │ ├── wind_upanddown_normal.png │ │ └── wind_upanddown_select.png ├── UI │ ├── HVACFrontView.cpp │ ├── HVACFrontView.h │ ├── HVACFrontViewOff.cpp │ ├── HVACFrontViewOff.h │ ├── HVACRearView.cpp │ ├── HVACRearView.h │ ├── HVACRearViewOff.cpp │ ├── HVACRearViewOff.h │ ├── HVACWindow.cpp │ └── HVACWindow.h ├── app │ ├── HVAC.cpp │ └── HVAC.h └── data │ ├── HVACData.cpp │ └── HVACData.h ├── Home ├── CMakeLists.txt ├── Factory │ ├── HomeVFactory.cpp │ └── HomeVFactory.h ├── Source │ ├── HomeImages.qrc │ └── images │ │ ├── Backtoremove.png │ │ ├── HVAC.png │ │ ├── HVAC_push.png │ │ ├── Media.png │ │ ├── Media_push.png │ │ ├── Setting.png │ │ ├── Setting_push.png │ │ ├── Settings │ │ ├── SettingsSource.qrc │ │ ├── arrow_left.png │ │ ├── arrow_right.png │ │ ├── bg.png │ │ ├── button_a.png │ │ ├── button_add.png │ │ ├── button_back.png │ │ ├── button_close.png │ │ ├── button_h_close.png │ │ ├── button_h_on.png │ │ ├── icon_connect.png │ │ ├── icon_notice.png │ │ ├── icon_suo.png │ │ ├── icon_wifi.png │ │ ├── line.png │ │ ├── line_a.png │ │ ├── line_time.png │ │ ├── list_push_bg.png │ │ ├── scrollbar_center.png │ │ ├── scrollbar_down.png │ │ ├── scrollbar_up.png │ │ ├── select_a.png │ │ ├── select_b.png │ │ ├── voice_a.png │ │ └── voice_b.png │ │ ├── application.png │ │ ├── application_push.png │ │ ├── bg.png │ │ ├── message.png │ │ ├── message_push.png │ │ ├── nav.png │ │ ├── nav_push.png │ │ ├── phone.png │ │ ├── phone_push.png │ │ ├── weather.png │ │ └── weather_push.png ├── UI │ ├── HomeView.cpp │ ├── HomeView.h │ ├── HomeWindow.cpp │ ├── HomeWindow.h │ ├── PlayVedio │ │ ├── BootAnimation.cpp │ │ ├── BootAnimation.h │ │ ├── BootAnimationUI.cpp │ │ └── BootAnimationUI.h │ └── Settings │ │ ├── SettingsBTUI.cpp │ │ ├── SettingsBTUI.h │ │ ├── SettingsDateTimeUI.cpp │ │ ├── SettingsDateTimeUI.h │ │ ├── SettingsDisplayUI.cpp │ │ ├── SettingsDisplayUI.h │ │ ├── SettingsEmergencyUI.cpp │ │ ├── SettingsEmergencyUI.h │ │ ├── SettingsMainUI.cpp │ │ ├── SettingsMainUI.h │ │ ├── SettingsMobileApplicationsUI.cpp │ │ ├── SettingsMobileApplicationsUI.h │ │ ├── SettingsRoutineSettingUI.cpp │ │ ├── SettingsRoutineSettingUI.h │ │ ├── SettingsSoundUI.cpp │ │ ├── SettingsSoundUI.h │ │ ├── SettingsSpeechRecognitionUI.cpp │ │ ├── SettingsSpeechRecognitionUI.h │ │ ├── SettingsWifiAddHotSpotsUI.cpp │ │ ├── SettingsWifiAddHotSpotsUI.h │ │ ├── SettingsWifiPasswordUI.cpp │ │ ├── SettingsWifiPasswordUI.h │ │ ├── SettingsWifiUI.cpp │ │ └── SettingsWifiUI.h ├── app │ ├── Home.cpp │ └── Home.h └── data │ └── Settings │ ├── SettingsBTData.cpp │ ├── SettingsBTData.h │ ├── SettingsDateTimeData.cpp │ ├── SettingsDateTimeData.h │ ├── SettingsDisplayData.cpp │ ├── SettingsDisplayData.h │ ├── SettingsEmergencyData.cpp │ ├── SettingsEmergencyData.h │ ├── SettingsMobileApplicationsData.cpp │ ├── SettingsMobileApplicationsData.h │ ├── SettingsRoutineSettingData.cpp │ ├── SettingsRoutineSettingData.h │ ├── SettingsWifiData.cpp │ └── SettingsWifiData.h ├── MainWindow.cpp ├── MainWindow.h ├── MainWindow.ui ├── Media ├── CMakeLists.txt ├── Factory │ ├── MediaVFactory.cpp │ └── MediaVFactory.h ├── Source │ ├── MediaImages.qrc │ └── images │ │ ├── button.png │ │ └── button_push.png ├── UI │ ├── MediaView.cpp │ ├── MediaView.h │ ├── MediaWindow.cpp │ └── MediaWindow.h └── app │ ├── Media.cpp │ └── Media.h ├── Message ├── CMakeLists.txt ├── Factory │ ├── MessageVFactory.cpp │ └── MessageVFactory.h ├── Source │ ├── MessageImages.qrc │ └── images │ │ ├── button_back.png │ │ ├── dalog_right_legt_top.png │ │ ├── default_profile.png │ │ ├── dialog_left.png │ │ ├── dialog_left_left_down.png │ │ ├── dialog_left_left_top.png │ │ ├── dialog_left_right_down.png │ │ ├── dialog_left_right_top.png │ │ ├── dialog_right.png │ │ ├── dialog_right_left_down.png │ │ ├── dialog_right_right_down.png │ │ ├── dialog_right_right_top.png │ │ ├── line.png │ │ ├── message_list_push.png │ │ └── text_background.png ├── UI │ ├── MessageListView.cpp │ ├── MessageListView.h │ ├── MessageWindow.cpp │ ├── MessageWindow.h │ ├── MessagesNoNewInfoView.cpp │ ├── MessagesNoNewInfoView.h │ ├── MessagesView.cpp │ └── MessagesView.h ├── app │ ├── Message.cpp │ └── Message.h └── data │ ├── MessageData.cpp │ └── MessageData.h ├── Navigation ├── CMakeLists.txt ├── Factory │ ├── NavigationVFactory.cpp │ └── NavigationVFactory.h ├── Source │ ├── NavigationImages.qrc │ └── images │ │ ├── button.png │ │ └── button_push.png ├── UI │ ├── NavigationView.cpp │ ├── NavigationView.h │ ├── NavigationWindow.cpp │ └── NavigationWindow.h └── app │ ├── Navigation.cpp │ └── Navigation.h ├── Phone ├── CMakeLists.txt ├── Factory │ ├── PhoneVFactory.cpp │ └── PhoneVFactory.h ├── Source │ ├── PhoneImages.qrc │ └── images │ │ ├── #_normal.png │ │ ├── #_push.png │ │ ├── 0_normal.png │ │ ├── 0_push.png │ │ ├── 10_normal.png │ │ ├── 10_push.png │ │ ├── 1_normal.png │ │ ├── 1_push.png │ │ ├── 2_normal.png │ │ ├── 2_push.png │ │ ├── 3_normal.png │ │ ├── 3_push.png │ │ ├── 4_normal.png │ │ ├── 4_push.png │ │ ├── 5_normal.png │ │ ├── 5_push.png │ │ ├── 6_normal.png │ │ ├── 6_push.png │ │ ├── 7_normal.png │ │ ├── 7_push.png │ │ ├── 8_normal.png │ │ ├── 8_push.png │ │ ├── 9_normal.png │ │ ├── 9_push.png │ │ ├── answer_the_phone.png │ │ ├── answer_the_phone_red.png │ │ ├── back.png │ │ ├── box_normal.png │ │ ├── box_push.png │ │ ├── bubble.png │ │ ├── call.png │ │ ├── delete_normal.png │ │ ├── delete_push.png │ │ ├── dial_up_box.png │ │ ├── dotted_line.png │ │ ├── hang_up_normal.png │ │ ├── hang_up_push.png │ │ ├── head_portrait.png │ │ ├── head_portrait_normal.png │ │ ├── head_portrait_push.png │ │ ├── home_phone.png │ │ ├── keyboard_list_push.png │ │ ├── mobile_phone.png │ │ ├── others.png │ │ ├── phone_list_push.png │ │ ├── phone_normal.png │ │ ├── phone_push.png │ │ ├── shade.png │ │ ├── thins_line.png │ │ ├── underline_of_the_title.png │ │ └── work_phone.png ├── UI │ ├── CallingView.cpp │ ├── CallingView.h │ ├── ContactsDetailsView.cpp │ ├── ContactsDetailsView.h │ ├── ContactsView.cpp │ ├── ContactsView.h │ ├── KeyBoardView.cpp │ ├── KeyBoardView.h │ ├── PhoneWindow.cpp │ ├── PhoneWindow.h │ ├── RecentsView.cpp │ └── RecentsView.h ├── app │ ├── Phone.cpp │ └── Phone.h └── data │ ├── PhoneData.cpp │ └── PhoneData.h ├── PopUp ├── CMakeLists.txt ├── Factory │ ├── PopUpVFactory.cpp │ └── PopUpVFactory.h ├── Source │ ├── PopUpImages.qrc │ └── images │ │ ├── button_a.png │ │ ├── button_a_push.png │ │ ├── button_b.png │ │ ├── button_b_push.png │ │ └── line_a.png ├── UI │ ├── PopUpBase.cpp │ ├── PopUpBase.h │ ├── PopUpViewUI.cpp │ ├── PopUpViewUI.h │ ├── PopUpWindow.cpp │ ├── PopUpWindow.h │ ├── PopupGeneralView.cpp │ └── PopupGeneralView.h └── app │ ├── PopUp.cpp │ └── PopUp.h ├── Prompt ├── CMakeLists.txt ├── Factory │ ├── PromptVFactory.cpp │ └── PromptVFactory.h ├── Source │ ├── PromptImages.qrc │ └── images │ │ ├── horn.png │ │ ├── left_arrow.png │ │ ├── message_bg.png │ │ ├── message_btn_bg_normal.png │ │ └── message_icon.png ├── UI │ ├── PromptBase.cpp │ ├── PromptBase.h │ ├── PromptMessageView.cpp │ ├── PromptMessageView.h │ ├── PromptNavView.cpp │ ├── PromptNavView.h │ ├── PromptViewUI.cpp │ ├── PromptViewUI.h │ ├── PromptWindow.cpp │ └── PromptWindow.h └── app │ ├── Prompt.cpp │ └── Prompt.h ├── QuickLanuch ├── CMakeLists.txt ├── Factory │ ├── QuickVFactory.cpp │ └── QuickVFactory.h ├── Source │ ├── QuickLanuchImages.qrc │ └── images │ │ ├── Application_left.png │ │ ├── Application_left_hover.png │ │ ├── Application_left_push.png │ │ ├── Backtoremove.png │ │ ├── HVAC_left.png │ │ ├── HVAC_left_hover.png │ │ ├── HVAC_left_push.png │ │ ├── Media_left.png │ │ ├── Message_left.png │ │ ├── Message_left_hover.png │ │ ├── Message_left_push.png │ │ ├── Weather_left.png │ │ ├── Weather_left_hover.png │ │ ├── Weather_left_push.png │ │ ├── anastole_normal.png │ │ ├── anastole_push.png │ │ ├── backtoremove_left.png │ │ ├── line_left.png │ │ ├── media_left_hover.png │ │ ├── media_left_push.png │ │ ├── nav_left.png │ │ ├── nav_left_hover.png │ │ ├── nav_left_push.png │ │ ├── phone_left.png │ │ ├── phone_left_hover.png │ │ ├── phone_left_push.png │ │ ├── popup_normal.png │ │ ├── popup_push.png │ │ ├── quicklunch_bg.png │ │ ├── quicklunch_bg_transparent.png │ │ ├── quicklunch_line.png │ │ ├── setting_left.png │ │ ├── setting_left_hover.png │ │ ├── setting_left_push.png │ │ ├── volume_normal.png │ │ └── volume_push.png ├── UI │ ├── QuickLanuchView.cpp │ ├── QuickLanuchView.h │ ├── QuickLanuchWindow.cpp │ └── QuickLanuchWindow.h └── app │ ├── QuickLanuch.cpp │ └── QuickLanuch.h ├── README.md ├── SDLApps ├── CMakeLists.txt ├── Data │ ├── SDLAppsData.cpp │ └── SDLAppsData.h ├── Factory │ ├── SDLVFactory.cpp │ └── SDLVFactory.h ├── Source │ ├── SDLAppsImages.qrc │ └── images │ │ ├── 146_D.png │ │ ├── 146_D_P.png │ │ ├── 146_he.png │ │ ├── 146_he_P.png │ │ ├── KUANG.png │ │ ├── KUANG_150.png │ │ ├── KUANG_218.png │ │ ├── KUANG_321.png │ │ ├── add_a_device.png │ │ ├── app_bg.png │ │ ├── back.png │ │ ├── btn_bg.png │ │ ├── button_320.png │ │ ├── button_320_P.png │ │ ├── button_a.png │ │ ├── button_a_push.png │ │ ├── compelete.png │ │ ├── cricle.png │ │ ├── find_mobile_apps.png │ │ ├── light.png │ │ ├── line_a.png │ │ ├── mask.png │ │ ├── menu.png │ │ ├── next_song.png │ │ ├── partingline.png │ │ ├── play.png │ │ ├── pointout.png │ │ ├── progress_bar.png │ │ ├── random.png │ │ ├── return.png │ │ ├── right_btn_normal.png │ │ ├── right_btn_push.png │ │ ├── slider_handle.png │ │ ├── stop.png │ │ ├── the_last_song.png │ │ ├── vr_light.png │ │ └── vr_microphone.png ├── Templates │ ├── Alert │ │ ├── AlertView.cpp │ │ ├── AlertView.h │ │ └── test │ │ │ ├── AlertViewTest.cpp │ │ │ └── AlertViewTest.h │ ├── AppListView │ │ ├── AppListView.cpp │ │ ├── AppListView.h │ │ ├── DeviceListView.cpp │ │ ├── DeviceListView.h │ │ └── test │ │ │ ├── AppListViewTest.cpp │ │ │ ├── AppListViewTest.h │ │ │ ├── DeviceListViewTest.cpp │ │ │ └── DeviceListViewTest.h │ ├── AudioPassThru │ │ ├── AudioPassThru.cpp │ │ ├── AudioPassThru.h │ │ └── test │ │ │ ├── AudioPassThruTest.cpp │ │ │ └── AudioPassThruTest.h │ ├── CMakeLists.txt │ ├── ChoiceSet │ │ ├── ChoiceSet.cpp │ │ ├── ChoiceSet.h │ │ ├── ChoiceSetVR.cpp │ │ ├── ChoiceSetVR.h │ │ └── test │ │ │ ├── ChoiceSetTest.cpp │ │ │ ├── ChoiceSetTest.h │ │ │ ├── ChoiceSetVRTest.cpp │ │ │ └── ChoiceSetVRTest.h │ ├── CommandView │ │ ├── CommandView.cpp │ │ ├── CommandView.h │ │ └── test │ │ │ ├── CommandViewTest.cpp │ │ │ └── CommandViewTest.h │ ├── Common │ │ ├── AppBase.cpp │ │ ├── AppBase.h │ │ ├── Button.cpp │ │ ├── Button.h │ │ ├── CustomListView.cpp │ │ ├── CustomListView.h │ │ ├── MenuButton.cpp │ │ └── MenuButton.h │ ├── Config │ │ ├── Config.cpp │ │ └── Config.h │ ├── DialNumber │ │ ├── DialNumber.cpp │ │ ├── DialNumber.h │ │ └── test │ │ │ ├── DialNumberTest.cpp │ │ │ └── DialNumberTest.h │ ├── Library │ │ ├── android │ │ │ ├── apk │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── asaiAndroid.keystore │ │ │ │ ├── assets │ │ │ │ │ └── --Added-by-androiddeployqt-- │ │ │ │ │ │ └── qt_cache_pregenerated_file_list │ │ │ │ ├── build.gradle │ │ │ │ ├── build.xml │ │ │ │ ├── libs │ │ │ │ │ ├── QtAndroid-bundled.jar │ │ │ │ │ ├── QtAndroidAccessibility-bundled.jar │ │ │ │ │ ├── QtAndroidBearer-bundled.jar │ │ │ │ │ └── armeabi-v7a │ │ │ │ │ │ ├── gdbserver │ │ │ │ │ │ ├── libAppLinkDevice.so │ │ │ │ │ │ ├── libQt5Core.so │ │ │ │ │ │ ├── libQt5Gui.so │ │ │ │ │ │ ├── libQt5Network.so │ │ │ │ │ │ ├── libQt5Widgets.so │ │ │ │ │ │ ├── libffmpeg.so │ │ │ │ │ │ ├── libgdbserver.so │ │ │ │ │ │ ├── libgnustl_shared.so │ │ │ │ │ │ ├── libplugins_bearer_libqandroidbearer.so │ │ │ │ │ │ ├── libplugins_bearer_libqgenericbearer.so │ │ │ │ │ │ ├── libplugins_generic_libqevdevkeyboardplugin.so │ │ │ │ │ │ ├── libplugins_generic_libqevdevmouseplugin.so │ │ │ │ │ │ ├── libplugins_generic_libqevdevtabletplugin.so │ │ │ │ │ │ ├── libplugins_generic_libqevdevtouchplugin.so │ │ │ │ │ │ ├── libplugins_imageformats_libqdds.so │ │ │ │ │ │ ├── libplugins_imageformats_libqgif.so │ │ │ │ │ │ ├── libplugins_imageformats_libqicns.so │ │ │ │ │ │ ├── libplugins_imageformats_libqico.so │ │ │ │ │ │ ├── libplugins_imageformats_libqjp2.so │ │ │ │ │ │ ├── libplugins_imageformats_libqjpeg.so │ │ │ │ │ │ ├── libplugins_imageformats_libqmng.so │ │ │ │ │ │ ├── libplugins_imageformats_libqtga.so │ │ │ │ │ │ ├── libplugins_imageformats_libqtiff.so │ │ │ │ │ │ ├── libplugins_imageformats_libqwbmp.so │ │ │ │ │ │ ├── libplugins_platforms_android_libqtforandroid.so │ │ │ │ │ │ ├── libplugins_platforms_libqminimal.so │ │ │ │ │ │ ├── libplugins_platforms_libqoffscreen.so │ │ │ │ │ │ └── libsmartDeviceLinkCore.so │ │ │ │ ├── local.properties │ │ │ │ ├── proguard-project.txt │ │ │ │ ├── project.properties │ │ │ │ ├── res │ │ │ │ │ ├── layout │ │ │ │ │ │ └── splash.xml │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-id │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-rs │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── strings.xml │ │ │ │ │ └── values │ │ │ │ │ │ ├── libs.xml │ │ │ │ │ │ └── strings.xml │ │ │ │ └── src │ │ │ │ │ └── org │ │ │ │ │ ├── kde │ │ │ │ │ └── necessitas │ │ │ │ │ │ └── ministro │ │ │ │ │ │ ├── IMinistro.aidl │ │ │ │ │ │ └── IMinistroCallback.aidl │ │ │ │ │ └── qtproject │ │ │ │ │ └── qt5 │ │ │ │ │ └── android │ │ │ │ │ └── bindings │ │ │ │ │ ├── QtActivity.java │ │ │ │ │ └── QtApplication.java │ │ │ └── sdl │ │ │ │ ├── config │ │ │ │ ├── audio.8bit.wav │ │ │ │ ├── hmi_capabilities.json │ │ │ │ ├── libPolicy.so │ │ │ │ ├── log4cxx.properties │ │ │ │ ├── policy_table.json │ │ │ │ ├── sdl_preloaded_pt.json │ │ │ │ ├── smartDeviceLink.ini │ │ │ │ └── test.txt │ │ │ │ ├── libsmartDeviceLinkCore.so │ │ │ │ ├── main.h │ │ │ │ └── tts │ │ │ │ ├── common.jet │ │ │ │ ├── msctts.qrc │ │ │ │ ├── xiaofeng.jet │ │ │ │ └── xiaoyan.jet │ │ └── ce │ │ │ ├── WS2_32.Lib │ │ │ └── msvcr90.dll │ ├── ScrollableMessage │ │ ├── ScollMsgView.cpp │ │ ├── ScollMsgView.h │ │ └── test │ │ │ ├── ScollMsgViewTest.cpp │ │ │ └── ScollMsgViewTest.h │ ├── Show │ │ ├── DoubleGraphicSoftbuttonsShow.cpp │ │ ├── DoubleGraphicSoftbuttonsShow.h │ │ ├── GraphicSoftButtonShow.cpp │ │ ├── GraphicSoftButtonShow.h │ │ ├── GraphicWithTextAndSoftbuttonsShow.cpp │ │ ├── GraphicWithTextAndSoftbuttonsShow.h │ │ ├── GraphicWithTextButtonsShow.cpp │ │ ├── GraphicWithTextButtonsShow.h │ │ ├── GraphicWithTextShow.cpp │ │ ├── GraphicWithTextShow.h │ │ ├── GraphicWithTilesShow.cpp │ │ ├── GraphicWithTilesShow.h │ │ ├── LargeGraphicOnlyShow.cpp │ │ ├── LargeGraphicOnlyShow.h │ │ ├── MediaShow.cpp │ │ ├── MediaShow.h │ │ ├── NonMediaShow.cpp │ │ ├── NonMediaShow.h │ │ ├── OnscreenPresetsShow.cpp │ │ ├── OnscreenPresetsShow.h │ │ ├── TextAndSoftbuttonsWithGraphicShow.cpp │ │ ├── TextAndSoftbuttonsWithGraphicShow.h │ │ ├── TextButtonsOnlyShow.cpp │ │ ├── TextButtonsOnlyShow.h │ │ ├── TextButtonsWithGraphicShow.cpp │ │ ├── TextButtonsWithGraphicShow.h │ │ ├── TextWithGraphicShow.cpp │ │ ├── TextWithGraphicShow.h │ │ ├── TilesOnlyShow.cpp │ │ ├── TilesOnlyShow.h │ │ ├── TilesWithGraphicShow.cpp │ │ ├── TilesWithGraphicShow.h │ │ └── test │ │ │ ├── DoubleGraphicSoftbuttonsShowTest.cpp │ │ │ ├── DoubleGraphicSoftbuttonsShowTest.h │ │ │ ├── GraphicSoftButtonShowTest.cpp │ │ │ ├── GraphicSoftButtonShowTest.h │ │ │ ├── GraphicWithTextAndSoftbuttonsShowTest.cpp │ │ │ ├── GraphicWithTextAndSoftbuttonsShowTest.h │ │ │ ├── GraphicWithTextButtonsShowTest.cpp │ │ │ ├── GraphicWithTextButtonsShowTest.h │ │ │ ├── GraphicWithTextShowTest.cpp │ │ │ ├── GraphicWithTextShowTest.h │ │ │ ├── GraphicWithTilesShowTest.cpp │ │ │ ├── GraphicWithTilesShowTest.h │ │ │ ├── LargeGraphicOnlyShowTest.cpp │ │ │ ├── LargeGraphicOnlyShowTest.h │ │ │ ├── MediaShowTest.cpp │ │ │ ├── MediaShowTest.h │ │ │ ├── NonMediaShowTest.cpp │ │ │ ├── NonMediaShowTest.h │ │ │ ├── OnscreenPresetsShowTest.cpp │ │ │ ├── OnscreenPresetsShowTest.h │ │ │ ├── TextAndSoftbuttonsWithGraphicShowTest.cpp │ │ │ ├── TextAndSoftbuttonsWithGraphicShowTest.h │ │ │ ├── TextButtonsOnlyShowTest.cpp │ │ │ ├── TextButtonsOnlyShowTest.h │ │ │ ├── TextButtonsWithGraphicShowTest.cpp │ │ │ ├── TextButtonsWithGraphicShowTest.h │ │ │ ├── TextWithGraphicShowTest.cpp │ │ │ ├── TextWithGraphicShowTest.h │ │ │ ├── TilesOnlyShowTest.cpp │ │ │ ├── TilesOnlyShowTest.h │ │ │ ├── TilesWithGraphicShowTest.cpp │ │ │ └── TilesWithGraphicShowTest.h │ ├── SliderView │ │ ├── SliderView.cpp │ │ ├── SliderView.h │ │ └── test │ │ │ ├── SliderViewTest.cpp │ │ │ └── SliderViewTest.h │ ├── Template │ │ ├── TemplateImp.cpp │ │ ├── TemplateImp.h │ │ ├── TemplateManager.cpp │ │ └── TemplateManager.h │ ├── UIManager.cpp │ ├── UIManager.h │ ├── libhmi_sdk.so │ ├── res │ │ └── hmi │ │ │ ├── VehicleInfo.json │ │ │ ├── hmi.ini │ │ │ ├── hmi.qrc │ │ │ ├── staticConfigDB.json │ │ │ └── staticResult.json │ ├── test │ │ ├── HMITest.sh │ │ └── MockModule.h │ ├── test_main.cc │ └── utils │ │ └── VideoStream │ │ ├── CeVideoStream.cpp │ │ ├── CeVideoStream.h │ │ ├── gst_player.cpp │ │ ├── gst_player.h │ │ └── test │ │ ├── CeVideoStreamTest.cpp │ │ └── CeVideoStreamTest.h ├── UI │ ├── SDLAppsView.cpp │ ├── SDLAppsView.h │ ├── SDLAppsWindow.cpp │ └── SDLAppsWindow.h ├── app │ ├── SDLApps.cpp │ └── SDLApps.h └── set_3rd_party_paths.cmake ├── SampleQTHMI.pro ├── StatusBar ├── CMakeLists.txt ├── Factory │ ├── StatusBarVFactory.cpp │ └── StatusBarVFactory.h ├── Source │ ├── StatusBarImages.qrc │ └── images │ │ ├── Status.png │ │ ├── bg.png │ │ ├── bluetooth.png │ │ ├── home.png │ │ ├── lianjie.png │ │ ├── line.png │ │ ├── loading.png │ │ ├── message.png │ │ ├── statusbar_bg.png │ │ ├── temperature.png │ │ ├── vr.png │ │ └── wifi.png ├── UI │ ├── StatusBarView.cpp │ ├── StatusBarView.h │ ├── StatusBarWindow.cpp │ └── StatusBarWindow.h └── app │ ├── StatusBar.cpp │ └── StatusBar.h ├── VR ├── CMakeLists.txt ├── Factory │ ├── VRVFactory.cpp │ └── VRVFactory.h ├── Source │ ├── VRImages.qrc │ └── images │ │ ├── message_icon.png │ │ ├── partingline.png │ │ ├── phone_icon.png │ │ ├── vr.png │ │ └── vr_peple.png ├── UI │ ├── VRInteractionView.cpp │ ├── VRInteractionView.h │ ├── VRView.cpp │ ├── VRView.h │ ├── VRWindow.cpp │ └── VRWindow.h └── app │ ├── VR.cpp │ └── VR.h ├── build.sh ├── lib └── linux │ └── libhmi_sdk.so ├── main.cpp ├── main.h └── res ├── Main_build_3.mov └── hmi ├── VehicleInfo.json ├── hmi.qrc ├── staticConfigDB.json └── staticResult.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /HMI_SDK_LIB/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/CMakeLists.txt -------------------------------------------------------------------------------- /HMI_SDK_LIB/Config/VehicleInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/Config/VehicleInfo.json -------------------------------------------------------------------------------- /HMI_SDK_LIB/Config/staticConfigDB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/Config/staticConfigDB.json -------------------------------------------------------------------------------- /HMI_SDK_LIB/Config/staticResult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/Config/staticResult.json -------------------------------------------------------------------------------- /HMI_SDK_LIB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/README.md -------------------------------------------------------------------------------- /HMI_SDK_LIB/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/app/CMakeLists.txt -------------------------------------------------------------------------------- /HMI_SDK_LIB/app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/app/main.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/CMakeLists.txt -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/app_data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/app_data/CMakeLists.txt -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/app_data/include/app_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/app_data/include/app_data.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/app_data/include/app_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/app_data/include/app_list.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/app_data/src/app_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/app_data/src/app_data.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/app_data/src/app_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/app_data/src/app_list.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/CMakeLists.txt -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/WS_Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/WS_Session.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/basic_communication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/basic_communication.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/hmi_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/hmi_button.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/hmi_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/hmi_channel.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/hmi_navigation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/hmi_navigation.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/hmi_tts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/hmi_tts.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/hmi_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/hmi_ui.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/hmi_vehicle_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/hmi_vehicle_info.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/hmi_video_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/hmi_video_stream.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/hmi_vr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/hmi_vr.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/sdl_connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/sdl_connector.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/sockets_to_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/sockets_to_sdl.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/include/websocket_to_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/include/websocket_to_sdl.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/set_3rd_party_paths.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/set_3rd_party_paths.cmake -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/WS_Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/WS_Session.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/basic_communication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/basic_communication.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/hmi_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/hmi_button.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/hmi_channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/hmi_channel.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/hmi_navigation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/hmi_navigation.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/hmi_tts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/hmi_tts.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/hmi_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/hmi_ui.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/hmi_vehicle_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/hmi_vehicle_info.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/hmi_video_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/hmi_video_stream.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/hmi_vr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/hmi_vr.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/sdl_connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/sdl_connector.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/sockets_to_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/sockets_to_sdl.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/hmi_sdk/connect/src/websocket_to_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/hmi_sdk/connect/src/websocket_to_sdl.cpp -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/app_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/app_common.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/app_data_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/app_data_interface.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/app_list_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/app_list_interface.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/global_first.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/global_first.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/message_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/message_interface.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/protocol_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/protocol_defines.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/pthread/implement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/pthread/implement.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/pthread/need_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/pthread/need_errno.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/pthread/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/pthread/pthread.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/pthread/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/pthread/sched.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/pthread/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/pthread/semaphore.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/rpc_value_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/rpc_value_interface.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/sdk_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/sdk_export.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/sdl_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/sdl_export.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/socket_manager_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/socket_manager_interface.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/ui_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/ui_interface.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/ui_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/ui_lib.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/include/wince/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/include/wince/stdint.h -------------------------------------------------------------------------------- /HMI_SDK_LIB/lib/android/libhmi_sdk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/lib/android/libhmi_sdk.so -------------------------------------------------------------------------------- /HMI_SDK_LIB/lib/android/libsmartDeviceLinkCore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/lib/android/libsmartDeviceLinkCore.so -------------------------------------------------------------------------------- /HMI_SDK_LIB/lib/linux/libsmartDeviceLinkCore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/lib/linux/libsmartDeviceLinkCore.so -------------------------------------------------------------------------------- /HMI_SDK_LIB/lib/win32/smartDeviceLinkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/lib/win32/smartDeviceLinkCore.dll -------------------------------------------------------------------------------- /HMI_SDK_LIB/lib/win32/smartDeviceLinkCore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/lib/win32/smartDeviceLinkCore.lib -------------------------------------------------------------------------------- /HMI_SDK_LIB/lib/wince/smartDeviceLinkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/lib/wince/smartDeviceLinkCore.dll -------------------------------------------------------------------------------- /HMI_SDK_LIB/lib/wince/smartDeviceLinkCore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/lib/wince/smartDeviceLinkCore.lib -------------------------------------------------------------------------------- /HMI_SDK_LIB/releaseNote.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/releaseNote.xlsx -------------------------------------------------------------------------------- /HMI_SDK_LIB/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/tools/CMakeLists.txt -------------------------------------------------------------------------------- /HMI_SDK_LIB/tools/jsoncpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/tools/jsoncpp/CMakeLists.txt -------------------------------------------------------------------------------- /HMI_SDK_LIB/tools/jsoncpp/devtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/tools/jsoncpp/devtools/__init__.py -------------------------------------------------------------------------------- /HMI_SDK_LIB/tools/jsoncpp/devtools/agent_vmw7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/tools/jsoncpp/devtools/agent_vmw7.json -------------------------------------------------------------------------------- /HMI_SDK_LIB/tools/jsoncpp/devtools/agent_vmxp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/tools/jsoncpp/devtools/agent_vmxp.json -------------------------------------------------------------------------------- /HMI_SDK_LIB/tools/jsoncpp/devtools/antglob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/tools/jsoncpp/devtools/antglob.py -------------------------------------------------------------------------------- /HMI_SDK_LIB/tools/jsoncpp/devtools/batchbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/tools/jsoncpp/devtools/batchbuild.py -------------------------------------------------------------------------------- /HMI_SDK_LIB/tools/jsoncpp/devtools/fixeol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/tools/jsoncpp/devtools/fixeol.py -------------------------------------------------------------------------------- /HMI_SDK_LIB/tools/jsoncpp/devtools/licenseupdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/tools/jsoncpp/devtools/licenseupdater.py -------------------------------------------------------------------------------- /HMI_SDK_LIB/tools/jsoncpp/devtools/tarball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/tools/jsoncpp/devtools/tarball.py -------------------------------------------------------------------------------- /HMI_SDK_LIB/tools/jsoncpp/doc/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APCVSRepo/HMI_SDK_LIB/HEAD/HMI_SDK_LIB/tools/jsoncpp/doc/doxyfile.in -------------------------------------------------------------------------------- /HMI_SDK_LIB/tools/jsoncpp/doc/footer.html: -------------------------------------------------------------------------------- 1 |