/* nekobee DSSI software synthesizer GUI * * Most of this code comes from gAlan 0.2.0, copyright (C) 1999 * Tony Garnock-Jones, with modifications by Sean Bolton, * copyright (c) 2004. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the Free * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307, USA. */ #ifndef __GTK_KNOB_H__ #define __GTK_KNOB_H__ #include #include #include #ifdef __cplusplus extern "C" { #endif #define GTK_KNOB(obj) GTK_CHECK_CAST(obj, gtk_knob_get_type(), GtkKnob) #define GTK_KNOB_CLASS(klass) GTK_CHECK_CLASS_CAST(klass, gtk_knob_get_type(), GtkKnobClass) #define GTK_IS_KNOB(obj) GTK_CHECK_TYPE(obj, gtk_knob_get_type()) typedef struct _GtkKnob GtkKnob; typedef struct _GtkKnobClass GtkKnobClass; struct _GtkKnob { GtkWidget widget; /* update policy (GTK_UPDATE_[CONTINUOUS/DELAYED/DISCONTINUOUS]) */ guint policy : 2; /* State of widget (to do with user interaction) */ guint8 state; gint saved_x, saved_y; /* ID of update timer, or 0 if none */ guint32 timer; /* Pixmap for knob */ GdkPixbuf *pixbuf; GdkBitmap *mask; GdkGC *mask_gc; GdkGC *red_gc; /* Old values from adjustment stored so we know when something changes */ gfloat old_value; gfloat old_lower; gfloat old_upper; /* The adjustment object that stores the data for this knob */ GtkAdjustment *adjustment; }; struct _GtkKnobClass { GtkWidgetClass parent_class; }; extern GtkWidget *gtk_knob_new(GtkAdjustment *adjustment); extern guint gtk_knob_get_type(void); extern GtkAdjustment *gtk_knob_get_adjustment(GtkKnob *knob); extern void gtk_knob_set_update_policy(GtkKnob *knob, GtkUpdateType policy); extern void gtk_knob_set_adjustment(GtkKnob *knob, GtkAdjustment *adjustment); #ifdef __cplusplus } #endif #endif