1 | /* GTK - The GIMP Toolkit |
2 | * Copyright (C) 2007 Red Hat, Inc. |
3 | * |
4 | * Authors: |
5 | * - Bastien Nocera <[email protected]> |
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 | /* |
24 | * Modified by the GTK+ Team and others 2007. See the AUTHORS |
25 | * file for a list of people on the GTK+ Team. See the ChangeLog |
26 | * files for a list of changes. These files are distributed with |
27 | * GTK+ at ftp://ftp.gtk.org/pub/gtk/. |
28 | */ |
29 | |
30 | #ifndef __GTK_VOLUME_BUTTON_H__ |
31 | #define __GTK_VOLUME_BUTTON_H__ |
32 | |
33 | #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) |
34 | #error "Only <gtk/gtk.h> can be included directly." |
35 | #endif |
36 | |
37 | #include <gtk/gtkscalebutton.h> |
38 | |
39 | G_BEGIN_DECLS |
40 | |
41 | #define GTK_TYPE_VOLUME_BUTTON (gtk_volume_button_get_type ()) |
42 | #define GTK_VOLUME_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_VOLUME_BUTTON, GtkVolumeButton)) |
43 | #define GTK_VOLUME_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_VOLUME_BUTTON, GtkVolumeButtonClass)) |
44 | #define GTK_IS_VOLUME_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_VOLUME_BUTTON)) |
45 | #define GTK_IS_VOLUME_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_VOLUME_BUTTON)) |
46 | #define GTK_VOLUME_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_VOLUME_BUTTON, GtkVolumeButtonClass)) |
47 | |
48 | typedef struct _GtkVolumeButton GtkVolumeButton; |
49 | typedef struct _GtkVolumeButtonClass GtkVolumeButtonClass; |
50 | |
51 | struct _GtkVolumeButton |
52 | { |
53 | GtkScaleButton parent; |
54 | }; |
55 | |
56 | struct _GtkVolumeButtonClass |
57 | { |
58 | GtkScaleButtonClass parent_class; |
59 | |
60 | /* Padding for future expansion */ |
61 | void (*_gtk_reserved1) (void); |
62 | void (*_gtk_reserved2) (void); |
63 | void (*_gtk_reserved3) (void); |
64 | void (*_gtk_reserved4) (void); |
65 | }; |
66 | |
67 | GType gtk_volume_button_get_type (void) G_GNUC_CONST; |
68 | GtkWidget* gtk_volume_button_new (void); |
69 | |
70 | G_END_DECLS |
71 | |
72 | #endif /* __GTK_VOLUME_BUTTON_H__ */ |
73 | |