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
|
/* -*- mode: C++; indent-tabs-mode: nil; fill-column: 100; c-basic-offset: 4; -*-
*
* @(#)$Id: com_gtk.h,v 2.3 2009/01/17 06:44:55 baccala Exp $
*
* Copyright (C) 1996 - 2000 Tim Witham <twitham@quiknet.com>
*
* (see the files README and COPYING for more details)
*
* Some GTK widgets and event handlers common to xoscope and xy.
*
*/
extern GtkWidget *menubar;
extern GtkWidget *glade_window;
extern GtkWidget *comedi_options_dialog;
// extern GtkWidget *alsa_options_dialog; FIXME: where is it?
extern GtkWidget *databox;
GtkWidget * lookup_widget(const gchar *widget_name);
#define LU(label) lookup_widget(label)
GtkWidget *create_comedi_dialog (void);
void set_fixing_widgets (gboolean on_off);
|