Simplest possible Ubuntu GUI app.

Posted by Chris Becke on Stack Overflow See other posts from Stack Overflow or by Chris Becke
Published on 2011-01-15T12:10:29Z Indexed on 2011/01/15 12:53 UTC
Read the original article Hit count: 106

Filed under:
|
|
|

On Windows, no matter which framework you use, all the frameworks need, ultimately, to call the user mode user32::CreateWindowEx API to actually create a window on the desktop.

On Ubuntu, or indeed Linux systems in general, it seems that the choices are to use a widget framework like Wx or Qt or GTK+ to create a GUI application, but all these frameworks feel like they are wrapping something more fundamental. Do these all talk directly to X on Linux? I thought Ubuntu was moving to a non X window manager, so what are they going to use then?

What library would I use to access the window manager all these frameworks use?

© Stack Overflow or respective owner

Related posts about c

    Related posts about linux