[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: Can't add new GTK 2.16 methods to GtkStyle
- From: "Emmanuel Rodriguez" <emmanuel rodriguez gmail com>
- To: "gtk-perl-list gnome org List" <gtk-perl-list gnome org>
- Subject: Re: Can't add new GTK 2.16 methods to GtkStyle
- Date: Sun, 18 Jan 2009 10:42:39 +0100
On Sat, Jan 17, 2009 at 10:38 PM, muppet <scott asofyet org> wrote:
>
> On Jan 17, 2009, at 2:44 PM, Torsten Schoenfeld wrote:
>>
>> Then the GValue will need to be
>> initialized for which you need to know the type of the property. I think
>> this
>> will have to look something like this (modulo error checking):
>>
>> GParamSpec *pspec = gtk_widget_class_find_style_property (
>> g_type_class_peek (widget_type), property_name);
>> g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
>
> Oooh, good eye, i completely overlooked that.
>
>
Thanks for the advice. The methods get_property() and get() have been
added. I've added get() because I have assumed that that's is what
gtk_style_get_valist should be named.
Best regards,
Emmanuel Rodriguez
Index: xs/GtkStyle.xs
===================================================================
--- xs/GtkStyle.xs (revision 2111)
+++ xs/GtkStyle.xs (working copy)
@@ -21,6 +21,7 @@
#include "gtk2perl.h"
+
MODULE = Gtk2::Style PACKAGE = Gtk2::Style PREFIX = gtk_style_
BOOT:
@@ -572,3 +573,83 @@
RETVAL
#endif
+
+# FIXME 2.16
+#if GTK_CHECK_VERSION (2, 15, 0)
+
+SV*
+gtk_style_get_property (style, widget_package, property_name)
+ GtkStyle *style
+ const char *widget_package
+ const gchar *property_name
+ PREINIT:
+ GType widget_type;
+ GValue value = {0,};
+ GParamSpec *pspec;
+ CODE:
+ widget_type = gperl_type_from_package(widget_package);
+ if (widget_type == 0) {
+ croak("package %s is not registered with GPerl", widget_package);
+ }
+ if (! g_type_is_a(widget_type, GTK_TYPE_WIDGET)) {
+ croak("%s is not a subclass of Gtk2::Widget", widget_package);
+ }
+
+ pspec = gtk_widget_class_find_style_property(
+ g_type_class_peek(widget_type),
+ property_name
+ );
+ if (!pspec) {
+ croak("Widget class '%s' has no style property named '%s'", widget_package, property_name);
+ }
+ g_value_init(&value, G_PARAM_SPEC_VALUE_TYPE(pspec));
+
+ gtk_style_get_property(style, widget_type, property_name, &value);
+ RETVAL = gperl_sv_from_value(&value);
+ g_value_unset(&value);
+
+ OUTPUT:
+ RETVAL
+
+
+void
+gtk_style_get (style, widget_package, first_property_name, ...)
+ GtkStyle *style
+ const char *widget_package
+ const gchar *first_property_name
+ PREINIT:
+ int i;
+ GType widget_type;
+ gpointer class_peek;
+ PPCODE:
+ EXTEND (SP, items - 2);
+
+ widget_type = gperl_type_from_package(widget_package);
+ if (widget_type == 0) {
+ croak("package %s is not registered with GPerl", widget_package);
+ }
+ if (! g_type_is_a (widget_type, GTK_TYPE_WIDGET)) {
+ croak("%s is not a subclass of Gtk2::Widget", widget_package);
+ }
+
+ class_peek = g_type_class_peek(widget_type);
+
+
+ for (i = 2 ; i < items ; i++) {
+ GValue value = {0, };
+ gchar * name = SvGChar(ST(i));
+ GParamSpec * pspec;
+ pspec = gtk_widget_class_find_style_property(class_peek, name);
+ if (pspec) {
+ g_value_init(&value, G_PARAM_SPEC_VALUE_TYPE(pspec));
+ gtk_style_get_property(style, widget_type, name, &value);
+ PUSHs(sv_2mortal(gperl_sv_from_value(&value)));
+ g_value_unset(&value);
+ }
+ else {
+ warn ("Invalid property `%s' used", name);
+ }
+ }
+
+
+#endif
Index: t/GtkStyle.t
===================================================================
--- t/GtkStyle.t (revision 2111)
+++ t/GtkStyle.t (working copy)
@@ -1,7 +1,7 @@
#!/usr/bin/perl -w
# vim: set ft=perl expandtab shiftwidth=2 softtabstop=2 :
use strict;
-use Gtk2::TestHelper tests => 113;
+use Gtk2::TestHelper tests => 118;
# $Id$
@@ -133,6 +133,56 @@
ok (1);
}
+SKIP: {
+ skip("get_property is new in 2.16", 5)
+ unless (Gtk2->CHECK_VERSION(2, 15, 0)); # FIXME 2.16
+
+ # Test different properties (gint, gboolean, gchar* and GObject)
+ my $property = $style -> get_property('Gtk2::TreeView', 'expander-size');
+ my $treeview = Gtk2::TreeView -> new();
+
+ # get gboolean
+ is (
+ $style -> get_property('Gtk2::TreeView', 'allow-rules'),
+ $treeview -> style_get_property('allow-rules'),
+ "get_property gboolean"
+ );
+
+ # get gint
+ is (
+ $style -> get_property('Gtk2::TreeView', 'expander-size'),
+ $treeview -> style_get_property('expander-size'),
+ "get_property gint"
+ );
+
+ # get gchar*
+ is (
+ $style -> get_property('Gtk2::TreeView', 'grid_line-pattern'),
+ $treeview -> style_get_property('grid_line-pattern'),
+ "get_property gchar*"
+ );
+
+ # get GObject (a color)
+ is (
+ $style -> get_property('Gtk2::TreeView', 'even-row-color'),
+ $treeview -> style_get_property('even-row-color'),
+ "get_property GObject*"
+ );
+
+
+ # Get multiple properties simultaneously
+ my @properties = $style -> get('Gtk2::TreeView', 'expander-size', 'even-row-color', 'grid_line-pattern');
+ is_deeply (
+ \ properties,
+ [
+ $treeview -> style_get_property('expander-size'),
+ $treeview -> style_get_property('even-row-color'),
+ $treeview -> style_get_property('grid_line-pattern'),
+ ],
+ 'get multiple properties',
+ );
+}
+
__END__
Copyright (C) 2003-2006 by the gtk2-perl team (see the file AUTHORS for the
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]