├── .flatpak-manifest.json ├── .flatpak-manifest.json.license ├── .gitignore ├── .gitlab-ci.yml ├── .kde-ci.yml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSES ├── BSD-2-Clause.txt ├── BSD-3-Clause.txt ├── CC-BY-SA-4.0.txt ├── CC0-1.0.txt ├── GPL-3.0-only.txt ├── LGPL-2.1-only.txt ├── LGPL-3.0-only.txt ├── LicenseRef-KDE-Accepted-GPL.txt ├── LicenseRef-KDE-Accepted-LGPL.txt └── MIT.txt ├── Messages.sh ├── README.md ├── doc ├── CMakeLists.txt ├── Doxyfile.in ├── atcore.png ├── atcore.png.license ├── build.md └── mainpage.md ├── poqm ├── ar │ └── atcore_qt.po ├── ca │ └── atcore_qt.po ├── ca@valencia │ └── atcore_qt.po ├── cs │ └── atcore_qt.po ├── da │ └── atcore_qt.po ├── de │ └── atcore_qt.po ├── el │ └── atcore_qt.po ├── en_GB │ └── atcore_qt.po ├── eo │ └── atcore_qt.po ├── es │ └── atcore_qt.po ├── et │ └── atcore_qt.po ├── eu │ └── atcore_qt.po ├── fi │ └── atcore_qt.po ├── fr │ └── atcore_qt.po ├── gl │ └── atcore_qt.po ├── he │ └── atcore_qt.po ├── ia │ └── atcore_qt.po ├── it │ └── atcore_qt.po ├── ja │ └── atcore_qt.po ├── ka │ └── atcore_qt.po ├── ko │ └── atcore_qt.po ├── lt │ └── atcore_qt.po ├── nl │ └── atcore_qt.po ├── nn │ └── atcore_qt.po ├── pl │ └── atcore_qt.po ├── pt │ └── atcore_qt.po ├── pt_BR │ └── atcore_qt.po ├── ru │ └── atcore_qt.po ├── sk │ └── atcore_qt.po ├── sl │ └── atcore_qt.po ├── sv │ └── atcore_qt.po ├── tr │ └── atcore_qt.po ├── uk │ └── atcore_qt.po ├── zh_CN │ └── atcore_qt.po └── zh_TW │ └── atcore_qt.po ├── scripts ├── README.md ├── fakeprinter.py └── socat.sh ├── src ├── CMakeLists.txt ├── core │ ├── AtCoreConfig.cmake.in │ ├── CMakeLists.txt │ ├── atcore.cpp │ ├── atcore.h │ ├── atcore_default_folders.h.in │ ├── beddeform.cpp │ ├── beddeform.h │ ├── gcodecommands.cpp │ ├── gcodecommands.h │ ├── ifirmware.cpp │ ├── ifirmware.h │ ├── machineinfo.cpp │ ├── machineinfo.h │ ├── printthread.cpp │ ├── printthread.h │ ├── seriallayer.cpp │ ├── seriallayer.h │ ├── temperature.cpp │ └── temperature.h ├── imports │ ├── CMakeLists.txt │ ├── atcoreextensionplugin.cpp │ ├── atcoreextensionplugin.h │ └── qmldir ├── plugins │ ├── CMakeLists.txt │ ├── aprinterplugin.cpp │ ├── aprinterplugin.h │ ├── grblplugin.cpp │ ├── grblplugin.h │ ├── marlinplugin.cpp │ ├── marlinplugin.h │ ├── repetierplugin.cpp │ ├── repetierplugin.h │ ├── smoothieplugin.cpp │ ├── smoothieplugin.h │ ├── sprinterplugin.cpp │ ├── sprinterplugin.h │ ├── teacupplugin.cpp │ └── teacupplugin.h └── widgets │ ├── AtCoreWidgetsConfig.cmake.in │ ├── CMakeLists.txt │ ├── about.cpp │ ├── about.h │ ├── axiscontrol.cpp │ ├── axiscontrol.h │ ├── commandwidget.cpp │ ├── commandwidget.h │ ├── logwidget.cpp │ ├── logwidget.h │ ├── movementwidget.cpp │ ├── movementwidget.h │ ├── plotwidget.cpp │ ├── plotwidget.h │ ├── printwidget.cpp │ ├── printwidget.h │ ├── profilemanager.cpp │ ├── profilemanager.h │ ├── sdwidget.cpp │ ├── sdwidget.h │ ├── statuswidget.cpp │ ├── statuswidget.h │ ├── temperaturewidget.cpp │ └── temperaturewidget.h ├── testclient ├── CMakeLists.txt ├── atcore-gui.icns ├── atcore-gui.icns.license ├── atcore-gui.png ├── atcore-gui.png.license ├── icons.qrc ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── org.kde.atcore.appdata.xml └── org.kde.atcore.desktop └── unittests ├── CMakeLists.txt ├── atcoretests.cpp ├── atcoretests.h ├── beddeformtests.cpp ├── beddeformtests.h ├── gcodetests.cpp ├── gcodetests.h ├── temperaturetests.cpp └── temperaturetests.h /.flatpak-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/.flatpak-manifest.json -------------------------------------------------------------------------------- /.flatpak-manifest.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/.flatpak-manifest.json.license -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.kde-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/.kde-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSES/BSD-2-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/LICENSES/BSD-2-Clause.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/LICENSES/CC-BY-SA-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/LICENSES/LGPL-2.1-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/LICENSES/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-KDE-Accepted-GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/LICENSES/LicenseRef-KDE-Accepted-GPL.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-KDE-Accepted-LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /Messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/Messages.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/README.md -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/atcore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/doc/atcore.png -------------------------------------------------------------------------------- /doc/atcore.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: AtCore Authors 2 | SPDX-License-Identifier: CC-BY-SA-4.0 3 | 4 | -------------------------------------------------------------------------------- /doc/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/doc/build.md -------------------------------------------------------------------------------- /doc/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/doc/mainpage.md -------------------------------------------------------------------------------- /poqm/ar/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/ar/atcore_qt.po -------------------------------------------------------------------------------- /poqm/ca/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/ca/atcore_qt.po -------------------------------------------------------------------------------- /poqm/ca@valencia/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/ca@valencia/atcore_qt.po -------------------------------------------------------------------------------- /poqm/cs/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/cs/atcore_qt.po -------------------------------------------------------------------------------- /poqm/da/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/da/atcore_qt.po -------------------------------------------------------------------------------- /poqm/de/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/de/atcore_qt.po -------------------------------------------------------------------------------- /poqm/el/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/el/atcore_qt.po -------------------------------------------------------------------------------- /poqm/en_GB/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/en_GB/atcore_qt.po -------------------------------------------------------------------------------- /poqm/eo/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/eo/atcore_qt.po -------------------------------------------------------------------------------- /poqm/es/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/es/atcore_qt.po -------------------------------------------------------------------------------- /poqm/et/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/et/atcore_qt.po -------------------------------------------------------------------------------- /poqm/eu/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/eu/atcore_qt.po -------------------------------------------------------------------------------- /poqm/fi/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/fi/atcore_qt.po -------------------------------------------------------------------------------- /poqm/fr/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/fr/atcore_qt.po -------------------------------------------------------------------------------- /poqm/gl/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/gl/atcore_qt.po -------------------------------------------------------------------------------- /poqm/he/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/he/atcore_qt.po -------------------------------------------------------------------------------- /poqm/ia/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/ia/atcore_qt.po -------------------------------------------------------------------------------- /poqm/it/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/it/atcore_qt.po -------------------------------------------------------------------------------- /poqm/ja/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/ja/atcore_qt.po -------------------------------------------------------------------------------- /poqm/ka/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/ka/atcore_qt.po -------------------------------------------------------------------------------- /poqm/ko/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/ko/atcore_qt.po -------------------------------------------------------------------------------- /poqm/lt/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/lt/atcore_qt.po -------------------------------------------------------------------------------- /poqm/nl/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/nl/atcore_qt.po -------------------------------------------------------------------------------- /poqm/nn/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/nn/atcore_qt.po -------------------------------------------------------------------------------- /poqm/pl/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/pl/atcore_qt.po -------------------------------------------------------------------------------- /poqm/pt/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/pt/atcore_qt.po -------------------------------------------------------------------------------- /poqm/pt_BR/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/pt_BR/atcore_qt.po -------------------------------------------------------------------------------- /poqm/ru/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/ru/atcore_qt.po -------------------------------------------------------------------------------- /poqm/sk/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/sk/atcore_qt.po -------------------------------------------------------------------------------- /poqm/sl/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/sl/atcore_qt.po -------------------------------------------------------------------------------- /poqm/sv/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/sv/atcore_qt.po -------------------------------------------------------------------------------- /poqm/tr/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/tr/atcore_qt.po -------------------------------------------------------------------------------- /poqm/uk/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/uk/atcore_qt.po -------------------------------------------------------------------------------- /poqm/zh_CN/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/zh_CN/atcore_qt.po -------------------------------------------------------------------------------- /poqm/zh_TW/atcore_qt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/poqm/zh_TW/atcore_qt.po -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/fakeprinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/scripts/fakeprinter.py -------------------------------------------------------------------------------- /scripts/socat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/scripts/socat.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/AtCoreConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/AtCoreConfig.cmake.in -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/atcore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/atcore.cpp -------------------------------------------------------------------------------- /src/core/atcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/atcore.h -------------------------------------------------------------------------------- /src/core/atcore_default_folders.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/atcore_default_folders.h.in -------------------------------------------------------------------------------- /src/core/beddeform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/beddeform.cpp -------------------------------------------------------------------------------- /src/core/beddeform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/beddeform.h -------------------------------------------------------------------------------- /src/core/gcodecommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/gcodecommands.cpp -------------------------------------------------------------------------------- /src/core/gcodecommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/gcodecommands.h -------------------------------------------------------------------------------- /src/core/ifirmware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/ifirmware.cpp -------------------------------------------------------------------------------- /src/core/ifirmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/ifirmware.h -------------------------------------------------------------------------------- /src/core/machineinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/machineinfo.cpp -------------------------------------------------------------------------------- /src/core/machineinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/machineinfo.h -------------------------------------------------------------------------------- /src/core/printthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/printthread.cpp -------------------------------------------------------------------------------- /src/core/printthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/printthread.h -------------------------------------------------------------------------------- /src/core/seriallayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/seriallayer.cpp -------------------------------------------------------------------------------- /src/core/seriallayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/seriallayer.h -------------------------------------------------------------------------------- /src/core/temperature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/temperature.cpp -------------------------------------------------------------------------------- /src/core/temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/core/temperature.h -------------------------------------------------------------------------------- /src/imports/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/imports/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/atcoreextensionplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/imports/atcoreextensionplugin.cpp -------------------------------------------------------------------------------- /src/imports/atcoreextensionplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/imports/atcoreextensionplugin.h -------------------------------------------------------------------------------- /src/imports/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/imports/qmldir -------------------------------------------------------------------------------- /src/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/aprinterplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/aprinterplugin.cpp -------------------------------------------------------------------------------- /src/plugins/aprinterplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/aprinterplugin.h -------------------------------------------------------------------------------- /src/plugins/grblplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/grblplugin.cpp -------------------------------------------------------------------------------- /src/plugins/grblplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/grblplugin.h -------------------------------------------------------------------------------- /src/plugins/marlinplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/marlinplugin.cpp -------------------------------------------------------------------------------- /src/plugins/marlinplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/marlinplugin.h -------------------------------------------------------------------------------- /src/plugins/repetierplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/repetierplugin.cpp -------------------------------------------------------------------------------- /src/plugins/repetierplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/repetierplugin.h -------------------------------------------------------------------------------- /src/plugins/smoothieplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/smoothieplugin.cpp -------------------------------------------------------------------------------- /src/plugins/smoothieplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/smoothieplugin.h -------------------------------------------------------------------------------- /src/plugins/sprinterplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/sprinterplugin.cpp -------------------------------------------------------------------------------- /src/plugins/sprinterplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/sprinterplugin.h -------------------------------------------------------------------------------- /src/plugins/teacupplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/teacupplugin.cpp -------------------------------------------------------------------------------- /src/plugins/teacupplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/plugins/teacupplugin.h -------------------------------------------------------------------------------- /src/widgets/AtCoreWidgetsConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/AtCoreWidgetsConfig.cmake.in -------------------------------------------------------------------------------- /src/widgets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/CMakeLists.txt -------------------------------------------------------------------------------- /src/widgets/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/about.cpp -------------------------------------------------------------------------------- /src/widgets/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/about.h -------------------------------------------------------------------------------- /src/widgets/axiscontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/axiscontrol.cpp -------------------------------------------------------------------------------- /src/widgets/axiscontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/axiscontrol.h -------------------------------------------------------------------------------- /src/widgets/commandwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/commandwidget.cpp -------------------------------------------------------------------------------- /src/widgets/commandwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/commandwidget.h -------------------------------------------------------------------------------- /src/widgets/logwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/logwidget.cpp -------------------------------------------------------------------------------- /src/widgets/logwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/logwidget.h -------------------------------------------------------------------------------- /src/widgets/movementwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/movementwidget.cpp -------------------------------------------------------------------------------- /src/widgets/movementwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/movementwidget.h -------------------------------------------------------------------------------- /src/widgets/plotwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/plotwidget.cpp -------------------------------------------------------------------------------- /src/widgets/plotwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/plotwidget.h -------------------------------------------------------------------------------- /src/widgets/printwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/printwidget.cpp -------------------------------------------------------------------------------- /src/widgets/printwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/printwidget.h -------------------------------------------------------------------------------- /src/widgets/profilemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/profilemanager.cpp -------------------------------------------------------------------------------- /src/widgets/profilemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/profilemanager.h -------------------------------------------------------------------------------- /src/widgets/sdwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/sdwidget.cpp -------------------------------------------------------------------------------- /src/widgets/sdwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/sdwidget.h -------------------------------------------------------------------------------- /src/widgets/statuswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/statuswidget.cpp -------------------------------------------------------------------------------- /src/widgets/statuswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/statuswidget.h -------------------------------------------------------------------------------- /src/widgets/temperaturewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/temperaturewidget.cpp -------------------------------------------------------------------------------- /src/widgets/temperaturewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/src/widgets/temperaturewidget.h -------------------------------------------------------------------------------- /testclient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/testclient/CMakeLists.txt -------------------------------------------------------------------------------- /testclient/atcore-gui.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/testclient/atcore-gui.icns -------------------------------------------------------------------------------- /testclient/atcore-gui.icns.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: AtCore Authors 2 | SPDX-License-Identifier: CC-BY-SA-4.0 3 | -------------------------------------------------------------------------------- /testclient/atcore-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/testclient/atcore-gui.png -------------------------------------------------------------------------------- /testclient/atcore-gui.png.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: AtCore Authors 2 | SPDX-License-Identifier: CC-BY-SA-4.0 3 | -------------------------------------------------------------------------------- /testclient/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/testclient/icons.qrc -------------------------------------------------------------------------------- /testclient/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/testclient/main.cpp -------------------------------------------------------------------------------- /testclient/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/testclient/mainwindow.cpp -------------------------------------------------------------------------------- /testclient/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/testclient/mainwindow.h -------------------------------------------------------------------------------- /testclient/org.kde.atcore.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/testclient/org.kde.atcore.appdata.xml -------------------------------------------------------------------------------- /testclient/org.kde.atcore.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/testclient/org.kde.atcore.desktop -------------------------------------------------------------------------------- /unittests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/unittests/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/atcoretests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/unittests/atcoretests.cpp -------------------------------------------------------------------------------- /unittests/atcoretests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/unittests/atcoretests.h -------------------------------------------------------------------------------- /unittests/beddeformtests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/unittests/beddeformtests.cpp -------------------------------------------------------------------------------- /unittests/beddeformtests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/unittests/beddeformtests.h -------------------------------------------------------------------------------- /unittests/gcodetests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/unittests/gcodetests.cpp -------------------------------------------------------------------------------- /unittests/gcodetests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/unittests/gcodetests.h -------------------------------------------------------------------------------- /unittests/temperaturetests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/unittests/temperaturetests.cpp -------------------------------------------------------------------------------- /unittests/temperaturetests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/atcore/HEAD/unittests/temperaturetests.h --------------------------------------------------------------------------------