Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

73 lignes
2.6 KiB

  1. /* GTK - The GIMP Toolkit
  2. * Copyright (C) 2007 Red Hat, Inc.
  3. *
  4. * Authors:
  5. * - Bastien Nocera <bnocera@redhat.com>
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the
  19. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20. * Boston, MA 02111-1307, USA.
  21. */
  22. /*
  23. * Modified by the GTK+ Team and others 2007. See the AUTHORS
  24. * file for a list of people on the GTK+ Team. See the ChangeLog
  25. * files for a list of changes. These files are distributed with
  26. * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  27. */
  28. #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
  29. #error "Only <gtk/gtk.h> can be included directly."
  30. #endif
  31. #ifndef __GTK_VOLUME_BUTTON_H__
  32. #define __GTK_VOLUME_BUTTON_H__
  33. #include <gtk/gtkscalebutton.h>
  34. G_BEGIN_DECLS
  35. #define GTK_TYPE_VOLUME_BUTTON (gtk_volume_button_get_type ())
  36. #define GTK_VOLUME_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_VOLUME_BUTTON, GtkVolumeButton))
  37. #define GTK_VOLUME_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_VOLUME_BUTTON, GtkVolumeButtonClass))
  38. #define GTK_IS_VOLUME_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_VOLUME_BUTTON))
  39. #define GTK_IS_VOLUME_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_VOLUME_BUTTON))
  40. #define GTK_VOLUME_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_VOLUME_BUTTON, GtkVolumeButtonClass))
  41. typedef struct _GtkVolumeButton GtkVolumeButton;
  42. typedef struct _GtkVolumeButtonClass GtkVolumeButtonClass;
  43. struct _GtkVolumeButton
  44. {
  45. GtkScaleButton parent;
  46. };
  47. struct _GtkVolumeButtonClass
  48. {
  49. GtkScaleButtonClass parent_class;
  50. /* Padding for future expansion */
  51. void (*_gtk_reserved1) (void);
  52. void (*_gtk_reserved2) (void);
  53. void (*_gtk_reserved3) (void);
  54. void (*_gtk_reserved4) (void);
  55. };
  56. GType gtk_volume_button_get_type (void) G_GNUC_CONST;
  57. GtkWidget* gtk_volume_button_new (void);
  58. G_END_DECLS
  59. #endif /* __GTK_VOLUME_BUTTON_H__ */