[[gtk]]
 

http://kmlinux/~culik/wiki

    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 14:30 by 147.32.8.115
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki