GTK menus on Ubuntu

2016-10-05 Thread Allin Cottrell
I'm wondering if anyone knows the machanism whereby Ubuntu "commandeers" the main menu system of a GTK application and sticks it into the global top-of-screen menu bar, or combines it with the application-window title bar? I'm talking about a "traditional", non-CSD GTK application, where the "n

Re: GTK+2 vs. GTK+3 signal ?expose/draw/render? events (F.Reiter)

2016-10-05 Thread Sébastien Le Roux
Dear all, thanks for your help and advise, I found out what I was doing wrong, and solved my problem, I was updating my window using: void update () { gtk_widget_hide (plot); gtk_widget_show (plot); } While I should have been using: gtk_widget_queue_draw (plot); That solves everything, to