/* example-start fixed fixed.c */

       #include <gtk/gtk.h>

int main( int   argc,
                 char *argv[] )
       {
         /* GtkWidget is the storage type for widgets */
         GtkWidget *window;
         GtkWidget *fixed;
         GtkWidget *button;
         gint i;

         /* Initialise GTK */
         gtk_init(&argc, &argv);
           
         /* Create a new window */
         window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
