I have an application which I have made using gtk and c. It runs on full screen mode and displays data on a label. I need to hide the mouse pointer as soon as the application starts and then unhide it when the application stops.
How to do it.
This is my main window:
GtkWidget *window = NULL;
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_widget_set_size_request((window),640,480);
gtk_widget_realize (window);
gtk_window_fullscreen((GtkWindow*)window);