1 /* -----------------------------------------------------------------------------
3 * (c) The GHC Team 2000
5 * RTS GTK Front Panel (callbacks)
7 * ---------------------------------------------------------------------------*/
9 #ifdef RTS_GTK_FRONTPANEL
15 #include "VisCallbacks.h"
16 #include "VisWindow.h"
17 #include "VisSupport.h"
18 #include "FrontPanel.h"
21 on_cont_radio_clicked (GtkButton *button,
24 update_mode = Continuous;
29 on_stop_before_radio_clicked (GtkButton *button,
32 update_mode = BeforeGC;
37 on_stop_after_radio_clicked (GtkButton *button,
40 update_mode = AfterGC;
45 on_stop_both_radio_clicked (GtkButton *button,
48 update_mode = BeforeAfterGC;
53 on_stop_but_clicked (GtkButton *button,
61 on_continue_but_clicked (GtkButton *button,
69 on_quit_but_clicked (GtkButton *button,
75 #endif /* RTS_GTK_FRONTPANEL */