gtk
GtkWidget * box = gtk_hbox_new (FALSE, 8); button = gtk_button_new_with_label ("Hello World"); GtkWidget * button2 = gtk_button_new_with_label ("Second Button"); GtkWidget * button3 = gtk_button_new_with_label ("Third Button"); gtk_container_add (GTK_CONTAINER (window), box); gtk_container_add (GTK_CONTAINER (box), button); gtk_container_add (GTK_CONTAINER (box), button2); gtk_container_add (GTK_CONTAINER (box), button3);
gtk_widget_show_all (window);
gtk.txt · Last modified: 2009/03/12 13:30 by 127.0.0.1