/* GNOME Volume Applet * Copyright (C) 2004 Ronald Bultje * * dock.h: floating window containing volume widgets * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifndef __GVA_DOCK_H__ #define __GVA_DOCK_H__ #include #include G_BEGIN_DECLS /* FIXME: This is necessary to avoid circular references in the headers. * This can be fixed by breaking the applet object into a model and a view. */ typedef struct _GnomeVolumeApplet GnomeVolumeApplet; #define GNOME_VOLUME_APPLET_TYPE_DOCK \ (gnome_volume_applet_dock_get_type ()) #define GNOME_VOLUME_APPLET_DOCK(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), GNOME_VOLUME_APPLET_TYPE_DOCK, \ GnomeVolumeAppletDock)) #define GNOME_VOLUME_APPLET_DOCK_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), GNOME_VOLUME_APPLET_TYPE_DOCK, \ GnomeAppletAppletAppletDockClass)) #define GNOME_VOLUME_APPLET_IS_DOCK(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GNOME_VOLUME_APPLET_TYPE_DOCK)) #define GNOME_VOLUME_APPLET_IS_DOCK_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), GNOME_VOLUME_APPLET_TYPE_DOCK)) typedef struct _GnomeVolumeAppletDock { GtkWindow parent; /* us */ GtkRange *scale; GtkButton *plus, *minus; GtkWidget *mute; /* timeout for buttons */ guint timeout; gint direction; /* orientation */ GtkOrientation orientation; GnomeVolumeApplet *model; } GnomeVolumeAppletDock; typedef struct _GnomeVolumeAppletDockClass { GtkWindowClass klass; } GnomeVolumeAppletDockClass; GType gnome_volume_applet_dock_get_type (void); GtkWidget *gnome_volume_applet_dock_new (GtkOrientation orientation, GnomeVolumeApplet *parent); void gnome_volume_applet_dock_change (GnomeVolumeAppletDock *dock, GtkAdjustment *adj); void gnome_volume_applet_dock_set_focus (GnomeVolumeAppletDock *dock); G_END_DECLS #endif /* __GVA_DOCK_H__ */