gtk+ r20648 - in trunk: . gtk
- From: johan svn gnome org
- To: svn-commits-list gnome org
- Subject: gtk+ r20648 - in trunk: . gtk
- Date: Fri, 20 Jun 2008 14:30:29 +0000 (UTC)
Author: johan
Date: Fri Jun 20 14:30:28 2008
New Revision: 20648
URL: http://svn.gnome.org/viewvc/gtk+?rev=20648&view=rev
Log:
2008-06-20 Johan Dahlin <jdahlin async com br>
* gtk/gtk.symbols:
* gtk/gtkscalebutton.c (gtk_scale_button_get_plus_button),
(gtk_scale_button_get_minus_button):
* gtk/gtkscalebutton.h:
Add missing accessor for sealed fields GtkScaleButton->plus_button and
minus_button.
Modified:
trunk/ChangeLog
trunk/gtk/gtk.symbols
trunk/gtk/gtkscalebutton.c
trunk/gtk/gtkscalebutton.h
Modified: trunk/gtk/gtk.symbols
==============================================================================
--- trunk/gtk/gtk.symbols (original)
+++ trunk/gtk/gtk.symbols Fri Jun 20 14:30:28 2008
@@ -3310,6 +3310,8 @@
gtk_scale_button_set_value
gtk_scale_button_get_adjustment
gtk_scale_button_set_adjustment
+gtk_scale_button_get_minus_button
+gtk_scale_button_get_plus_button
#endif
#endif
Modified: trunk/gtk/gtkscalebutton.c
==============================================================================
--- trunk/gtk/gtkscalebutton.c (original)
+++ trunk/gtk/gtkscalebutton.c Fri Jun 20 14:30:28 2008
@@ -1321,5 +1321,41 @@
g_object_notify (G_OBJECT (button), "value");
}
+/**
+ * gtk_scale_button_get_plus_button:
+ * @button: a #GtkScaleButton
+ *
+ * Retrieves the scale buttons plus button widget
+ *
+ * Return value: the plus button widget
+ *
+ * Since: 2.14
+ */
+GtkWidget*
+gtk_scale_button_get_plus_button (GtkScaleButton *button)
+{
+ g_return_val_if_fail (GTK_IS_SCALE_BUTTON (button), button);
+
+ return button->plus_button;
+}
+
+/**
+ * gtk_scale_button_get_minus_button:
+ * @button: a #GtkScaleButton
+ *
+ * Retrieves the scale buttons minus button widget
+ *
+ * Return value: the minus button widget
+ *
+ * Since: 2.14
+ */
+GtkWidget*
+gtk_scale_button_get_minus_button (GtkScaleButton *button)
+{
+ g_return_val_if_fail (GTK_IS_SCALE_BUTTON (button), button);
+
+ return button->minus_button;
+}
+
#define __GTK_SCALE_BUTTON_C__
#include "gtkaliasdef.c"
Modified: trunk/gtk/gtkscalebutton.h
==============================================================================
--- trunk/gtk/gtkscalebutton.h (original)
+++ trunk/gtk/gtkscalebutton.h Fri Jun 20 14:30:28 2008
@@ -95,6 +95,8 @@
GtkAdjustment* gtk_scale_button_get_adjustment (GtkScaleButton *button);
void gtk_scale_button_set_adjustment (GtkScaleButton *button,
GtkAdjustment *adjustment);
+GtkWidget* gtk_scale_button_get_plus_button (GtkScaleButton *button);
+GtkWidget* gtk_scale_button_get_minus_button (GtkScaleButton *button);
G_END_DECLS
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]