Are there any native gtkmm classes to Queue commands/data from the signal handler functions of the widgets?

StackOverflow https://stackoverflow.com/questions/10557205

  •  07-06-2021
  •  | 
  •  

Frage

I have constructed a Gtkmm GUI with miscellaneous widgets. On invoking the signal, each widget is intended to construct a "string" using user input data that is sent over the network. Thus I think, the commands have to pass through a single queuing mechanism (queue, ring buffer, etc) to avoid contention. Is there a native queue or ring buffer class in gtkmm that performs this function? I was thinking more on these lines

http://www.gtk.org/api/2.6/glib/glib-Asynchronous-Queues.html

P.S:

I am unable to find an equivalent wrapper here http://developer.gnome.org/gtkmm-tutorial/2.22/gtkmm-tutorial.html

Andere Tipps

Glib is wrapped seperately as glibmm. If the functionality is wrapped, you should find it there.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top