1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
/* -*- mode: C++; indent-tabs-mode: nil; fill-column: 100; c-basic-offset: 4; -*-
*
* Author: Brent Baccala <baccala@freesoft.org>
*
* Public domain.
*
* This file implements the COMEDI GUI component.
*
*/
#include <stdio.h>
#include <string.h>
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include "xoscope.h"
#include "display.h"
#include "xoscope_gtk.h"
GtkWidget *window;
#ifdef HAVE_LIBCOMEDI
#include <comedilib.h>
/* Various COMEDI driver variables we import into our namespace. We set variables via the
* datasrc->set_option interface, but we read the variables directly, primarily because we need to
* get some information from comedi (like the number of subdevices, their types and flags) that we
* can't get from the datasrc interface, so we just go and read everything directly.
*/
extern comedi_t *comedi_dev;
extern char *comedi_devname;
extern int comedi_subdevice;
extern int comedi_bufsize;
extern int comedi_rate;
extern int comedi_aref;
static int gui_subdevice = 0;
char *subdevice_types[]={
"unused",
"analog input",
"analog output",
"digital input",
"digital output",
"digital I/O",
"counter",
"timer",
"memory",
"calibration",
"processor"
};
void subdevice_on_changed (GtkWidget *widget, gpointer data)
{
int subdevice = gtk_combo_box_get_active (GTK_COMBO_BOX (widget));
int subdev_flags = comedi_get_subdevice_flags(comedi_dev, subdevice);
char buf[64];
data = NULL;
gui_subdevice = subdevice;
/* Check with the current subdevice's flags to grey out any arefs it doesn't support. */
gtk_widget_set_sensitive(GTK_WIDGET(LU("aref_ground")), subdev_flags & SDF_GROUND);
gtk_widget_set_sensitive(GTK_WIDGET(LU("aref_diff")), subdev_flags & SDF_DIFF);
gtk_widget_set_sensitive(GTK_WIDGET(LU("aref_common")), subdev_flags & SDF_COMMON);
/* If the buffer size radio button is set to 'default', update the field with the default buffer
* size (which might be different for this subdevice).
*/
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(LU("bufsize_default")))) {
sprintf(buf, "%d", comedi_get_buffer_size(comedi_dev, comedi_subdevice));
gtk_entry_set_text(GTK_ENTRY(LU("bufsize_entry")), buf);
}
}
/* This function isn't registered anywhere as a callback, but we use it both when the dialog is
* initially created and after the COMEDI device changes.
*/
static GtkWidget *menu = NULL;
void device_changed(void)
{
char buf[64];
int i;
gtk_entry_set_text(GTK_ENTRY(LU("comedi_device_entry")), comedi_devname);
/* If we couldn't open the current COMEDI device (comedi_dev is NULL), we want everything except
* the device name field (and its label) to be greyed out. I don't know if GTK's designers
* planned for gtk_widget_set_sensitive() to be used as a callback, but it works!
*/
if (comedi_dev == NULL) {
gtk_container_foreach(GTK_CONTAINER(LU("option_table")),
(GtkCallback) gtk_widget_set_sensitive,
(gpointer) FALSE);
gtk_widget_set_sensitive(LU("device_label"), TRUE);
gtk_widget_set_sensitive(LU("comedi_device_entry"), TRUE);
/* XXX maybe put something here - add "none" to subdevice list */
return;
} else {
gtk_container_foreach(GTK_CONTAINER(LU("option_table")),
(GtkCallback) gtk_widget_set_sensitive,
(gpointer) TRUE);
}
snprintf(buf, sizeof(buf), "%d", comedi_rate);
gtk_entry_set_text(GTK_ENTRY(LU("rate_entry")), buf);
/* Set the bufsize radio buttons based on whether we're using the default buffer size or a
* custom one. If we're custom, put the custom size we're using in the entry field and make it
* sensitive. If we're using the default, find the default and put it in the entry field, then
* grey it out.
*/
if (comedi_bufsize > 0) {
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(LU("bufsize_custom")), TRUE);
sprintf(buf, "%d", comedi_bufsize);
gtk_entry_set_text(GTK_ENTRY(LU("bufsize_entry")), buf);
gtk_widget_set_sensitive(GTK_WIDGET(LU("bufsize_entry")), TRUE);
} else {
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(LU("bufsize_default")), TRUE);
sprintf(buf, "%d", comedi_get_buffer_size(comedi_dev, comedi_subdevice));
gtk_entry_set_text(GTK_ENTRY(LU("bufsize_entry")), buf);
gtk_widget_set_sensitive(GTK_WIDGET(LU("bufsize_entry")), FALSE);
}
/* Build the subdevice combo box text by running through COMEDI's
* list of subdevices. Gray out any subdevices that doesn't support input (??)
* and select the current subdevice.
*/
GtkComboBoxText *combo;
if (menu == NULL)
{
menu = LU("comedi_subdevices");
g_assert (menu);
g_signal_connect (menu, "changed", G_CALLBACK(subdevice_on_changed), NULL);
}
combo = GTK_COMBO_BOX_TEXT (menu);
gtk_combo_box_text_remove_all (combo);
for (i=0; i<comedi_get_n_subdevices(comedi_dev); i++) {
int subdev_type = comedi_get_subdevice_type(comedi_dev, i);
int nchans = comedi_get_n_channels(comedi_dev, i);
int noinput = (subdev_type==1) || (subdev_type==3) || (subdev_type==5);
snprintf (buf, sizeof(buf), "%d (%s [%s]; %d %s)",
i, subdevice_types[subdev_type], noinput? "[No IN]" : "",
nchans, nchans > 1 ? "chans" : "chan");
gtk_combo_box_text_append_text (combo, buf);
}
gtk_combo_box_set_active (GTK_COMBO_BOX (menu), comedi_subdevice);
subdevice_on_changed (menu, NULL);
/* Set the aref radio buttons based on current aref setting. */
switch (comedi_aref) {
case AREF_GROUND:
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(LU("aref_ground")), TRUE);
break;
case AREF_DIFF:
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(LU("aref_diff")), TRUE);
break;
case AREF_COMMON:
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(LU("aref_common")), TRUE);
break;
}
}
void comedi_gtk_options(void)
{
GtkWidget *comedi_dialog;
comedi_dialog = create_comedi_dialog();
window = comedi_dialog;
device_changed();
gtk_widget_show(comedi_dialog);
}
void comedi_save_options(void)
{
char buf[64];
snprintf(buf, sizeof(buf), "device=%s",
gtk_entry_get_text(GTK_ENTRY(LU("comedi_device_entry"))));
datasrc->set_option(buf);
snprintf(buf, sizeof(buf), "rate=%s",
gtk_entry_get_text(GTK_ENTRY(LU("rate_entry"))));
datasrc->set_option(buf);
snprintf(buf, sizeof(buf), "subdevice=%d", gui_subdevice);
datasrc->set_option(buf);
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(LU("bufsize_default")))) {
datasrc->set_option("bufsize=default");
} else {
snprintf(buf, sizeof(buf), "bufsize=%s",
gtk_entry_get_text(GTK_ENTRY(LU("bufsize_entry"))));
datasrc->set_option(buf);
}
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(LU("aref_ground")))) {
datasrc->set_option("aref=ground");
} else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(LU("aref_diff")))) {
datasrc->set_option("aref=diff");
} else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(LU("aref_common")))) {
datasrc->set_option("aref=common");
}
/* Datasrc API insists we have to do datasrc->reset() now, we also may need to update various
* stuff like the input fd, so we just clear()
*/
clear();
}
#if 0
void
on_device_entry_changed (GtkEditable *editable, gpointer user_data)
{
if (strcmp(gtk_entry_get_text(GTK_ENTRY(LU("comedi_device_entry"))),
comedi_devname) == 0) {
gtk_container_foreach(GTK_CONTAINER(LU("option_table")),
(GtkCallback) gtk_widget_set_sensitive,
(gpointer) TRUE);
} else {
gtk_container_foreach(GTK_CONTAINER(LU("option_table")),
(GtkCallback) gtk_widget_set_sensitive,
(gpointer) FALSE);
gtk_widget_set_sensitive(LU("device_label"), TRUE);
gtk_widget_set_sensitive(LU("comedi_device_entry"), TRUE);
}
}
#endif
#endif
void
comedi_on_ok(GtkButton *button, gpointer user_data)
{
#ifdef HAVE_LIBCOMEDI
comedi_save_options();
gtk_widget_hide(window);
menu = NULL;
#endif
}
void
comedi_on_apply(GtkButton *button, gpointer user_data)
{
#ifdef HAVE_LIBCOMEDI
comedi_save_options();
device_changed();
#endif
}
void
on_bufsize_custom_clicked(GtkButton *button, gpointer user_data)
{
gtk_widget_set_sensitive(GTK_WIDGET(LU("bufsize_entry")), TRUE);
}
void
on_bufsize_default_clicked(GtkButton *button, gpointer user_data)
{
gtk_widget_set_sensitive(GTK_WIDGET(LU("bufsize_entry")), FALSE);
}
|