Re: New to gtk+... whats up with this?



Spyro the dragon <imolton clara net> writes: 
        label = gtk_label_new("Records");
        gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_RIGHT);
        gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL,
GTK_FILL, 0,0);

        records    = gtk_entry_new(); 
gtk_entry_set_editable(GTK_ENTRY(records), FALSE);
        gtk_table_attach (GTK_TABLE(table), records, 1, 2, 0, 1,
GTK_FILL, GTK_FILL, 0,0);
    

My book has a hopefully halfway-decent explanation of this table
stuff, you can see it at http://developer.gnome.org/doc/GGAD/ 

Havoc




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]