Is there a cross-OS GUI framework that supports embedding HTML pages?

前端 未结 9 746
感动是毒
感动是毒 2021-02-01 10:36

I want to develop a desktop app to be used cross-system (win, mac, linux), is there a GUI framework that would allow me to write code once for all 3 platforms and have a fully-s

9条回答
  •  梦如初夏
    2021-02-01 11:12

    Since my first answer was for wxWidgets and you feel Qt is not for you...
    You mentioned not javascript - note that PyQt "provides [python] bindings for Qt 2 and Qt 3". PySide is Nokia's official Python bindings for Qt. A "PyQt vs PySide" search provides interesting results:

    • on SO: https://stackoverflow.com/questions/1297660/pyside-vs-pyqt
    • Some technical diffs
    • PyQt vs PySide comparison
    • PyQt or PySide - which one to use

    There's also PythonQt but I haven't looked into it at all.

    FYI,

    • Qt Networking examples
    • Qt WebKit examples:

      Qt provides an integrated Web browser component based on WebKit, the popular open source browser engine.

      These examples and demonstrations show a range of different uses for WebKit, from displaying Web pages within a Qt user interface to an implementation of a basic function Web browser.

    • Qt also supports C#
    • and many other languages.
    • KDE (Linux Desktop Environment) uses and develops Qt

    Anything specific about Qt that makes it 'not a great fit' for you?

提交回复
热议问题