#include "receiver.h"
#include "new_protocol.h"
#include "old_protocol.h"
+#ifdef LOCALCW
#include "iambic.h"
+#endif
#include "ext.h"
static GtkWidget *parent_window=NULL;
gtk_grid_attach(GTK_GRID(grid),cw_keyer_weight_b,1,9,1,1);
g_signal_connect(cw_keyer_weight_b,"value_changed",G_CALLBACK(cw_keyer_weight_value_changed_cb),NULL);
-#ifdef LOCALCW
+//
+// With the advent of MIDI keyers, this check-box is needed even if not compiled
+// with LOCALCW
+//
GtkWidget *cw_keyer_internal_b=gtk_check_button_new_with_label("CW handled in Radio");
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (cw_keyer_internal_b), cw_keyer_internal);
gtk_widget_show(cw_keyer_internal_b);
gtk_grid_attach(GTK_GRID(grid),cw_keyer_internal_b,0,10,1,1);
g_signal_connect(cw_keyer_internal_b,"toggled",G_CALLBACK(cw_keyer_internal_cb),NULL);
+#ifdef LOCALCW
GtkWidget *cw_keyer_spacing_b=gtk_check_button_new_with_label("CW enforce letter spacing");
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (cw_keyer_spacing_b), cw_keyer_spacing);
gtk_widget_show(cw_keyer_spacing_b);
if(value) cw_keyer_weight=atoi(value);
value=getProperty("cw_keyer_spacing");
if(value) cw_keyer_spacing=atoi(value);
-#ifdef LOCALCW
value=getProperty("cw_keyer_internal");
if(value) cw_keyer_internal=atoi(value);
-#endif
value=getProperty("cw_keyer_sidetone_volume");
if(value) cw_keyer_sidetone_volume=atoi(value);
value=getProperty("cw_keyer_ptt_delay");