Redimensionner un GtkPaned
Je désire construire un gtk_hpaned mais je n'arrive pas à le redimensionner une fois incorporé dans la fenêtre je pensais qu'il avait cette option par défaut. Voici mes instructions relatives à la création du panneau horizontal :
Code:
1 2 3 4
|
window->hpanneau = gtk_hpaned_new();
gtk_paned_set_position (GTK_PANED (window->hpanneau), 1);
gtk_table_attach_defaults(GTK_TABLE(window->table), window->hpanneau,1,40,30,40); |
J'ai cherché des options mais je n'ai pas trouvé ce qu'il faut pour pouvoir avoir le redimensionnement !