├── .gitignore ├── LICENSE ├── README.md ├── background.png ├── button.png ├── icon.jpg ├── korg-nanokontrol-linux-screenshot.png ├── korg-nanokontrol-linux.pro ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── potar.png ├── resources.qrc └── slider.png /.gitignore: -------------------------------------------------------------------------------- 1 | /korg-nanokontrol-linux.pro.user 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/README.md -------------------------------------------------------------------------------- /background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/background.png -------------------------------------------------------------------------------- /button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/button.png -------------------------------------------------------------------------------- /icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/icon.jpg -------------------------------------------------------------------------------- /korg-nanokontrol-linux-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/korg-nanokontrol-linux-screenshot.png -------------------------------------------------------------------------------- /korg-nanokontrol-linux.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/korg-nanokontrol-linux.pro -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /potar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/potar.png -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/resources.qrc -------------------------------------------------------------------------------- /slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cepr/korg-nanokontrol-linux/HEAD/slider.png --------------------------------------------------------------------------------