RESOLU [C & GTK2]

RESOLU [C & GTK2] - C - Programmation

Marsh Posté le 29-07-2003 à 16:09:10    

Quelqu'un sait où je peux trouver comment mettre une petite image à côté d'un bouton en gtk2, je ne trouve rien avec google.


Message édité par deviant le 29-07-2003 à 21:55:38
Reply

Marsh Posté le 29-07-2003 à 16:09:10   

Reply

Marsh Posté le 29-07-2003 à 21:51:26    

Finalement j'ai trouvé la solution.

Code :
  1. button = gtk_button_new ();
  2.   gtk_widget_show (button);
  3.   gtk_box_pack_start (GTK_BOX (hbox3), button, TRUE, FALSE, 0);
  4.   g_signal_connect_swapped (G_OBJECT (button), "clicked",
  5.       G_CALLBACK (gtk_widget_destroy),
  6.       G_OBJECT (window));
  7.   alignment = gtk_alignment_new (0.5, 0.5, 0, 0);
  8.   gtk_widget_show (alignment);
  9.   gtk_container_add (GTK_CONTAINER (button), alignment);
  10.   bhbox = gtk_hbox_new (FALSE, 2);
  11.   gtk_widget_show (bhbox);
  12.   gtk_container_add (GTK_CONTAINER (alignment), bhbox);
  13.   image = gtk_image_new_from_stock ("gtk-quit", GTK_ICON_SIZE_BUTTON);
  14.   gtk_widget_show (image);
  15.   gtk_container_add (GTK_CONTAINER (bhbox), image);
  16.  
  17.   label = gtk_label_new ("Quitter" );
  18.   gtk_widget_show (label);
  19.   gtk_container_add (GTK_CONTAINER (bhbox), label);

Reply

Marsh Posté le 29-07-2003 à 21:54:57    

gtk ça pue, gtkmm ça roxe

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed