/* C o p y r i g h t *(also read COPYING)* * * * * * * * * * * * * * * * * * *
 *									       *
 *  Copyright (C) 2002  <Philip Van Hoof>                                      *
 *									       *
 *  This program is free software; you can redistribute it and/or modify       *
 *  it under the terms of the GNU General Public License as published by       *
 *  the Free Software Foundation; either version 2 of the License, or          *
 *  (at your option) any later version.                                        *
 *									       *
 *  This program is distributed in the hope that it will be useful,            *
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of             *
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
 *  GNU General Public License for more details.                               *
 *									       *
 *  You should have received a copy of the GNU General Public License          *
 *  along with this program; if not, write to the Free Software                *
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  *
 *									       *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 
#include <gtk/gtk.h>
#include "GtkCodeText.c"

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

	
	gtk_init (&argc, &argv);
  
	window = gtk_window_new (GTK_WINDOW_TOPLEVEL);  
	
	gtk_object_set_data (GTK_OBJECT (window), "window", window);
	gtk_window_set_title (GTK_WINDOW (window), "Aspect Frame");  
	gtk_signal_connect (GTK_OBJECT (window), "destroy",
		      GTK_SIGNAL_FUNC (gtk_exit), NULL);
	
	
	codetext = gtkcodetext_new ();
	gtkcodetext_setlanguage(GTK_CODETEXT(codetext), "C++");
	gtk_widget_ref (codetext);
	gtk_object_set_data_full (GTK_OBJECT (window), "codetext", codetext,
                            (GtkDestroyNotify) gtk_widget_unref);
	gtk_widget_show (codetext);  
	gtk_container_add (GTK_CONTAINER (window), codetext);
	
  
	
	gtk_widget_show (window);  
	gtk_main ();  
	return 0;
	
}

