]> Pileus Git - ~andy/gtk/blob - gtk/gtkvolumebutton.c
Fix some i18n errors. Pointed out by Behdad Esfahbod.
[~andy/gtk] / gtk / gtkvolumebutton.c
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 /*
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 #include <config.h>
31
32 #include <atk/atk.h>
33
34 #include "gtkvolumebutton.h"
35 #include "gtkstock.h"
36 #include "gtktooltip.h"
37 #include "gtkintl.h"
38
39 #include "gtkalias.h"
40
41 #define EPSILON (1e-10)
42
43 struct _GtkVolumeButton
44 {
45   GtkScaleButton  parent;
46 };
47
48 static void     gtk_volume_button_class_init    (GtkVolumeButtonClass *klass);
49 static void     gtk_volume_button_init          (GtkVolumeButton      *button);
50 static gboolean cb_query_tooltip                (GtkWidget            *button,
51                                                  gint                  x,
52                                                  gint                  y,
53                                                  gboolean              keyboard_mode,
54                                                  GtkTooltip           *tooltip,
55                                                  gpointer              user_data);
56 static void     cb_value_changed                (GtkVolumeButton      *button,
57                                                  gdouble               value,
58                                                  gpointer              user_data);
59
60 G_DEFINE_TYPE (GtkVolumeButton, gtk_volume_button, GTK_TYPE_SCALE_BUTTON)
61
62 static void
63 gtk_volume_button_class_init (GtkVolumeButtonClass *klass)
64 {
65 }
66
67 static void
68 gtk_volume_button_init (GtkVolumeButton *button)
69 {
70   GtkScaleButton *sbutton = GTK_SCALE_BUTTON (button);
71   GtkObject *adj;
72   const char *icons[] = {
73         "audio-volume-muted",
74         "audio-volume-high",
75         "audio-volume-low",
76         "audio-volume-medium",
77         NULL
78   };
79
80   atk_object_set_name (gtk_widget_get_accessible (GTK_WIDGET (button)),
81                        _("Volume"));
82   atk_object_set_name (gtk_widget_get_accessible (sbutton->minus_button),
83                        _("Volume Down"));
84   atk_object_set_name (gtk_widget_get_accessible (sbutton->plus_button),
85                        _("Volume Up"));
86
87   gtk_scale_button_set_icons (sbutton, icons);
88
89   adj = gtk_adjustment_new (0., 0., 1., 0.02, 0.2, 0.);
90   g_object_set (G_OBJECT (button),
91                 "adjustment", adj,
92                 "size", GTK_ICON_SIZE_SMALL_TOOLBAR,
93                 "has-tooltip", TRUE,
94                 NULL);
95
96   g_signal_connect (G_OBJECT (button), "query-tooltip",
97                     G_CALLBACK (cb_query_tooltip), NULL);
98   g_signal_connect (G_OBJECT (button), "value-changed",
99                     G_CALLBACK (cb_value_changed), NULL);
100 }
101
102 /**
103  * gtk_volume_button_new
104  *
105  * Creates a #GtkVolumeButton, with a range between 0.0 and 1.0, with
106  * a stepping of 0.02. Volume values can be obtained and modified using
107  * the functions from #GtkScaleButton.
108  *
109  * Return value: a new #GtkVolumeButton
110  *
111  * Since: 2.12
112  */
113 GtkWidget *
114 gtk_volume_button_new (void)
115 {
116   GObject *button;
117   button = g_object_new (GTK_TYPE_VOLUME_BUTTON, NULL);
118   return GTK_WIDGET (button);
119 }
120
121 static gboolean
122 cb_query_tooltip (GtkWidget  *button,
123                   gint        x,
124                   gint        y,
125                   gboolean    keyboard_mode,
126                   GtkTooltip *tooltip,
127                   gpointer    user_data)
128 {
129   GtkScaleButton *scale_button = GTK_SCALE_BUTTON (button);
130   GtkAdjustment *adj;
131   gdouble val;
132   char *str;
133
134   adj = gtk_scale_button_get_adjustment (scale_button);
135   val = gtk_scale_button_get_value (scale_button);
136
137   if (val < (adj->lower + EPSILON))
138     {
139       str = g_strdup (_("Muted"));
140     }
141   else if (val >= (adj->upper - EPSILON))
142     {
143       str = g_strdup (_("Full Volume"));
144     }
145   else
146     {
147       int percent;
148
149       percent = (int) (100. * val / (adj->upper - adj->lower) + .5);
150
151       /* Translators: this is the percentage of the current volume,
152        * as used in the tooltip, eg. "49 %".
153        * Translate the "%d" to "%Id" if you want to use localised digits,
154        * or otherwise translate the "%d" to "%d".
155        * Do not translate and do not include the "volume percentage|"
156        * part in the translation!
157        */
158       str = g_strdup_printf (Q_("volume percentage|%d %%"), percent);
159     }
160
161   gtk_tooltip_set_text (tooltip, str);
162   g_free (str);
163
164   return TRUE;
165 }
166
167 static void
168 cb_value_changed (GtkVolumeButton *button, gdouble value, gpointer user_data)
169 {
170   gtk_widget_trigger_tooltip_query (GTK_WIDGET (button));
171 }
172
173
174 #define __GTK_VOLUME_BUTTON_C__
175 #include "gtkaliasdef.c"