Gtk3 Threaded UI: Difference between revisions

From vice-emu
Jump to navigation Jump to search
(Created page with "== Introduction == This page is meant to track our work on refactoring the Gtk3 UI to properly work with the awesome work done by DQH, solving a lot of issues with rendering...")
 
Line 2: Line 2:


This page is meant to track our work on refactoring the Gtk3 UI to properly work with the awesome work done by DQH, solving a lot of issues with rendering and sound synchronisation (the infamous "ruckeln") by using threading to have the emulation take precedence over the UI. The main dialogs (attach disk, open and use the setting dialog, etc) have already been refactored, but a lot of dialogs/popup menus and statusbar widgets remain.
This page is meant to track our work on refactoring the Gtk3 UI to properly work with the awesome work done by DQH, solving a lot of issues with rendering and sound synchronisation (the infamous "ruckeln") by using threading to have the emulation take precedence over the UI. The main dialogs (attach disk, open and use the setting dialog, etc) have already been refactored, but a lot of dialogs/popup menus and statusbar widgets remain.
== Using the new threaded code ==
:: Best filled in by DQH, I think :)
== UI elements to to check and refactor ==
=== Main menu items ===
This table contains a list of menu actions/dialogs reachable via the main menu. Unless otherwise noted, the "source file" column contains the filename with <code>src/arch/gtk3</code> stripped off.
{| class="wikitable"
!menu item||shortcut||source file||function||status||remarks
|-
|File -> Smart attach disk/tape/cartridge ...
||Alt+A
||[https://sourceforge.net/p/vice-emu/code/HEAD/tree/trunk/vice/src/arch/gtk3/uismartattach.c uismartattach.c]
||create_smart_attach-dialog()
||OK
||
|-
|}

Revision as of 16:38, 18 July 2020

Introduction

This page is meant to track our work on refactoring the Gtk3 UI to properly work with the awesome work done by DQH, solving a lot of issues with rendering and sound synchronisation (the infamous "ruckeln") by using threading to have the emulation take precedence over the UI. The main dialogs (attach disk, open and use the setting dialog, etc) have already been refactored, but a lot of dialogs/popup menus and statusbar widgets remain.


Using the new threaded code

Best filled in by DQH, I think :)


UI elements to to check and refactor

Main menu items

This table contains a list of menu actions/dialogs reachable via the main menu. Unless otherwise noted, the "source file" column contains the filename with src/arch/gtk3 stripped off.

menu item shortcut source file function status remarks
File -> Smart attach disk/tape/cartridge ... Alt+A uismartattach.c create_smart_attach-dialog() OK