Search code examples
c++qtgtk3gtkmmgtkmm3

Qt::CustomizeWindowHint and Qt::Tool analogs for gtkmm


I try to find Qt::CustomizeWindowHint and Qt::Tool analogs for Gtkmm 3.0.

I want to design a simple program without system buttons like close, fullscreen mode etc.
In the official documentation I couldn't find it.

Please help me.


Solution

  • Use window->set_decorated(false), although it is only a hint to the window manager. Some window managers don't support windows without system buttons.