Main Page   Class Hierarchy   Alphabetical List   Data Structures   File List   Data Fields   Globals  

main.c File Reference

#include <gtk/gtk.h>
#include "interface.h"
#include "support.h"

Include dependency graph for main.c:

Include dependency graph

Go to the source code of this file.

Functions

int main (int argc, char *argv[])


Function Documentation

int main int    argc,
char *    argv[]
 

Definition at line 16 of file main.c.

00017 {
00018   GtkWidget *SimCtrlWindow;
00019   GtkWidget *fileselection1;
00020 
00021   gtk_set_locale ();
00022   gtk_init (&argc, &argv);
00023 
00024   add_pixmap_directory (PACKAGE_DATA_DIR "/pixmaps");
00025   add_pixmap_directory (PACKAGE_SOURCE_DIR "/");
00026 
00027   /*
00028    * The following code was added by Glade to create one of each component
00029    * (except popup menus), just so that you see something after building
00030    * the project. Delete any components that you don't want shown initially.
00031    */
00032   SimCtrlWindow = create_SimCtrlWindow ();
00033   gtk_widget_show (SimCtrlWindow);
00034   fileselection1 = create_fileselection1 ();
00035   gtk_widget_show (fileselection1);
00036 
00037   gtk_main ();
00038   return 0;
00039 }


Generated on Sun Dec 2 15:28:09 2001 for EMC by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001