j'aurais une tit question sur les gtktables
void gtk_table_attach(GtkTable *table, GtkWidget *child, guint left_attach, guint right_attach, guint top_attach, guint bottom_attach, GtkAttachOptions xoptions, GtkAttachOptions yoptions, guint xpadding, guint ypadding);
jje comprend pas tout les arguments de cette fonction
et tout particuliérement ses 6 la
# left_attach : position gauche du widget
# right_attach : position droite du widget
# top_attach : position haute du widget
# bottom_attach : position basse du widget
# xoptions : type de réaction au redimensionnement horizontal
# yoptions : type de réaction au redimensionnement vertical
edit
j'ai tenter un truc mais sa marche po
gtk_table_attach(GTK_TABLE(tableau), labels_du_tableau[i][j], 1, 0, 1, 0,GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
a l'exécution j'ai ca :
(sousou:16043): Gtk-CRITICAL **: gtk_table_attach: assertion `left_attach < right_attach' failed
Partager