├── .clang-format ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── 3rdParty └── CMakeLists.txt ├── CANdevResources.qrc ├── CMakeLists.txt ├── Doxyfile ├── LICENSE ├── README.md ├── cmake ├── Modules │ ├── CodeCoverage.cmake │ ├── CompilerVersion.cmake │ └── FindLibnl.cmake └── osx_bundle.cmake ├── codecov.yml ├── doc └── CANBus_Styleguide.pdf ├── files ├── CANdevStudio.sh ├── css │ ├── darkStyle.css │ ├── lightStyle.css │ ├── toolBar_dark.css │ └── toolBar_light.css ├── images │ ├── dark │ │ ├── Angle-down-01.svg │ │ ├── Angle-up-01.svg │ │ ├── CANbus_icon_Add.svg │ │ ├── CANbus_icon_CascadeView.svg │ │ ├── CANbus_icon_CascadeView_disabled.svg │ │ ├── CANbus_icon_CheckBoxOff.svg │ │ ├── CANbus_icon_CheckBoxOff_disabled.svg │ │ ├── CANbus_icon_CheckBoxOn.svg │ │ ├── CANbus_icon_CheckBoxOn_disabled.svg │ │ ├── CANbus_icon_Clear.svg │ │ ├── CANbus_icon_Close.svg │ │ ├── CANbus_icon_CloseSim.svg │ │ ├── CANbus_icon_CloseSim_disabled.svg │ │ ├── CANbus_icon_Close_tab.svg │ │ ├── CANbus_icon_Close_tab_selected.svg │ │ ├── CANbus_icon_Combine.svg │ │ ├── CANbus_icon_Input.svg │ │ ├── CANbus_icon_InputOutput.svg │ │ ├── CANbus_icon_Lock.svg │ │ ├── CANbus_icon_NewProject.svg │ │ ├── CANbus_icon_OpenProject.svg │ │ ├── CANbus_icon_OpenSim.svg │ │ ├── CANbus_icon_OpenSim_disabled.svg │ │ ├── CANbus_icon_Output.svg │ │ ├── CANbus_icon_Remove.svg │ │ ├── CANbus_icon_SaveAsProject.svg │ │ ├── CANbus_icon_SaveAsProject_disabled.svg │ │ ├── CANbus_icon_SaveProject.svg │ │ ├── CANbus_icon_SaveProject_disabled.svg │ │ ├── CANbus_icon_Switch.svg │ │ ├── CANbus_icon_Switch_2.svg │ │ ├── CANbus_icon_TabsView.svg │ │ ├── CANbus_icon_TabsView_disabled.svg │ │ ├── CANbus_icon_Undock.svg │ │ ├── CANbus_icon_start_disabled.png │ │ ├── CANbus_icon_start_enabled.png │ │ ├── CANbus_icon_stop_disabled.png │ │ ├── CANbus_icon_stop_enabled.png │ │ ├── CANbus_logo.svg │ │ ├── about_screen.png │ │ └── start_screen.png │ ├── db_icon.svg │ └── light │ │ ├── Angle-down-01.svg │ │ ├── Angle-up-01.svg │ │ ├── CANbus_icon_Add.svg │ │ ├── CANbus_icon_CascadeView.svg │ │ ├── CANbus_icon_CascadeView_disabled.svg │ │ ├── CANbus_icon_CheckBoxOff.svg │ │ ├── CANbus_icon_CheckBoxOff_disable.svg │ │ ├── CANbus_icon_CheckBoxOn.svg │ │ ├── CANbus_icon_CheckBoxOn_disabled.svg │ │ ├── CANbus_icon_Clear.svg │ │ ├── CANbus_icon_Close.svg │ │ ├── CANbus_icon_CloseSim.svg │ │ ├── CANbus_icon_CloseSim_disabled.svg │ │ ├── CANbus_icon_Close_gray.svg │ │ ├── CANbus_icon_Close_tab.svg │ │ ├── CANbus_icon_Close_tab_selected.svg │ │ ├── CANbus_icon_Combine.svg │ │ ├── CANbus_icon_Input.svg │ │ ├── CANbus_icon_InputOutput.svg │ │ ├── CANbus_icon_Lock.svg │ │ ├── CANbus_icon_Log.svg │ │ ├── CANbus_icon_NewProject.svg │ │ ├── CANbus_icon_OpenProject.svg │ │ ├── CANbus_icon_OpenProject_Grey.svg │ │ ├── CANbus_icon_OpenSim.svg │ │ ├── CANbus_icon_OpenSim_disabled.svg │ │ ├── CANbus_icon_Output.svg │ │ ├── CANbus_icon_Remove.svg │ │ ├── CANbus_icon_SaveAsProject.svg │ │ ├── CANbus_icon_SaveAsProject_disabled.svg │ │ ├── CANbus_icon_SaveProject.svg │ │ ├── CANbus_icon_SaveProject_disabled.svg │ │ ├── CANbus_icon_Switch.svg │ │ ├── CANbus_icon_Switch_2.svg │ │ ├── CANbus_icon_Switch_dark.svg │ │ ├── CANbus_icon_TabsView.svg │ │ ├── CANbus_icon_TabsView_disabled.svg │ │ ├── CANbus_icon_Undock.svg │ │ ├── CANbus_icon_arrow_down.svg │ │ ├── CANbus_icon_arrow_up.svg │ │ ├── CANbus_icon_edit.svg │ │ ├── CANbus_icon_start_disabled.png │ │ ├── CANbus_icon_start_enabled.png │ │ ├── CANbus_icon_stop_disabled.png │ │ ├── CANbus_icon_stop_enabled.png │ │ ├── CANbus_logo.svg │ │ ├── about_screen.png │ │ ├── pattern_dark.png │ │ ├── pattern_white.png │ │ └── start_screen.png └── json │ ├── NodeEditorStyleDark.json │ ├── NodeEditorStyleLight.json │ └── projectConfigSchema.json ├── hooks └── pre-commit ├── packaging.cmake ├── src ├── common │ ├── CMakeLists.txt │ ├── bcastmsgs.h │ ├── candbhandler.cpp │ ├── candbhandler.h │ ├── candbpainter.cpp │ ├── candbpainter.h │ ├── componentinterface.h │ ├── componentmodel.h │ ├── confighelpers.h │ ├── context.h │ ├── datamodeltypes │ │ ├── canrawdata.h │ │ ├── cansignalmodel.h │ │ └── datadirection.h │ ├── enumiterator.h │ ├── guiinterface │ │ ├── checkboxinterface.h │ │ ├── lineeditinterface.h │ │ └── pushbuttoninterface.h │ ├── log.h │ ├── modelvisitor.h │ ├── nodepainter.h │ ├── plugin_type.h │ ├── pluginloader.h │ ├── plugins.hpp.in │ ├── propertyfields.h │ ├── sortenums.h │ ├── sortmodel.cpp │ ├── sortmodel.h │ ├── tests │ │ └── common_test.cpp │ ├── typestring.hh │ ├── version.h.in │ ├── visitablewith.h │ └── visitor.h ├── components │ ├── CMakeLists.txt │ ├── candevice │ │ ├── CMakeLists.txt │ │ ├── candevice.cpp │ │ ├── candevice.h │ │ ├── candevice_p.h │ │ ├── candeviceinterface.h │ │ ├── candevicemodel.cpp │ │ ├── candevicemodel.h │ │ ├── candeviceplugin.h │ │ ├── candeviceqt.h │ │ └── tests │ │ │ ├── candevice_test.cpp │ │ │ ├── candevicemodel_test.cpp │ │ │ └── candeviceqt_test.cpp │ ├── canload │ │ ├── CMakeLists.txt │ │ ├── canload.cpp │ │ ├── canload.h │ │ ├── canload_p.cpp │ │ ├── canload_p.h │ │ ├── canloadmodel.cpp │ │ ├── canloadmodel.h │ │ ├── canloadpainter.h │ │ ├── canloadplugin.h │ │ └── tests │ │ │ ├── canload_test.cpp │ │ │ └── canloadmodel_test.cpp │ ├── canrawfilter │ │ ├── CMakeLists.txt │ │ ├── canrawfilter.cpp │ │ ├── canrawfilter.h │ │ ├── canrawfilter_p.cpp │ │ ├── canrawfilter_p.h │ │ ├── canrawfiltermodel.cpp │ │ ├── canrawfiltermodel.h │ │ ├── canrawfilterplugin.h │ │ ├── gui │ │ │ ├── canrawfilter.ui │ │ │ ├── canrawfilterguiimpl.h │ │ │ └── canrawfilterguiint.h │ │ └── tests │ │ │ ├── canrawfilter_test.cpp │ │ │ └── canrawfiltermodel_test.cpp │ ├── canrawlogger │ │ ├── CMakeLists.txt │ │ ├── canrawlogger.cpp │ │ ├── canrawlogger.h │ │ ├── canrawlogger_p.cpp │ │ ├── canrawlogger_p.h │ │ ├── canrawloggermodel.cpp │ │ ├── canrawloggermodel.h │ │ ├── canrawloggerplugin.h │ │ └── tests │ │ │ ├── canrawlogger_test.cpp │ │ │ └── canrawloggermodel_test.cpp │ ├── canrawplayer │ │ ├── CMakeLists.txt │ │ ├── canrawplayer.cpp │ │ ├── canrawplayer.h │ │ ├── canrawplayer_p.cpp │ │ ├── canrawplayer_p.h │ │ ├── canrawplayermodel.cpp │ │ ├── canrawplayermodel.h │ │ ├── canrawplayerplugin.h │ │ └── tests │ │ │ ├── canrawplayer_test.cpp │ │ │ └── canrawplayermodel_test.cpp │ ├── canrawsender │ │ ├── CMakeLists.txt │ │ ├── canrawsender.cpp │ │ ├── canrawsender.h │ │ ├── canrawsender_p.cpp │ │ ├── canrawsender_p.h │ │ ├── canrawsendermodel.cpp │ │ ├── canrawsendermodel.h │ │ ├── canrawsenderplugin.h │ │ ├── gui │ │ │ ├── canrawsender.ui │ │ │ ├── crsgui.h │ │ │ ├── crsguiinterface.h │ │ │ ├── nlmcheckbox.h │ │ │ ├── nlmlineedit.h │ │ │ └── nlmpushbutton.h │ │ ├── newlinemanager.cpp │ │ ├── newlinemanager.h │ │ ├── nlmfactory.h │ │ ├── nlmfactoryinterface.h │ │ └── tests │ │ │ ├── canrawsender_test.cpp │ │ │ ├── canrawsendermodel_test.cpp │ │ │ ├── configfiles │ │ │ ├── canrawsenderconfig.cds │ │ │ ├── canrawsenderconfig_badData.cds │ │ │ ├── canrawsenderconfig_badId.cds │ │ │ ├── canrawsenderconfig_badInterval.cds │ │ │ └── canrawsenderconfig_badcolumns.cds │ │ │ └── newlinemanager_test.cpp │ ├── canrawview │ │ ├── CMakeLists.txt │ │ ├── canrawview.cpp │ │ ├── canrawview.h │ │ ├── canrawview_p.h │ │ ├── canrawviewmodel.cpp │ │ ├── canrawviewmodel.h │ │ ├── canrawviewplugin.h │ │ ├── gui │ │ │ ├── canrawview.ui │ │ │ ├── crvgui.h │ │ │ └── crvguiinterface.h │ │ └── tests │ │ │ ├── canrawview_test.cpp │ │ │ ├── canrawviewmodel_test.cpp │ │ │ └── configfiles │ │ │ ├── canrawviewconfig.cds │ │ │ ├── canrawviewconfig_columnluck.cds │ │ │ ├── canrawviewconfig_sortingformat.cds │ │ │ ├── canrawviewconfig_visualindexproblem.cds │ │ │ └── canrawviewconfig_widthproblem.cds │ ├── cansignaldata │ │ ├── CMakeLists.txt │ │ ├── cansignaldata.cpp │ │ ├── cansignaldata.h │ │ ├── cansignaldata_p.cpp │ │ ├── cansignaldata_p.h │ │ ├── cansignaldatamodel.cpp │ │ ├── cansignaldatamodel.h │ │ ├── cansignaldataplugin.h │ │ ├── gui │ │ │ ├── cansignaldata.ui │ │ │ ├── cansignaldataguiimpl.h │ │ │ └── cansignaldataguiint.h │ │ ├── searchmodel.cpp │ │ ├── searchmodel.h │ │ └── tests │ │ │ ├── cansignaldata_test.cpp │ │ │ ├── cansignaldatamodel_test.cpp │ │ │ └── dbc │ │ │ ├── project.cds │ │ │ └── tesla_can.dbc │ ├── cansignaldecoder │ │ ├── CMakeLists.txt │ │ ├── cansignaldecoder.cpp │ │ ├── cansignaldecoder.h │ │ ├── cansignaldecoder_p.cpp │ │ ├── cansignaldecoder_p.h │ │ ├── cansignaldecodermodel.cpp │ │ ├── cansignaldecodermodel.h │ │ ├── cansignaldecoderplugin.h │ │ └── tests │ │ │ ├── cansignaldecoder_test.cpp │ │ │ ├── cansignaldecodermodel_test.cpp │ │ │ └── dbc │ │ │ └── tesla_can.dbc │ ├── cansignalencoder │ │ ├── CMakeLists.txt │ │ ├── cansignalencoder.cpp │ │ ├── cansignalencoder.h │ │ ├── cansignalencoder_p.cpp │ │ ├── cansignalencoder_p.h │ │ ├── cansignalencodermodel.cpp │ │ ├── cansignalencodermodel.h │ │ ├── cansignalencoderplugin.h │ │ └── tests │ │ │ ├── cansignalencoder_test.cpp │ │ │ ├── cansignalencodermodel_test.cpp │ │ │ └── dbc │ │ │ └── tesla_can.dbc │ ├── cansignalsender │ │ ├── CMakeLists.txt │ │ ├── cansignalsender.cpp │ │ ├── cansignalsender.h │ │ ├── cansignalsender_p.cpp │ │ ├── cansignalsender_p.h │ │ ├── cansignalsendermodel.cpp │ │ ├── cansignalsendermodel.h │ │ ├── cansignalsenderplugin.h │ │ ├── cansignalsendertablemodel.cpp │ │ ├── cansignalsendertablemodel.h │ │ ├── gui │ │ │ ├── cansignalsender.ui │ │ │ ├── cansignalsenderguiimpl.h │ │ │ └── cansignalsenderguiint.h │ │ └── tests │ │ │ ├── cansignalsender_test.cpp │ │ │ └── cansignalsendermodel_test.cpp │ ├── cansignalviewer │ │ ├── CMakeLists.txt │ │ ├── cansignalviewer.cpp │ │ ├── cansignalviewer.h │ │ ├── cansignalviewer_p.cpp │ │ ├── cansignalviewer_p.h │ │ ├── cansignalviewermodel.cpp │ │ ├── cansignalviewermodel.h │ │ ├── cansignalviewerplugin.h │ │ ├── gui │ │ │ ├── cansignalviewer.ui │ │ │ ├── cansignalviewerguiimpl.h │ │ │ └── cansignalviewerguiint.h │ │ └── tests │ │ │ ├── cansignalviewer_test.cpp │ │ │ └── cansignalviewermodel_test.cpp │ └── qmlexecutor │ │ ├── CMakeLists.txt │ │ ├── canbusmodel.hpp │ │ ├── examples │ │ ├── sample.qml │ │ ├── simple_forwarder.qml │ │ └── simple_timer.qml │ │ ├── gui │ │ ├── qmlexecutor.ui │ │ ├── qmlexecutorguiimpl.h │ │ └── qmlexecutorguiint.h │ │ ├── qmlexecutor.cpp │ │ ├── qmlexecutor.h │ │ ├── qmlexecutor_p.cpp │ │ ├── qmlexecutor_p.h │ │ ├── qmlexecutormodel.cpp │ │ ├── qmlexecutormodel.h │ │ ├── qmlexecutorplugin.h │ │ └── tests │ │ ├── guimock.h │ │ ├── qmlexecutor_test.cpp │ │ └── qmlexecutormodel_test.cpp └── gui │ ├── CMakeLists.txt │ ├── aboutdialog.ui │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── projectconfig │ ├── CMakeLists.txt │ ├── dragwidget.cpp │ ├── dragwidget.h │ ├── flowviewwrapper.cpp │ ├── flowviewwrapper.h │ ├── iconlabel.h │ ├── modeltoolbutton.h │ ├── pcimpl.h │ ├── pcinterface.h │ ├── projectconfig.cpp │ ├── projectconfig.h │ ├── projectconfig.ui │ ├── projectconfig_p.h │ ├── projectconfigvalidator.cpp │ ├── projectconfigvalidator.h │ ├── propertyeditordialog.cpp │ ├── propertyeditordialog.h │ ├── propertyeditordialog.ui │ └── tests │ │ ├── configfiles │ │ ├── projectconfig.cds │ │ └── projectconfig_wrong.cds │ │ ├── projectconfig.ui │ │ ├── projectconfig_test.cpp │ │ └── projectconfig_test_noqrc.cpp │ ├── subwindow.h │ └── toolbar.ui └── tools ├── CMakeLists.txt └── templategen ├── CMakeLists.txt └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdParty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/3rdParty/CMakeLists.txt -------------------------------------------------------------------------------- /CANdevResources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/CANdevResources.qrc -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Modules/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/cmake/Modules/CodeCoverage.cmake -------------------------------------------------------------------------------- /cmake/Modules/CompilerVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/cmake/Modules/CompilerVersion.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindLibnl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/cmake/Modules/FindLibnl.cmake -------------------------------------------------------------------------------- /cmake/osx_bundle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/cmake/osx_bundle.cmake -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/CANBus_Styleguide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/doc/CANBus_Styleguide.pdf -------------------------------------------------------------------------------- /files/CANdevStudio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/CANdevStudio.sh -------------------------------------------------------------------------------- /files/css/darkStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/css/darkStyle.css -------------------------------------------------------------------------------- /files/css/lightStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/css/lightStyle.css -------------------------------------------------------------------------------- /files/css/toolBar_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/css/toolBar_dark.css -------------------------------------------------------------------------------- /files/css/toolBar_light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/css/toolBar_light.css -------------------------------------------------------------------------------- /files/images/dark/Angle-down-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/Angle-down-01.svg -------------------------------------------------------------------------------- /files/images/dark/Angle-up-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/Angle-up-01.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Add.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_CascadeView.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_CascadeView.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_CascadeView_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_CascadeView_disabled.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_CheckBoxOff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_CheckBoxOff.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_CheckBoxOff_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_CheckBoxOff_disabled.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_CheckBoxOn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_CheckBoxOn.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_CheckBoxOn_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_CheckBoxOn_disabled.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Clear.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Close.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_CloseSim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_CloseSim.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_CloseSim_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_CloseSim_disabled.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Close_tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Close_tab.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Close_tab_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Close_tab_selected.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Combine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Combine.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Input.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_InputOutput.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_InputOutput.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Lock.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_NewProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_NewProject.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_OpenProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_OpenProject.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_OpenSim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_OpenSim.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_OpenSim_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_OpenSim_disabled.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Output.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Remove.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_SaveAsProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_SaveAsProject.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_SaveAsProject_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_SaveAsProject_disabled.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_SaveProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_SaveProject.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_SaveProject_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_SaveProject_disabled.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Switch.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Switch_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Switch_2.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_TabsView.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_TabsView.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_TabsView_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_TabsView_disabled.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_Undock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_Undock.svg -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_start_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_start_disabled.png -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_start_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_start_enabled.png -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_stop_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_stop_disabled.png -------------------------------------------------------------------------------- /files/images/dark/CANbus_icon_stop_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_icon_stop_enabled.png -------------------------------------------------------------------------------- /files/images/dark/CANbus_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/CANbus_logo.svg -------------------------------------------------------------------------------- /files/images/dark/about_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/about_screen.png -------------------------------------------------------------------------------- /files/images/dark/start_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/dark/start_screen.png -------------------------------------------------------------------------------- /files/images/db_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/db_icon.svg -------------------------------------------------------------------------------- /files/images/light/Angle-down-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/Angle-down-01.svg -------------------------------------------------------------------------------- /files/images/light/Angle-up-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/Angle-up-01.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Add.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_CascadeView.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_CascadeView.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_CascadeView_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_CascadeView_disabled.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_CheckBoxOff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_CheckBoxOff.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_CheckBoxOff_disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_CheckBoxOff_disable.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_CheckBoxOn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_CheckBoxOn.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_CheckBoxOn_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_CheckBoxOn_disabled.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Clear.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Close.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_CloseSim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_CloseSim.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_CloseSim_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_CloseSim_disabled.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Close_gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Close_gray.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Close_tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Close_tab.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Close_tab_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Close_tab_selected.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Combine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Combine.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Input.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_InputOutput.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_InputOutput.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Lock.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Log.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_NewProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_NewProject.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_OpenProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_OpenProject.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_OpenProject_Grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_OpenProject_Grey.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_OpenSim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_OpenSim.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_OpenSim_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_OpenSim_disabled.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Output.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Remove.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_SaveAsProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_SaveAsProject.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_SaveAsProject_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_SaveAsProject_disabled.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_SaveProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_SaveProject.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_SaveProject_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_SaveProject_disabled.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Switch.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Switch_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Switch_2.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Switch_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Switch_dark.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_TabsView.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_TabsView.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_TabsView_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_TabsView_disabled.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_Undock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_Undock.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_arrow_down.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_arrow_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_arrow_up.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_edit.svg -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_start_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_start_disabled.png -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_start_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_start_enabled.png -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_stop_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_stop_disabled.png -------------------------------------------------------------------------------- /files/images/light/CANbus_icon_stop_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_icon_stop_enabled.png -------------------------------------------------------------------------------- /files/images/light/CANbus_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/CANbus_logo.svg -------------------------------------------------------------------------------- /files/images/light/about_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/about_screen.png -------------------------------------------------------------------------------- /files/images/light/pattern_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/pattern_dark.png -------------------------------------------------------------------------------- /files/images/light/pattern_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/pattern_white.png -------------------------------------------------------------------------------- /files/images/light/start_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/images/light/start_screen.png -------------------------------------------------------------------------------- /files/json/NodeEditorStyleDark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/json/NodeEditorStyleDark.json -------------------------------------------------------------------------------- /files/json/NodeEditorStyleLight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/json/NodeEditorStyleLight.json -------------------------------------------------------------------------------- /files/json/projectConfigSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/files/json/projectConfigSchema.json -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /packaging.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/packaging.cmake -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/bcastmsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/bcastmsgs.h -------------------------------------------------------------------------------- /src/common/candbhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/candbhandler.cpp -------------------------------------------------------------------------------- /src/common/candbhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/candbhandler.h -------------------------------------------------------------------------------- /src/common/candbpainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/candbpainter.cpp -------------------------------------------------------------------------------- /src/common/candbpainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/candbpainter.h -------------------------------------------------------------------------------- /src/common/componentinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/componentinterface.h -------------------------------------------------------------------------------- /src/common/componentmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/componentmodel.h -------------------------------------------------------------------------------- /src/common/confighelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/confighelpers.h -------------------------------------------------------------------------------- /src/common/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/context.h -------------------------------------------------------------------------------- /src/common/datamodeltypes/canrawdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/datamodeltypes/canrawdata.h -------------------------------------------------------------------------------- /src/common/datamodeltypes/cansignalmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/datamodeltypes/cansignalmodel.h -------------------------------------------------------------------------------- /src/common/datamodeltypes/datadirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/datamodeltypes/datadirection.h -------------------------------------------------------------------------------- /src/common/enumiterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/enumiterator.h -------------------------------------------------------------------------------- /src/common/guiinterface/checkboxinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/guiinterface/checkboxinterface.h -------------------------------------------------------------------------------- /src/common/guiinterface/lineeditinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/guiinterface/lineeditinterface.h -------------------------------------------------------------------------------- /src/common/guiinterface/pushbuttoninterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/guiinterface/pushbuttoninterface.h -------------------------------------------------------------------------------- /src/common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/log.h -------------------------------------------------------------------------------- /src/common/modelvisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/modelvisitor.h -------------------------------------------------------------------------------- /src/common/nodepainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/nodepainter.h -------------------------------------------------------------------------------- /src/common/plugin_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/plugin_type.h -------------------------------------------------------------------------------- /src/common/pluginloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/pluginloader.h -------------------------------------------------------------------------------- /src/common/plugins.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/plugins.hpp.in -------------------------------------------------------------------------------- /src/common/propertyfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/propertyfields.h -------------------------------------------------------------------------------- /src/common/sortenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/sortenums.h -------------------------------------------------------------------------------- /src/common/sortmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/sortmodel.cpp -------------------------------------------------------------------------------- /src/common/sortmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/sortmodel.h -------------------------------------------------------------------------------- /src/common/tests/common_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/tests/common_test.cpp -------------------------------------------------------------------------------- /src/common/typestring.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/typestring.hh -------------------------------------------------------------------------------- /src/common/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/version.h.in -------------------------------------------------------------------------------- /src/common/visitablewith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/visitablewith.h -------------------------------------------------------------------------------- /src/common/visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/common/visitor.h -------------------------------------------------------------------------------- /src/components/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/candevice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/candevice/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/candevice/candevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/candevice/candevice.cpp -------------------------------------------------------------------------------- /src/components/candevice/candevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/candevice/candevice.h -------------------------------------------------------------------------------- /src/components/candevice/candevice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/candevice/candevice_p.h -------------------------------------------------------------------------------- /src/components/candevice/candeviceinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/candevice/candeviceinterface.h -------------------------------------------------------------------------------- /src/components/candevice/candevicemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/candevice/candevicemodel.cpp -------------------------------------------------------------------------------- /src/components/candevice/candevicemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/candevice/candevicemodel.h -------------------------------------------------------------------------------- /src/components/candevice/candeviceplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/candevice/candeviceplugin.h -------------------------------------------------------------------------------- /src/components/candevice/candeviceqt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/candevice/candeviceqt.h -------------------------------------------------------------------------------- /src/components/candevice/tests/candevice_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/candevice/tests/candevice_test.cpp -------------------------------------------------------------------------------- /src/components/candevice/tests/candevicemodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/candevice/tests/candevicemodel_test.cpp -------------------------------------------------------------------------------- /src/components/candevice/tests/candeviceqt_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/candevice/tests/candeviceqt_test.cpp -------------------------------------------------------------------------------- /src/components/canload/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canload/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/canload/canload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canload/canload.cpp -------------------------------------------------------------------------------- /src/components/canload/canload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canload/canload.h -------------------------------------------------------------------------------- /src/components/canload/canload_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canload/canload_p.cpp -------------------------------------------------------------------------------- /src/components/canload/canload_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canload/canload_p.h -------------------------------------------------------------------------------- /src/components/canload/canloadmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canload/canloadmodel.cpp -------------------------------------------------------------------------------- /src/components/canload/canloadmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canload/canloadmodel.h -------------------------------------------------------------------------------- /src/components/canload/canloadpainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canload/canloadpainter.h -------------------------------------------------------------------------------- /src/components/canload/canloadplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canload/canloadplugin.h -------------------------------------------------------------------------------- /src/components/canload/tests/canload_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canload/tests/canload_test.cpp -------------------------------------------------------------------------------- /src/components/canload/tests/canloadmodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canload/tests/canloadmodel_test.cpp -------------------------------------------------------------------------------- /src/components/canrawfilter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/canrawfilter/canrawfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/canrawfilter.cpp -------------------------------------------------------------------------------- /src/components/canrawfilter/canrawfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/canrawfilter.h -------------------------------------------------------------------------------- /src/components/canrawfilter/canrawfilter_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/canrawfilter_p.cpp -------------------------------------------------------------------------------- /src/components/canrawfilter/canrawfilter_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/canrawfilter_p.h -------------------------------------------------------------------------------- /src/components/canrawfilter/canrawfiltermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/canrawfiltermodel.cpp -------------------------------------------------------------------------------- /src/components/canrawfilter/canrawfiltermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/canrawfiltermodel.h -------------------------------------------------------------------------------- /src/components/canrawfilter/canrawfilterplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/canrawfilterplugin.h -------------------------------------------------------------------------------- /src/components/canrawfilter/gui/canrawfilter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/gui/canrawfilter.ui -------------------------------------------------------------------------------- /src/components/canrawfilter/gui/canrawfilterguiimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/gui/canrawfilterguiimpl.h -------------------------------------------------------------------------------- /src/components/canrawfilter/gui/canrawfilterguiint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/gui/canrawfilterguiint.h -------------------------------------------------------------------------------- /src/components/canrawfilter/tests/canrawfilter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/tests/canrawfilter_test.cpp -------------------------------------------------------------------------------- /src/components/canrawfilter/tests/canrawfiltermodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawfilter/tests/canrawfiltermodel_test.cpp -------------------------------------------------------------------------------- /src/components/canrawlogger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawlogger/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/canrawlogger/canrawlogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawlogger/canrawlogger.cpp -------------------------------------------------------------------------------- /src/components/canrawlogger/canrawlogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawlogger/canrawlogger.h -------------------------------------------------------------------------------- /src/components/canrawlogger/canrawlogger_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawlogger/canrawlogger_p.cpp -------------------------------------------------------------------------------- /src/components/canrawlogger/canrawlogger_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawlogger/canrawlogger_p.h -------------------------------------------------------------------------------- /src/components/canrawlogger/canrawloggermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawlogger/canrawloggermodel.cpp -------------------------------------------------------------------------------- /src/components/canrawlogger/canrawloggermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawlogger/canrawloggermodel.h -------------------------------------------------------------------------------- /src/components/canrawlogger/canrawloggerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawlogger/canrawloggerplugin.h -------------------------------------------------------------------------------- /src/components/canrawlogger/tests/canrawlogger_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawlogger/tests/canrawlogger_test.cpp -------------------------------------------------------------------------------- /src/components/canrawlogger/tests/canrawloggermodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawlogger/tests/canrawloggermodel_test.cpp -------------------------------------------------------------------------------- /src/components/canrawplayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawplayer/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/canrawplayer/canrawplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawplayer/canrawplayer.cpp -------------------------------------------------------------------------------- /src/components/canrawplayer/canrawplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawplayer/canrawplayer.h -------------------------------------------------------------------------------- /src/components/canrawplayer/canrawplayer_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawplayer/canrawplayer_p.cpp -------------------------------------------------------------------------------- /src/components/canrawplayer/canrawplayer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawplayer/canrawplayer_p.h -------------------------------------------------------------------------------- /src/components/canrawplayer/canrawplayermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawplayer/canrawplayermodel.cpp -------------------------------------------------------------------------------- /src/components/canrawplayer/canrawplayermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawplayer/canrawplayermodel.h -------------------------------------------------------------------------------- /src/components/canrawplayer/canrawplayerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawplayer/canrawplayerplugin.h -------------------------------------------------------------------------------- /src/components/canrawplayer/tests/canrawplayer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawplayer/tests/canrawplayer_test.cpp -------------------------------------------------------------------------------- /src/components/canrawplayer/tests/canrawplayermodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawplayer/tests/canrawplayermodel_test.cpp -------------------------------------------------------------------------------- /src/components/canrawsender/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/canrawsender/canrawsender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/canrawsender.cpp -------------------------------------------------------------------------------- /src/components/canrawsender/canrawsender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/canrawsender.h -------------------------------------------------------------------------------- /src/components/canrawsender/canrawsender_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/canrawsender_p.cpp -------------------------------------------------------------------------------- /src/components/canrawsender/canrawsender_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/canrawsender_p.h -------------------------------------------------------------------------------- /src/components/canrawsender/canrawsendermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/canrawsendermodel.cpp -------------------------------------------------------------------------------- /src/components/canrawsender/canrawsendermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/canrawsendermodel.h -------------------------------------------------------------------------------- /src/components/canrawsender/canrawsenderplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/canrawsenderplugin.h -------------------------------------------------------------------------------- /src/components/canrawsender/gui/canrawsender.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/gui/canrawsender.ui -------------------------------------------------------------------------------- /src/components/canrawsender/gui/crsgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/gui/crsgui.h -------------------------------------------------------------------------------- /src/components/canrawsender/gui/crsguiinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/gui/crsguiinterface.h -------------------------------------------------------------------------------- /src/components/canrawsender/gui/nlmcheckbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/gui/nlmcheckbox.h -------------------------------------------------------------------------------- /src/components/canrawsender/gui/nlmlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/gui/nlmlineedit.h -------------------------------------------------------------------------------- /src/components/canrawsender/gui/nlmpushbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/gui/nlmpushbutton.h -------------------------------------------------------------------------------- /src/components/canrawsender/newlinemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/newlinemanager.cpp -------------------------------------------------------------------------------- /src/components/canrawsender/newlinemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/newlinemanager.h -------------------------------------------------------------------------------- /src/components/canrawsender/nlmfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/nlmfactory.h -------------------------------------------------------------------------------- /src/components/canrawsender/nlmfactoryinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/nlmfactoryinterface.h -------------------------------------------------------------------------------- /src/components/canrawsender/tests/canrawsender_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/tests/canrawsender_test.cpp -------------------------------------------------------------------------------- /src/components/canrawsender/tests/canrawsendermodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/tests/canrawsendermodel_test.cpp -------------------------------------------------------------------------------- /src/components/canrawsender/tests/configfiles/canrawsenderconfig.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/tests/configfiles/canrawsenderconfig.cds -------------------------------------------------------------------------------- /src/components/canrawsender/tests/configfiles/canrawsenderconfig_badData.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/tests/configfiles/canrawsenderconfig_badData.cds -------------------------------------------------------------------------------- /src/components/canrawsender/tests/configfiles/canrawsenderconfig_badId.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/tests/configfiles/canrawsenderconfig_badId.cds -------------------------------------------------------------------------------- /src/components/canrawsender/tests/configfiles/canrawsenderconfig_badInterval.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/tests/configfiles/canrawsenderconfig_badInterval.cds -------------------------------------------------------------------------------- /src/components/canrawsender/tests/configfiles/canrawsenderconfig_badcolumns.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/tests/configfiles/canrawsenderconfig_badcolumns.cds -------------------------------------------------------------------------------- /src/components/canrawsender/tests/newlinemanager_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawsender/tests/newlinemanager_test.cpp -------------------------------------------------------------------------------- /src/components/canrawview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/canrawview/canrawview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/canrawview.cpp -------------------------------------------------------------------------------- /src/components/canrawview/canrawview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/canrawview.h -------------------------------------------------------------------------------- /src/components/canrawview/canrawview_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/canrawview_p.h -------------------------------------------------------------------------------- /src/components/canrawview/canrawviewmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/canrawviewmodel.cpp -------------------------------------------------------------------------------- /src/components/canrawview/canrawviewmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/canrawviewmodel.h -------------------------------------------------------------------------------- /src/components/canrawview/canrawviewplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/canrawviewplugin.h -------------------------------------------------------------------------------- /src/components/canrawview/gui/canrawview.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/gui/canrawview.ui -------------------------------------------------------------------------------- /src/components/canrawview/gui/crvgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/gui/crvgui.h -------------------------------------------------------------------------------- /src/components/canrawview/gui/crvguiinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/gui/crvguiinterface.h -------------------------------------------------------------------------------- /src/components/canrawview/tests/canrawview_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/tests/canrawview_test.cpp -------------------------------------------------------------------------------- /src/components/canrawview/tests/canrawviewmodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/tests/canrawviewmodel_test.cpp -------------------------------------------------------------------------------- /src/components/canrawview/tests/configfiles/canrawviewconfig.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/tests/configfiles/canrawviewconfig.cds -------------------------------------------------------------------------------- /src/components/canrawview/tests/configfiles/canrawviewconfig_columnluck.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/tests/configfiles/canrawviewconfig_columnluck.cds -------------------------------------------------------------------------------- /src/components/canrawview/tests/configfiles/canrawviewconfig_sortingformat.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/tests/configfiles/canrawviewconfig_sortingformat.cds -------------------------------------------------------------------------------- /src/components/canrawview/tests/configfiles/canrawviewconfig_visualindexproblem.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/tests/configfiles/canrawviewconfig_visualindexproblem.cds -------------------------------------------------------------------------------- /src/components/canrawview/tests/configfiles/canrawviewconfig_widthproblem.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/canrawview/tests/configfiles/canrawviewconfig_widthproblem.cds -------------------------------------------------------------------------------- /src/components/cansignaldata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/cansignaldata/cansignaldata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/cansignaldata.cpp -------------------------------------------------------------------------------- /src/components/cansignaldata/cansignaldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/cansignaldata.h -------------------------------------------------------------------------------- /src/components/cansignaldata/cansignaldata_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/cansignaldata_p.cpp -------------------------------------------------------------------------------- /src/components/cansignaldata/cansignaldata_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/cansignaldata_p.h -------------------------------------------------------------------------------- /src/components/cansignaldata/cansignaldatamodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/cansignaldatamodel.cpp -------------------------------------------------------------------------------- /src/components/cansignaldata/cansignaldatamodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/cansignaldatamodel.h -------------------------------------------------------------------------------- /src/components/cansignaldata/cansignaldataplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/cansignaldataplugin.h -------------------------------------------------------------------------------- /src/components/cansignaldata/gui/cansignaldata.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/gui/cansignaldata.ui -------------------------------------------------------------------------------- /src/components/cansignaldata/gui/cansignaldataguiimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/gui/cansignaldataguiimpl.h -------------------------------------------------------------------------------- /src/components/cansignaldata/gui/cansignaldataguiint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/gui/cansignaldataguiint.h -------------------------------------------------------------------------------- /src/components/cansignaldata/searchmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/searchmodel.cpp -------------------------------------------------------------------------------- /src/components/cansignaldata/searchmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/searchmodel.h -------------------------------------------------------------------------------- /src/components/cansignaldata/tests/cansignaldata_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/tests/cansignaldata_test.cpp -------------------------------------------------------------------------------- /src/components/cansignaldata/tests/cansignaldatamodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/tests/cansignaldatamodel_test.cpp -------------------------------------------------------------------------------- /src/components/cansignaldata/tests/dbc/project.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/tests/dbc/project.cds -------------------------------------------------------------------------------- /src/components/cansignaldata/tests/dbc/tesla_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldata/tests/dbc/tesla_can.dbc -------------------------------------------------------------------------------- /src/components/cansignaldecoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldecoder/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/cansignaldecoder/cansignaldecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldecoder/cansignaldecoder.cpp -------------------------------------------------------------------------------- /src/components/cansignaldecoder/cansignaldecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldecoder/cansignaldecoder.h -------------------------------------------------------------------------------- /src/components/cansignaldecoder/cansignaldecoder_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldecoder/cansignaldecoder_p.cpp -------------------------------------------------------------------------------- /src/components/cansignaldecoder/cansignaldecoder_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldecoder/cansignaldecoder_p.h -------------------------------------------------------------------------------- /src/components/cansignaldecoder/cansignaldecodermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldecoder/cansignaldecodermodel.cpp -------------------------------------------------------------------------------- /src/components/cansignaldecoder/cansignaldecodermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldecoder/cansignaldecodermodel.h -------------------------------------------------------------------------------- /src/components/cansignaldecoder/cansignaldecoderplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldecoder/cansignaldecoderplugin.h -------------------------------------------------------------------------------- /src/components/cansignaldecoder/tests/cansignaldecoder_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldecoder/tests/cansignaldecoder_test.cpp -------------------------------------------------------------------------------- /src/components/cansignaldecoder/tests/cansignaldecodermodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldecoder/tests/cansignaldecodermodel_test.cpp -------------------------------------------------------------------------------- /src/components/cansignaldecoder/tests/dbc/tesla_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignaldecoder/tests/dbc/tesla_can.dbc -------------------------------------------------------------------------------- /src/components/cansignalencoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalencoder/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/cansignalencoder/cansignalencoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalencoder/cansignalencoder.cpp -------------------------------------------------------------------------------- /src/components/cansignalencoder/cansignalencoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalencoder/cansignalencoder.h -------------------------------------------------------------------------------- /src/components/cansignalencoder/cansignalencoder_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalencoder/cansignalencoder_p.cpp -------------------------------------------------------------------------------- /src/components/cansignalencoder/cansignalencoder_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalencoder/cansignalencoder_p.h -------------------------------------------------------------------------------- /src/components/cansignalencoder/cansignalencodermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalencoder/cansignalencodermodel.cpp -------------------------------------------------------------------------------- /src/components/cansignalencoder/cansignalencodermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalencoder/cansignalencodermodel.h -------------------------------------------------------------------------------- /src/components/cansignalencoder/cansignalencoderplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalencoder/cansignalencoderplugin.h -------------------------------------------------------------------------------- /src/components/cansignalencoder/tests/cansignalencoder_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalencoder/tests/cansignalencoder_test.cpp -------------------------------------------------------------------------------- /src/components/cansignalencoder/tests/cansignalencodermodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalencoder/tests/cansignalencodermodel_test.cpp -------------------------------------------------------------------------------- /src/components/cansignalencoder/tests/dbc/tesla_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalencoder/tests/dbc/tesla_can.dbc -------------------------------------------------------------------------------- /src/components/cansignalsender/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/cansignalsender/cansignalsender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/cansignalsender.cpp -------------------------------------------------------------------------------- /src/components/cansignalsender/cansignalsender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/cansignalsender.h -------------------------------------------------------------------------------- /src/components/cansignalsender/cansignalsender_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/cansignalsender_p.cpp -------------------------------------------------------------------------------- /src/components/cansignalsender/cansignalsender_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/cansignalsender_p.h -------------------------------------------------------------------------------- /src/components/cansignalsender/cansignalsendermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/cansignalsendermodel.cpp -------------------------------------------------------------------------------- /src/components/cansignalsender/cansignalsendermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/cansignalsendermodel.h -------------------------------------------------------------------------------- /src/components/cansignalsender/cansignalsenderplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/cansignalsenderplugin.h -------------------------------------------------------------------------------- /src/components/cansignalsender/cansignalsendertablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/cansignalsendertablemodel.cpp -------------------------------------------------------------------------------- /src/components/cansignalsender/cansignalsendertablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/cansignalsendertablemodel.h -------------------------------------------------------------------------------- /src/components/cansignalsender/gui/cansignalsender.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/gui/cansignalsender.ui -------------------------------------------------------------------------------- /src/components/cansignalsender/gui/cansignalsenderguiimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/gui/cansignalsenderguiimpl.h -------------------------------------------------------------------------------- /src/components/cansignalsender/gui/cansignalsenderguiint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/gui/cansignalsenderguiint.h -------------------------------------------------------------------------------- /src/components/cansignalsender/tests/cansignalsender_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/tests/cansignalsender_test.cpp -------------------------------------------------------------------------------- /src/components/cansignalsender/tests/cansignalsendermodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalsender/tests/cansignalsendermodel_test.cpp -------------------------------------------------------------------------------- /src/components/cansignalviewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/cansignalviewer/cansignalviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/cansignalviewer.cpp -------------------------------------------------------------------------------- /src/components/cansignalviewer/cansignalviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/cansignalviewer.h -------------------------------------------------------------------------------- /src/components/cansignalviewer/cansignalviewer_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/cansignalviewer_p.cpp -------------------------------------------------------------------------------- /src/components/cansignalviewer/cansignalviewer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/cansignalviewer_p.h -------------------------------------------------------------------------------- /src/components/cansignalviewer/cansignalviewermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/cansignalviewermodel.cpp -------------------------------------------------------------------------------- /src/components/cansignalviewer/cansignalviewermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/cansignalviewermodel.h -------------------------------------------------------------------------------- /src/components/cansignalviewer/cansignalviewerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/cansignalviewerplugin.h -------------------------------------------------------------------------------- /src/components/cansignalviewer/gui/cansignalviewer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/gui/cansignalviewer.ui -------------------------------------------------------------------------------- /src/components/cansignalviewer/gui/cansignalviewerguiimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/gui/cansignalviewerguiimpl.h -------------------------------------------------------------------------------- /src/components/cansignalviewer/gui/cansignalviewerguiint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/gui/cansignalviewerguiint.h -------------------------------------------------------------------------------- /src/components/cansignalviewer/tests/cansignalviewer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/tests/cansignalviewer_test.cpp -------------------------------------------------------------------------------- /src/components/cansignalviewer/tests/cansignalviewermodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/cansignalviewer/tests/cansignalviewermodel_test.cpp -------------------------------------------------------------------------------- /src/components/qmlexecutor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/CMakeLists.txt -------------------------------------------------------------------------------- /src/components/qmlexecutor/canbusmodel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/canbusmodel.hpp -------------------------------------------------------------------------------- /src/components/qmlexecutor/examples/sample.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/examples/sample.qml -------------------------------------------------------------------------------- /src/components/qmlexecutor/examples/simple_forwarder.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/examples/simple_forwarder.qml -------------------------------------------------------------------------------- /src/components/qmlexecutor/examples/simple_timer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/examples/simple_timer.qml -------------------------------------------------------------------------------- /src/components/qmlexecutor/gui/qmlexecutor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/gui/qmlexecutor.ui -------------------------------------------------------------------------------- /src/components/qmlexecutor/gui/qmlexecutorguiimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/gui/qmlexecutorguiimpl.h -------------------------------------------------------------------------------- /src/components/qmlexecutor/gui/qmlexecutorguiint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/gui/qmlexecutorguiint.h -------------------------------------------------------------------------------- /src/components/qmlexecutor/qmlexecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/qmlexecutor.cpp -------------------------------------------------------------------------------- /src/components/qmlexecutor/qmlexecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/qmlexecutor.h -------------------------------------------------------------------------------- /src/components/qmlexecutor/qmlexecutor_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/qmlexecutor_p.cpp -------------------------------------------------------------------------------- /src/components/qmlexecutor/qmlexecutor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/qmlexecutor_p.h -------------------------------------------------------------------------------- /src/components/qmlexecutor/qmlexecutormodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/qmlexecutormodel.cpp -------------------------------------------------------------------------------- /src/components/qmlexecutor/qmlexecutormodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/qmlexecutormodel.h -------------------------------------------------------------------------------- /src/components/qmlexecutor/qmlexecutorplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/qmlexecutorplugin.h -------------------------------------------------------------------------------- /src/components/qmlexecutor/tests/guimock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/tests/guimock.h -------------------------------------------------------------------------------- /src/components/qmlexecutor/tests/qmlexecutor_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/tests/qmlexecutor_test.cpp -------------------------------------------------------------------------------- /src/components/qmlexecutor/tests/qmlexecutormodel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/components/qmlexecutor/tests/qmlexecutormodel_test.cpp -------------------------------------------------------------------------------- /src/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/aboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/aboutdialog.ui -------------------------------------------------------------------------------- /src/gui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/main.cpp -------------------------------------------------------------------------------- /src/gui/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/mainwindow.cpp -------------------------------------------------------------------------------- /src/gui/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/mainwindow.h -------------------------------------------------------------------------------- /src/gui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/mainwindow.ui -------------------------------------------------------------------------------- /src/gui/projectconfig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/projectconfig/dragwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/dragwidget.cpp -------------------------------------------------------------------------------- /src/gui/projectconfig/dragwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/dragwidget.h -------------------------------------------------------------------------------- /src/gui/projectconfig/flowviewwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/flowviewwrapper.cpp -------------------------------------------------------------------------------- /src/gui/projectconfig/flowviewwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/flowviewwrapper.h -------------------------------------------------------------------------------- /src/gui/projectconfig/iconlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/iconlabel.h -------------------------------------------------------------------------------- /src/gui/projectconfig/modeltoolbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/modeltoolbutton.h -------------------------------------------------------------------------------- /src/gui/projectconfig/pcimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/pcimpl.h -------------------------------------------------------------------------------- /src/gui/projectconfig/pcinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/pcinterface.h -------------------------------------------------------------------------------- /src/gui/projectconfig/projectconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/projectconfig.cpp -------------------------------------------------------------------------------- /src/gui/projectconfig/projectconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/projectconfig.h -------------------------------------------------------------------------------- /src/gui/projectconfig/projectconfig.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/projectconfig.ui -------------------------------------------------------------------------------- /src/gui/projectconfig/projectconfig_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/projectconfig_p.h -------------------------------------------------------------------------------- /src/gui/projectconfig/projectconfigvalidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/projectconfigvalidator.cpp -------------------------------------------------------------------------------- /src/gui/projectconfig/projectconfigvalidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/projectconfigvalidator.h -------------------------------------------------------------------------------- /src/gui/projectconfig/propertyeditordialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/propertyeditordialog.cpp -------------------------------------------------------------------------------- /src/gui/projectconfig/propertyeditordialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/propertyeditordialog.h -------------------------------------------------------------------------------- /src/gui/projectconfig/propertyeditordialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/propertyeditordialog.ui -------------------------------------------------------------------------------- /src/gui/projectconfig/tests/configfiles/projectconfig.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/tests/configfiles/projectconfig.cds -------------------------------------------------------------------------------- /src/gui/projectconfig/tests/configfiles/projectconfig_wrong.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/tests/configfiles/projectconfig_wrong.cds -------------------------------------------------------------------------------- /src/gui/projectconfig/tests/projectconfig.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/tests/projectconfig.ui -------------------------------------------------------------------------------- /src/gui/projectconfig/tests/projectconfig_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/tests/projectconfig_test.cpp -------------------------------------------------------------------------------- /src/gui/projectconfig/tests/projectconfig_test_noqrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/projectconfig/tests/projectconfig_test_noqrc.cpp -------------------------------------------------------------------------------- /src/gui/subwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/subwindow.h -------------------------------------------------------------------------------- /src/gui/toolbar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/src/gui/toolbar.ui -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(templategen) 2 | -------------------------------------------------------------------------------- /tools/templategen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/tools/templategen/CMakeLists.txt -------------------------------------------------------------------------------- /tools/templategen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GENIVI/CANdevStudio/HEAD/tools/templategen/main.cpp --------------------------------------------------------------------------------