├── .github └── workflows │ └── build-linux.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── EASSynth.pro ├── LICENSE ├── README.md ├── cmdlnsynth ├── CMakeLists.txt ├── cmdlnsynth.pro └── main.cpp ├── global.pri ├── guisynth ├── CMakeLists.txt ├── guisynth.desktop ├── guisynth.pro ├── guisynth.qrc ├── icon.png ├── icon.svg ├── icon256.png ├── icon512.png ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── open.png ├── play.png └── stop.png ├── libsvoxeas ├── CMakeLists.txt ├── filewrapper.cpp ├── filewrapper.h ├── libsvoxeas.pro ├── programsettings.cpp ├── programsettings.h ├── synthcontroller.cpp ├── synthcontroller.h ├── synthrenderer.cpp └── synthrenderer.h └── screenshot.png /.github/workflows/build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/.github/workflows/build-linux.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /EASSynth.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/EASSynth.pro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/README.md -------------------------------------------------------------------------------- /cmdlnsynth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/cmdlnsynth/CMakeLists.txt -------------------------------------------------------------------------------- /cmdlnsynth/cmdlnsynth.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/cmdlnsynth/cmdlnsynth.pro -------------------------------------------------------------------------------- /cmdlnsynth/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/cmdlnsynth/main.cpp -------------------------------------------------------------------------------- /global.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/global.pri -------------------------------------------------------------------------------- /guisynth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/CMakeLists.txt -------------------------------------------------------------------------------- /guisynth/guisynth.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/guisynth.desktop -------------------------------------------------------------------------------- /guisynth/guisynth.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/guisynth.pro -------------------------------------------------------------------------------- /guisynth/guisynth.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/guisynth.qrc -------------------------------------------------------------------------------- /guisynth/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/icon.png -------------------------------------------------------------------------------- /guisynth/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/icon.svg -------------------------------------------------------------------------------- /guisynth/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/icon256.png -------------------------------------------------------------------------------- /guisynth/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/icon512.png -------------------------------------------------------------------------------- /guisynth/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/main.cpp -------------------------------------------------------------------------------- /guisynth/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/mainwindow.cpp -------------------------------------------------------------------------------- /guisynth/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/mainwindow.h -------------------------------------------------------------------------------- /guisynth/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/mainwindow.ui -------------------------------------------------------------------------------- /guisynth/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/open.png -------------------------------------------------------------------------------- /guisynth/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/play.png -------------------------------------------------------------------------------- /guisynth/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/guisynth/stop.png -------------------------------------------------------------------------------- /libsvoxeas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/libsvoxeas/CMakeLists.txt -------------------------------------------------------------------------------- /libsvoxeas/filewrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/libsvoxeas/filewrapper.cpp -------------------------------------------------------------------------------- /libsvoxeas/filewrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/libsvoxeas/filewrapper.h -------------------------------------------------------------------------------- /libsvoxeas/libsvoxeas.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/libsvoxeas/libsvoxeas.pro -------------------------------------------------------------------------------- /libsvoxeas/programsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/libsvoxeas/programsettings.cpp -------------------------------------------------------------------------------- /libsvoxeas/programsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/libsvoxeas/programsettings.h -------------------------------------------------------------------------------- /libsvoxeas/synthcontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/libsvoxeas/synthcontroller.cpp -------------------------------------------------------------------------------- /libsvoxeas/synthcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/libsvoxeas/synthcontroller.h -------------------------------------------------------------------------------- /libsvoxeas/synthrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/libsvoxeas/synthrenderer.cpp -------------------------------------------------------------------------------- /libsvoxeas/synthrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/libsvoxeas/synthrenderer.h -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedrolcl/Linux-SonivoxEas/HEAD/screenshot.png --------------------------------------------------------------------------------