Search code examples
qtgridgtkgtkmm

Gtk(mm) Grid Layout Control


Does Gtk(mm) contain anything similar to WPF's XAML Grid? The reason being is that I want to make an app that is capable of running on Linux, Windows, etc. The only plausible solution is Gtk or Qt, but those don't have layout documents like WPF does with XAML.

Being that I never use the designer in WPF, I just code the XAML, I could cope with that.

So my question is: Is there a layout designer for Gtk or Qt (preferably Gtk) or is there a Grid-like layout control for Gtk or Qt (preferably Gtk)


Solution

  • Yes, GTK has the Glade user interface designer (homepage) which produces an XML layout document.

    GTK also has a Grid control (C API documentation, C++ API documentation).