#define _GNU_SOURCE
#include <gtk/gtk.h>
#include <sys/time.h>
#include <stdio.h>      /* standard I/O                */
#include <stdlib.h>     /* for exit   - 1 occurrence   */
#include <unistd.h>
#include <string.h>

void title() {
        printf("\tCompounder 0.0.1\n");
        printf("\tThis is version 0.0.1 dated 09/19/2008\n");
        printf("\tenjoy\n\n");
return;
}

struct GtkDialog   
{
      GtkWindow window;
      GtkWidget *table;
      GtkWidget *buffer;
      GtkWidget *view;
};

static void callback1( GtkWidget *widget,
                      gpointer   data )
{
        title();

