In order to have an OS with a single interface, allowing to improve mutual compatibility, I am looking for a way to create a system in which the entire interface will be in html5.
For example, starting with the gtk library (to use an existing one), you could translate the code, for example:
gtk_window_set_title (GTK_WINDOW (window1), "the title");
at
document.title = "the title"
I would like to know if there are any tools that could help me achieve this goal.
change
to clarify my question and understand what I'm looking for, I found this study
The first step may be to use / build the semantic ontology of what used to be ui. Then I could integrate the gtk library (or another GUI library on the desktop) and the web interface languages into the same base. So I could do bijections between gtk and web methods.
, , , .