Hi and welcome to this
awsome forum.
yes it can be done. use this:
Code:
GtkWidget *child = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_window_set_decorated ( GTK_WINDOW (child), FALSE);
gtk_window_set_resizable(GTK_WINDOW(child), TRUE); // nevermind
gtk_window_set_position(GTK_WINDOW(child), GTK_WIN_POS_CENTER);
/*
* you must put some widget in that child :-)
*/
gtk_widget_show_all (child);
gtk_window_move(GTK_WINDOW(child),0,0);
gtk_widget_set_size_request(child, SIRINA,VISINA);
SIRINA means width, it should be fullscreen.
VISINA means height, it does not have to be fullscreen. if you have MAIN MENU button on bottom , say it is 80 pixel height, then set your child's height to be VISINA-80 !