I google, but i don't find references for my problem. Well 2 put inside a context:

I have an app with a number X of sensors, and capture some signals, all signal are processed and combined. And I have a very simple GUI for visualization of some data, i need to update a set of labels, i use something like:

gtk_label_set(GTK_LABEL(label), someStr);

with some delay (something like this):

if (delay)
 {
   /* DBUS cannot cope some times if the invoker exits too early. */
   delay *= get_linux_lowmem_modifier();
   debug("delaying exit for %d seconds\n", delay);
   sleep(delay);
 }


in resume, i need automatic update of a set of labels from data, this data is update each few milliseconds, then i need to choose the right one and put in the label, any help will be appreciate thanks in advanced

S
_______________________________________________
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Reply via email to