bacon-volume.h
上传用户:ledjyj
上传日期:2014-08-27
资源大小:2639k
文件大小:2k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. /* Volume Button / popup widget
  2.  * (c) copyright 2005 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
  3.  *
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Library General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  * Library General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Library General Public
  15.  * License along with this library; if not, write to the
  16.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17.  * Boston, MA 02111-1307, USA.
  18.  */
  19. #ifndef __BACON_VOLUME_BUTTON_H__
  20. #define __BACON_VOLUME_BUTTON_H__
  21. #include <gtk/gtkbutton.h>
  22. #include <gtk/gtkicontheme.h>
  23. G_BEGIN_DECLS
  24. #define BACON_TYPE_VOLUME_BUTTON 
  25.   (bacon_volume_button_get_type ())
  26. #define BACON_VOLUME_BUTTON(obj) 
  27.   (G_TYPE_CHECK_INSTANCE_CAST ((obj), BACON_TYPE_VOLUME_BUTTON, 
  28.        BaconVolumeButton))
  29. typedef struct _BaconVolumeButton {
  30.   GtkButton parent;
  31.   /* popup */
  32.   GtkWidget *dock, *scale, *image, *plus, *min;
  33.   GtkIconSize size;
  34.   gint click_id;
  35.   float direction;
  36.   gboolean timeout;
  37.   guint32 pop_time;
  38.   GtkIconTheme *theme;
  39. } BaconVolumeButton;
  40. typedef struct _BaconVolumeButtonClass {
  41.   GtkButtonClass parent_class;
  42.   /* signals */
  43.   void (* value_changed) (BaconVolumeButton * button);
  44.   gpointer __bla[4];
  45. } BaconVolumeButtonClass;
  46. GType bacon_volume_button_get_type (void);
  47. GtkWidget * bacon_volume_button_new (GtkIconSize size,
  48.  float min, float max,
  49.  float step);
  50. float bacon_volume_button_get_value (BaconVolumeButton * button);
  51. void bacon_volume_button_set_value (BaconVolumeButton * button,
  52.  float value);
  53. G_END_DECLS
  54. #endif /* __BACON_VOLUME_BUTTON_H__ */