Alinear botones con gtk

Iniciado por soez, 25 Mayo 2010, 12:28 PM

0 Miembros y 1 Visitante están viendo este tema.

soez

Queria preguntar como alinear los botones con gtk, estoy leyendo sobre las sintaxis pero en ejemplo real no logro sacarlo

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include <config.h>
#include <gtk/gtk.h>

int main (int argc, char *argv[])
{
GtkWidget *window;
GtkWidget *button;
GtkWidget *box;

gtk_init (&argc, &argv);

button = gtk_button_new_with_label ("Ejecutar");
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
box = gtk_hbox_new(TRUE, 0);
gtk_window_set_title (GTK_WINDOW (window), "Mi primer programa");
gtk_container_border_width (GTK_CONTAINER (window), 200);
gtk_container_add (GTK_CONTAINER (window), button);
gtk_container_border_width (GTK_CONTAINER (button), 10);
gtk_box_pack_start (GTK_BOX (box), button, TRUE, FALSE, 0);
gtk_widget_show (window);
gtk_widget_show (button);

gtk_main ();
return 0;
}
01001010 01100001 01110110 01101001 01100101 01110010

nicolas_cof

#1
Mmmmmmm yo te recomendaria hacer el diseño de tus interfaces con Glade...

http://glade.gnome.org/

Me parece que va a ser mas facil hacer lo que estas tratando de hacer! (valga la redundancia :P)

Salu10.