00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifdef HAVE_CONFIG_H
00023 # include <config.h>
00024 #endif
00025
00026 #include <gtk/gtk.h>
00027
00028 #include "callbacks.h"
00029 #include "interface.h"
00030 #include "support.h"
00031 #include "lininfo.h"
00032 #include "others.h"
00033
00034
00035 void
00036 on_fixed1_destroy (GtkObject * object, gpointer user_data)
00037 {
00038 lkmonitor_exit();
00039 gtk_main_quit ();
00040 }
00041
00042
00043 gboolean
00044 on_window1_destroy_event (GtkWidget * widget,
00045 GdkEvent * event, gpointer user_data)
00046 {
00047
00048 return FALSE;
00049 }
00050
00051
00052 void
00053 on_window1_destroy (GtkObject * object, gpointer user_data)
00054 {
00055 lkmonitor_exit();
00056 gtk_main_quit ();
00057 }
00058
00059 void
00060 on_about1_activate (GtkMenuItem *menuitem,
00061 gpointer user_data)
00062 {
00063 gtk_widget_show(create_about());
00064 }
00065
00066
00067 void
00068 on_quit1_activate (GtkMenuItem *menuitem,
00069 gpointer user_data)
00070 {
00071 lkmonitor_exit();
00072 gtk_main_quit();
00073
00074 }