├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── VERSION ├── dist ├── debian │ ├── control │ ├── copyright │ ├── deb-build.sh │ ├── docs │ ├── install │ ├── rules │ └── source │ │ └── format ├── macosx │ └── mupen64plus.icns ├── redhat │ ├── mupen64plus-qt.spec.in │ └── rpm-build.sh └── windows │ ├── icon.rc │ ├── mupen64plus-qt.pro │ └── mupen64plus.ico ├── resources ├── README.txt ├── demos │ ├── config-editor.jpg │ ├── grid-view-background.jpg │ ├── grid-view.jpg │ ├── input-editor.jpg │ ├── list-view.jpg │ ├── main.jpg │ └── table-view.jpg ├── images │ ├── controller.png │ ├── keyboard.png │ ├── mupen64plus-qt.png │ ├── mupen64plus.png │ └── not-found.png ├── locale │ ├── mupen64plus-qt_fr.qm │ ├── mupen64plus-qt_fr.ts │ ├── mupen64plus-qt_pt.qm │ ├── mupen64plus-qt_pt.ts │ ├── mupen64plus-qt_ru.qm │ └── mupen64plus-qt_ru.ts ├── mupen64plus-qt.6 ├── mupen64plus-qt.desktop ├── mupen64plusqt.qrc └── other │ ├── LICENSE │ └── VERSION └── src ├── common.cpp ├── common.h ├── dialogs ├── aboutdialog.cpp ├── aboutdialog.h ├── configeditor.cpp ├── configeditor.h ├── controlinfodialog.cpp ├── controlinfodialog.h ├── downloaddialog.cpp ├── downloaddialog.h ├── gamesettingsdialog.cpp ├── gamesettingsdialog.h ├── gamesettingsdialog.ui ├── inputeditordialog.cpp ├── inputeditordialog.h ├── inputeditordialog.ui ├── keycodesdialog.cpp ├── keycodesdialog.h ├── logdialog.cpp ├── logdialog.h ├── settingsdialog.cpp ├── settingsdialog.h └── settingsdialog.ui ├── emulation ├── emulatorhandler.cpp └── emulatorhandler.h ├── global.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── roms ├── romcollection.cpp ├── romcollection.h ├── thegamesdbscraper.cpp └── thegamesdbscraper.h └── views ├── gridview.cpp ├── gridview.h ├── listview.cpp ├── listview.h ├── tableview.cpp ├── tableview.h └── widgets ├── clickablewidget.cpp ├── clickablewidget.h ├── treewidgetitem.cpp └── treewidgetitem.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.user* 2 | build/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.17 2 | -------------------------------------------------------------------------------- /dist/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/dist/debian/control -------------------------------------------------------------------------------- /dist/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/dist/debian/copyright -------------------------------------------------------------------------------- /dist/debian/deb-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/dist/debian/deb-build.sh -------------------------------------------------------------------------------- /dist/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /dist/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/dist/debian/install -------------------------------------------------------------------------------- /dist/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | export DH_VERBOSE = 1 4 | 5 | %: 6 | dh $@ 7 | -------------------------------------------------------------------------------- /dist/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /dist/macosx/mupen64plus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/dist/macosx/mupen64plus.icns -------------------------------------------------------------------------------- /dist/redhat/mupen64plus-qt.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/dist/redhat/mupen64plus-qt.spec.in -------------------------------------------------------------------------------- /dist/redhat/rpm-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/dist/redhat/rpm-build.sh -------------------------------------------------------------------------------- /dist/windows/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/dist/windows/icon.rc -------------------------------------------------------------------------------- /dist/windows/mupen64plus-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/dist/windows/mupen64plus-qt.pro -------------------------------------------------------------------------------- /dist/windows/mupen64plus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/dist/windows/mupen64plus.ico -------------------------------------------------------------------------------- /resources/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/README.txt -------------------------------------------------------------------------------- /resources/demos/config-editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/demos/config-editor.jpg -------------------------------------------------------------------------------- /resources/demos/grid-view-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/demos/grid-view-background.jpg -------------------------------------------------------------------------------- /resources/demos/grid-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/demos/grid-view.jpg -------------------------------------------------------------------------------- /resources/demos/input-editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/demos/input-editor.jpg -------------------------------------------------------------------------------- /resources/demos/list-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/demos/list-view.jpg -------------------------------------------------------------------------------- /resources/demos/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/demos/main.jpg -------------------------------------------------------------------------------- /resources/demos/table-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/demos/table-view.jpg -------------------------------------------------------------------------------- /resources/images/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/images/controller.png -------------------------------------------------------------------------------- /resources/images/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/images/keyboard.png -------------------------------------------------------------------------------- /resources/images/mupen64plus-qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/images/mupen64plus-qt.png -------------------------------------------------------------------------------- /resources/images/mupen64plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/images/mupen64plus.png -------------------------------------------------------------------------------- /resources/images/not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/images/not-found.png -------------------------------------------------------------------------------- /resources/locale/mupen64plus-qt_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/locale/mupen64plus-qt_fr.qm -------------------------------------------------------------------------------- /resources/locale/mupen64plus-qt_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/locale/mupen64plus-qt_fr.ts -------------------------------------------------------------------------------- /resources/locale/mupen64plus-qt_pt.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/locale/mupen64plus-qt_pt.qm -------------------------------------------------------------------------------- /resources/locale/mupen64plus-qt_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/locale/mupen64plus-qt_pt.ts -------------------------------------------------------------------------------- /resources/locale/mupen64plus-qt_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/locale/mupen64plus-qt_ru.qm -------------------------------------------------------------------------------- /resources/locale/mupen64plus-qt_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/locale/mupen64plus-qt_ru.ts -------------------------------------------------------------------------------- /resources/mupen64plus-qt.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/mupen64plus-qt.6 -------------------------------------------------------------------------------- /resources/mupen64plus-qt.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/mupen64plus-qt.desktop -------------------------------------------------------------------------------- /resources/mupen64plusqt.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/mupen64plusqt.qrc -------------------------------------------------------------------------------- /resources/other/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/resources/other/LICENSE -------------------------------------------------------------------------------- /resources/other/VERSION: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/common.cpp -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/common.h -------------------------------------------------------------------------------- /src/dialogs/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/aboutdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/aboutdialog.h -------------------------------------------------------------------------------- /src/dialogs/configeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/configeditor.cpp -------------------------------------------------------------------------------- /src/dialogs/configeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/configeditor.h -------------------------------------------------------------------------------- /src/dialogs/controlinfodialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/controlinfodialog.cpp -------------------------------------------------------------------------------- /src/dialogs/controlinfodialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/controlinfodialog.h -------------------------------------------------------------------------------- /src/dialogs/downloaddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/downloaddialog.cpp -------------------------------------------------------------------------------- /src/dialogs/downloaddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/downloaddialog.h -------------------------------------------------------------------------------- /src/dialogs/gamesettingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/gamesettingsdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/gamesettingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/gamesettingsdialog.h -------------------------------------------------------------------------------- /src/dialogs/gamesettingsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/gamesettingsdialog.ui -------------------------------------------------------------------------------- /src/dialogs/inputeditordialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/inputeditordialog.cpp -------------------------------------------------------------------------------- /src/dialogs/inputeditordialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/inputeditordialog.h -------------------------------------------------------------------------------- /src/dialogs/inputeditordialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/inputeditordialog.ui -------------------------------------------------------------------------------- /src/dialogs/keycodesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/keycodesdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/keycodesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/keycodesdialog.h -------------------------------------------------------------------------------- /src/dialogs/logdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/logdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/logdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/logdialog.h -------------------------------------------------------------------------------- /src/dialogs/settingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/settingsdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/settingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/settingsdialog.h -------------------------------------------------------------------------------- /src/dialogs/settingsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/dialogs/settingsdialog.ui -------------------------------------------------------------------------------- /src/emulation/emulatorhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/emulation/emulatorhandler.cpp -------------------------------------------------------------------------------- /src/emulation/emulatorhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/emulation/emulatorhandler.h -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/global.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/roms/romcollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/roms/romcollection.cpp -------------------------------------------------------------------------------- /src/roms/romcollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/roms/romcollection.h -------------------------------------------------------------------------------- /src/roms/thegamesdbscraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/roms/thegamesdbscraper.cpp -------------------------------------------------------------------------------- /src/roms/thegamesdbscraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/roms/thegamesdbscraper.h -------------------------------------------------------------------------------- /src/views/gridview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/views/gridview.cpp -------------------------------------------------------------------------------- /src/views/gridview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/views/gridview.h -------------------------------------------------------------------------------- /src/views/listview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/views/listview.cpp -------------------------------------------------------------------------------- /src/views/listview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/views/listview.h -------------------------------------------------------------------------------- /src/views/tableview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/views/tableview.cpp -------------------------------------------------------------------------------- /src/views/tableview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/views/tableview.h -------------------------------------------------------------------------------- /src/views/widgets/clickablewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/views/widgets/clickablewidget.cpp -------------------------------------------------------------------------------- /src/views/widgets/clickablewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/views/widgets/clickablewidget.h -------------------------------------------------------------------------------- /src/views/widgets/treewidgetitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/views/widgets/treewidgetitem.cpp -------------------------------------------------------------------------------- /src/views/widgets/treewidgetitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dh4/mupen64plus-qt/HEAD/src/views/widgets/treewidgetitem.h --------------------------------------------------------------------------------