├── .clang-format ├── .github └── FUNDING.yml ├── .gitignore ├── .gitlab-ci.yml ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG ├── CMakeLists.txt ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cmake ├── doxygen.cmake ├── g_settings.cmake ├── git_version.cmake └── packaging.cmake ├── doxygen.conf ├── images ├── apps │ ├── command_prompt.png │ ├── default_app_file.png │ ├── excel_document.png │ ├── file_explorer.png │ ├── help_file.png │ ├── html_document.png │ ├── image_file.png │ ├── installer_file.png │ ├── internet_explorer.png │ ├── link_file.png │ ├── minesweeper.png │ ├── multimedia_file.png │ ├── notepad.png │ ├── oleview.png │ ├── other_file.png │ ├── pdf_file.png │ ├── powerpoint_document.png │ ├── regedit.png │ ├── task_manager.png │ ├── text_file.png │ ├── uninstaller.png │ ├── unknown_file.png │ ├── url.png │ ├── wine.png │ ├── winecfg.png │ ├── winecontrol.png │ ├── winefile.png │ ├── winetricks.png │ ├── word_document.png │ └── wordpad.png ├── logo.png ├── logo_big.png ├── not_ready.png ├── not_ready_org.png ├── ready.png ├── ready_org.png └── windows │ ├── windows10_32-bit.png │ ├── windows10_64-bit.png │ ├── windows11_32-bit.png │ ├── windows11_64-bit.png │ ├── windows2.0_32-bit.png │ ├── windows2000_32-bit.png │ ├── windows2003_32-bit.png │ ├── windows2003_64-bit.png │ ├── windows2008_32-bit.png │ ├── windows2008_64-bit.png │ ├── windows2008r2_32-bit.png │ ├── windows2008r2_64-bit.png │ ├── windows3.0_32-bit.png │ ├── windows3.1_32-bit.png │ ├── windows7_32-bit.png │ ├── windows7_64-bit.png │ ├── windows8.1_32-bit.png │ ├── windows8.1_64-bit.png │ ├── windows8_32-bit.png │ ├── windows8_64-bit.png │ ├── windows95_32-bit.png │ ├── windows98_32-bit.png │ ├── windowsme_32-bit.png │ ├── windowsnt3.51_32-bit.png │ ├── windowsnt4.0_32-bit.png │ ├── windowsvista_32-bit.png │ ├── windowsvista_64-bit.png │ ├── windowsxp_32-bit.png │ └── windowsxp_64-bit.png ├── include ├── about_dialog.h ├── add_app_window.h ├── app_list_model_column.h ├── app_list_struct.h ├── bottle_clone_window.h ├── bottle_config_file.h ├── bottle_configure_env_var_window.h ├── bottle_configure_window.h ├── bottle_edit_window.h ├── bottle_item.h ├── bottle_manager.h ├── bottle_new_assistant.h ├── bottle_types.h ├── busy_dialog.h ├── dll_override_types.h ├── general_config_file.h ├── general_config_struct.h ├── helper.h ├── main_window.h ├── menu.h ├── preferences_window.h ├── project_config.h.in ├── remove_app_window.h ├── signal_controller.h └── wine_defaults.h ├── misc ├── errorlist.xml ├── org_icons │ ├── finefile.ico │ ├── minesweeper.png │ ├── notepad.svg │ ├── oleview.png │ ├── regedit.svg │ ├── uninstaller.svg │ ├── wine.svg │ ├── winecfg.svg │ ├── winetricks.svg │ └── wordpad.svg ├── package_desc.txt ├── screenshots │ ├── winegui_screenshot0.png │ ├── winegui_screenshot1.png │ ├── winegui_screenshot2.png │ ├── winegui_screenshot3.png │ └── winegui_screenshot4.png ├── winegui.desktop ├── winegui.png ├── winegui.svg ├── winegui_big.png └── winegui_screenshots.gif ├── scripts ├── build.sh ├── build_debug.sh ├── build_docs.sh ├── build_prod.sh ├── check_format.sh ├── cpp_check.sh ├── create_latest_release_file.sh ├── create_release_links.sh ├── create_source_archive.sh ├── deps.sh ├── fix_format.sh ├── generate_gif.sh ├── valgrind.sh └── valgrind_plot.sh ├── src ├── about_dialog.cc ├── add_app_window.cc ├── bottle_clone_window.cc ├── bottle_config_file.cc ├── bottle_configure_env_var_window.cc ├── bottle_configure_window.cc ├── bottle_edit_window.cc ├── bottle_item.cc ├── bottle_manager.cc ├── bottle_new_assistant.cc ├── busy_dialog.cc ├── general_config_file.cc ├── helper.cc ├── main.cc ├── main_window.cc ├── menu.cc ├── preferences_window.cc ├── remove_app_window.cc ├── schema │ └── org.melroy.winegui.gschema.xml └── signal_controller.cc └── suppressions.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @melroy -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/README.md -------------------------------------------------------------------------------- /cmake/doxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/cmake/doxygen.cmake -------------------------------------------------------------------------------- /cmake/g_settings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/cmake/g_settings.cmake -------------------------------------------------------------------------------- /cmake/git_version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/cmake/git_version.cmake -------------------------------------------------------------------------------- /cmake/packaging.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/cmake/packaging.cmake -------------------------------------------------------------------------------- /doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/doxygen.conf -------------------------------------------------------------------------------- /images/apps/command_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/command_prompt.png -------------------------------------------------------------------------------- /images/apps/default_app_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/default_app_file.png -------------------------------------------------------------------------------- /images/apps/excel_document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/excel_document.png -------------------------------------------------------------------------------- /images/apps/file_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/file_explorer.png -------------------------------------------------------------------------------- /images/apps/help_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/help_file.png -------------------------------------------------------------------------------- /images/apps/html_document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/html_document.png -------------------------------------------------------------------------------- /images/apps/image_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/image_file.png -------------------------------------------------------------------------------- /images/apps/installer_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/installer_file.png -------------------------------------------------------------------------------- /images/apps/internet_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/internet_explorer.png -------------------------------------------------------------------------------- /images/apps/link_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/link_file.png -------------------------------------------------------------------------------- /images/apps/minesweeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/minesweeper.png -------------------------------------------------------------------------------- /images/apps/multimedia_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/multimedia_file.png -------------------------------------------------------------------------------- /images/apps/notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/notepad.png -------------------------------------------------------------------------------- /images/apps/oleview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/oleview.png -------------------------------------------------------------------------------- /images/apps/other_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/other_file.png -------------------------------------------------------------------------------- /images/apps/pdf_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/pdf_file.png -------------------------------------------------------------------------------- /images/apps/powerpoint_document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/powerpoint_document.png -------------------------------------------------------------------------------- /images/apps/regedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/regedit.png -------------------------------------------------------------------------------- /images/apps/task_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/task_manager.png -------------------------------------------------------------------------------- /images/apps/text_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/text_file.png -------------------------------------------------------------------------------- /images/apps/uninstaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/uninstaller.png -------------------------------------------------------------------------------- /images/apps/unknown_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/unknown_file.png -------------------------------------------------------------------------------- /images/apps/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/url.png -------------------------------------------------------------------------------- /images/apps/wine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/wine.png -------------------------------------------------------------------------------- /images/apps/winecfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/winecfg.png -------------------------------------------------------------------------------- /images/apps/winecontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/winecontrol.png -------------------------------------------------------------------------------- /images/apps/winefile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/winefile.png -------------------------------------------------------------------------------- /images/apps/winetricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/winetricks.png -------------------------------------------------------------------------------- /images/apps/word_document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/word_document.png -------------------------------------------------------------------------------- /images/apps/wordpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/apps/wordpad.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/logo_big.png -------------------------------------------------------------------------------- /images/not_ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/not_ready.png -------------------------------------------------------------------------------- /images/not_ready_org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/not_ready_org.png -------------------------------------------------------------------------------- /images/ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/ready.png -------------------------------------------------------------------------------- /images/ready_org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/ready_org.png -------------------------------------------------------------------------------- /images/windows/windows10_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows10_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows10_64-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows10_64-bit.png -------------------------------------------------------------------------------- /images/windows/windows11_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows11_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows11_64-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows11_64-bit.png -------------------------------------------------------------------------------- /images/windows/windows2.0_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows2.0_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows2000_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows2000_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows2003_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows2003_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows2003_64-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows2003_64-bit.png -------------------------------------------------------------------------------- /images/windows/windows2008_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows2008_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows2008_64-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows2008_64-bit.png -------------------------------------------------------------------------------- /images/windows/windows2008r2_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows2008r2_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows2008r2_64-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows2008r2_64-bit.png -------------------------------------------------------------------------------- /images/windows/windows3.0_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows3.0_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows3.1_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows3.1_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows7_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows7_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows7_64-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows7_64-bit.png -------------------------------------------------------------------------------- /images/windows/windows8.1_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows8.1_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows8.1_64-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows8.1_64-bit.png -------------------------------------------------------------------------------- /images/windows/windows8_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows8_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows8_64-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows8_64-bit.png -------------------------------------------------------------------------------- /images/windows/windows95_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows95_32-bit.png -------------------------------------------------------------------------------- /images/windows/windows98_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windows98_32-bit.png -------------------------------------------------------------------------------- /images/windows/windowsme_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windowsme_32-bit.png -------------------------------------------------------------------------------- /images/windows/windowsnt3.51_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windowsnt3.51_32-bit.png -------------------------------------------------------------------------------- /images/windows/windowsnt4.0_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windowsnt4.0_32-bit.png -------------------------------------------------------------------------------- /images/windows/windowsvista_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windowsvista_32-bit.png -------------------------------------------------------------------------------- /images/windows/windowsvista_64-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windowsvista_64-bit.png -------------------------------------------------------------------------------- /images/windows/windowsxp_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windowsxp_32-bit.png -------------------------------------------------------------------------------- /images/windows/windowsxp_64-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/images/windows/windowsxp_64-bit.png -------------------------------------------------------------------------------- /include/about_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/about_dialog.h -------------------------------------------------------------------------------- /include/add_app_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/add_app_window.h -------------------------------------------------------------------------------- /include/app_list_model_column.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/app_list_model_column.h -------------------------------------------------------------------------------- /include/app_list_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/app_list_struct.h -------------------------------------------------------------------------------- /include/bottle_clone_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/bottle_clone_window.h -------------------------------------------------------------------------------- /include/bottle_config_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/bottle_config_file.h -------------------------------------------------------------------------------- /include/bottle_configure_env_var_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/bottle_configure_env_var_window.h -------------------------------------------------------------------------------- /include/bottle_configure_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/bottle_configure_window.h -------------------------------------------------------------------------------- /include/bottle_edit_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/bottle_edit_window.h -------------------------------------------------------------------------------- /include/bottle_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/bottle_item.h -------------------------------------------------------------------------------- /include/bottle_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/bottle_manager.h -------------------------------------------------------------------------------- /include/bottle_new_assistant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/bottle_new_assistant.h -------------------------------------------------------------------------------- /include/bottle_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/bottle_types.h -------------------------------------------------------------------------------- /include/busy_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/busy_dialog.h -------------------------------------------------------------------------------- /include/dll_override_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/dll_override_types.h -------------------------------------------------------------------------------- /include/general_config_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/general_config_file.h -------------------------------------------------------------------------------- /include/general_config_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/general_config_struct.h -------------------------------------------------------------------------------- /include/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/helper.h -------------------------------------------------------------------------------- /include/main_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/main_window.h -------------------------------------------------------------------------------- /include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/menu.h -------------------------------------------------------------------------------- /include/preferences_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/preferences_window.h -------------------------------------------------------------------------------- /include/project_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/project_config.h.in -------------------------------------------------------------------------------- /include/remove_app_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/remove_app_window.h -------------------------------------------------------------------------------- /include/signal_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/signal_controller.h -------------------------------------------------------------------------------- /include/wine_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/include/wine_defaults.h -------------------------------------------------------------------------------- /misc/errorlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/errorlist.xml -------------------------------------------------------------------------------- /misc/org_icons/finefile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/org_icons/finefile.ico -------------------------------------------------------------------------------- /misc/org_icons/minesweeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/org_icons/minesweeper.png -------------------------------------------------------------------------------- /misc/org_icons/notepad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/org_icons/notepad.svg -------------------------------------------------------------------------------- /misc/org_icons/oleview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/org_icons/oleview.png -------------------------------------------------------------------------------- /misc/org_icons/regedit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/org_icons/regedit.svg -------------------------------------------------------------------------------- /misc/org_icons/uninstaller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/org_icons/uninstaller.svg -------------------------------------------------------------------------------- /misc/org_icons/wine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/org_icons/wine.svg -------------------------------------------------------------------------------- /misc/org_icons/winecfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/org_icons/winecfg.svg -------------------------------------------------------------------------------- /misc/org_icons/winetricks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/org_icons/winetricks.svg -------------------------------------------------------------------------------- /misc/org_icons/wordpad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/org_icons/wordpad.svg -------------------------------------------------------------------------------- /misc/package_desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/package_desc.txt -------------------------------------------------------------------------------- /misc/screenshots/winegui_screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/screenshots/winegui_screenshot0.png -------------------------------------------------------------------------------- /misc/screenshots/winegui_screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/screenshots/winegui_screenshot1.png -------------------------------------------------------------------------------- /misc/screenshots/winegui_screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/screenshots/winegui_screenshot2.png -------------------------------------------------------------------------------- /misc/screenshots/winegui_screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/screenshots/winegui_screenshot3.png -------------------------------------------------------------------------------- /misc/screenshots/winegui_screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/screenshots/winegui_screenshot4.png -------------------------------------------------------------------------------- /misc/winegui.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/winegui.desktop -------------------------------------------------------------------------------- /misc/winegui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/winegui.png -------------------------------------------------------------------------------- /misc/winegui.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/winegui.svg -------------------------------------------------------------------------------- /misc/winegui_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/winegui_big.png -------------------------------------------------------------------------------- /misc/winegui_screenshots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/misc/winegui_screenshots.gif -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/build_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/build_debug.sh -------------------------------------------------------------------------------- /scripts/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/build_docs.sh -------------------------------------------------------------------------------- /scripts/build_prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/build_prod.sh -------------------------------------------------------------------------------- /scripts/check_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/check_format.sh -------------------------------------------------------------------------------- /scripts/cpp_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/cpp_check.sh -------------------------------------------------------------------------------- /scripts/create_latest_release_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/create_latest_release_file.sh -------------------------------------------------------------------------------- /scripts/create_release_links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/create_release_links.sh -------------------------------------------------------------------------------- /scripts/create_source_archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/create_source_archive.sh -------------------------------------------------------------------------------- /scripts/deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/deps.sh -------------------------------------------------------------------------------- /scripts/fix_format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/fix_format.sh -------------------------------------------------------------------------------- /scripts/generate_gif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/generate_gif.sh -------------------------------------------------------------------------------- /scripts/valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/valgrind.sh -------------------------------------------------------------------------------- /scripts/valgrind_plot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/scripts/valgrind_plot.sh -------------------------------------------------------------------------------- /src/about_dialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/about_dialog.cc -------------------------------------------------------------------------------- /src/add_app_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/add_app_window.cc -------------------------------------------------------------------------------- /src/bottle_clone_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/bottle_clone_window.cc -------------------------------------------------------------------------------- /src/bottle_config_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/bottle_config_file.cc -------------------------------------------------------------------------------- /src/bottle_configure_env_var_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/bottle_configure_env_var_window.cc -------------------------------------------------------------------------------- /src/bottle_configure_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/bottle_configure_window.cc -------------------------------------------------------------------------------- /src/bottle_edit_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/bottle_edit_window.cc -------------------------------------------------------------------------------- /src/bottle_item.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/bottle_item.cc -------------------------------------------------------------------------------- /src/bottle_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/bottle_manager.cc -------------------------------------------------------------------------------- /src/bottle_new_assistant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/bottle_new_assistant.cc -------------------------------------------------------------------------------- /src/busy_dialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/busy_dialog.cc -------------------------------------------------------------------------------- /src/general_config_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/general_config_file.cc -------------------------------------------------------------------------------- /src/helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/helper.cc -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/main_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/main_window.cc -------------------------------------------------------------------------------- /src/menu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/menu.cc -------------------------------------------------------------------------------- /src/preferences_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/preferences_window.cc -------------------------------------------------------------------------------- /src/remove_app_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/remove_app_window.cc -------------------------------------------------------------------------------- /src/schema/org.melroy.winegui.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/schema/org.melroy.winegui.gschema.xml -------------------------------------------------------------------------------- /src/signal_controller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/src/signal_controller.cc -------------------------------------------------------------------------------- /suppressions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winegui/WineGUI/HEAD/suppressions.txt --------------------------------------------------------------------------------