Problems with mup::cellrendererpopup



Hi,

I found muppets code somewhere for a "cell renderer test", so I've been trying to put it into my own application, and as of yesterday everything was fine... But since I need Win32::OLE in my app, I needed to upgrade perl to 5.8.8 (from 5.8.6) to get a newer version of PAR. (PAR 0.90 is incompatible with Win32::OLE) and after that I can't get my app nor muppets testcode to work. I inserted a Dumper() in the code and here's the strange thing, the $cell somewhere looses index and list and instead these are named "index ö" and "list ö" or something like that...

I'll attach the old code inside here and hope that there's someone who can help me... :]

Not too sharp with all the tree-MVC here...

/Fluff
#!/usr/bin/perl -w

=doc

This is an example of creating a custom cell renderer.  The code isnt
terribly pretty, but you should be able to get the gist.  If you want
to use this object, then go ahead, but remember the gpl.

=cut

#
# Copyright (C) 2003-2004 by muppet
# 
# This library is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
# Software Foundation; either version 2.1 of the License, or (at your option)
# any later version.
# 
# This library is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GNU Library General Public License for
# more details.
# 
# You should have received a copy of the GNU Library General Public License
# along with this library; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place - Suite 330, Boston, MA  02111-1307  USA.
#
# $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/examples/cellrenderer_popup.pl,v 1.9 2004/07/10 02:52:54 
muppetman Exp $
#

# we require things from 1.04.
use Gtk2 1.04, -init;

package Mup::CellRendererPopup;

use Glib qw(TRUE FALSE);

use Glib::Object::Subclass
        Gtk2::CellRenderer::,
        signals => {
                edited => {
                        flags => [qw/run-last/],
                        #                  path         index
                        param_types => [qw/Glib::String Glib::Int/],
                },
        },
        properties => [
                Glib::ParamSpec->boolean ('show_box', 'Show Box',
                                          'If true, draw an option menu-looking background on the cell',
                                          TRUE, ['readable', 'writable']),
                Glib::ParamSpec->boolean ('editable', 'Editable',
                                          'Can i change that?',
                                          FALSE, ['readable', 'writable']),
                Glib::ParamSpec->int ('index', 'Index', 'Index of selected list item', 0, 65535, 0, 
[qw/readable writable/]),
                Glib::ParamSpec->boxed ('list', 'List', 'List of possible values', 'Glib::Scalar', 
[qw/readable writable/]),
        ],
        ;

use Data::Dumper;

use constant xpad => 3;
use constant ypad => 2;
# arrow will use text height
use constant arrow_width => 15;

sub INIT_INSTANCE {
        my $self = shift;
        $self->{show_box} = TRUE;
}

sub calc_size {
        my ($cell, $layout) = @_;
        my ($w, $h) = $layout->get_pixel_size;
        return (0, 0, $w + xpad * 2 + arrow_width, $h + ypad * 2);
}

sub GET_SIZE {
        my ($cell, $widget, $area) = @_;
        if ($area) {
                return (3, 3, $area->width - arrow_width - 2*xpad - 4, $area->height - 6);
        }
        my $layout = $cell->get_layout ($widget);
        foreach (keys %{$cell}) {
            if($_ =~ /index.*/) {
                $cell->{'index'} = $cell->{$_};
            }
        }
        $layout->set_text ($cell->{list}[$cell->{'index'}] || "");
        return $cell->calc_size ($layout);
}

sub get_layout {
        my ($cell, $widget) = @_;

        return $cell->{layout} if defined $cell->{layout};
        return $cell->{layout} = $widget->create_pango_layout ("");
}

sub RENDER {
        my ($cell, $drawable, $widget, $background_area, $cell_area, $expose_area, $flags) = @_;
        my $state = 'normal';

        if ($cell->{show_box}) {
                $widget->get_style->paint_box ($drawable, $widget->state,
                                         'out', $cell_area,
                                         undef, "optionmenu",
                                         $cell_area->x,
                                         $cell_area->y,
                                         $cell_area->width,
                                         $cell_area->height);
        } else {
                if ($flags & 'selected') {
                        $state = $widget->has_focus
                               ? 'selected'
                               : 'active';
                } else {
                        $state = $widget->state eq 'insensitive'
                               ? 'insensitive'
                               : 'normal';
                }
        }

        my $layout = $cell->get_layout ($widget);
        foreach (keys %{$cell}) {
            if($_ =~ /index*/) {
                $cell->{'index'} = $cell->{$_};
            }
        }
        warn Dumper($cell);
        $layout->set_text ($cell->{list}[$cell->{'index'}] || "");
        my ($xoff, $yoff, $width, $height) = $cell->calc_size ($layout);

        $widget->get_style->paint_layout ($drawable,
                                 $state,
                                 1, $cell_area,
                                 $widget, "cellrenderertext",
                                 $cell_area->x + $xoff + xpad,
                                 $cell_area->y + $yoff + ypad,
                                 $layout);
        $widget->get_style->paint_arrow ($drawable, $state, 'none',
                                $cell_area, $widget, "",
                                'down', 0,
                                $cell_area->x+$cell_area->width - arrow_width,
                                $cell_area->y+$cell_area->height - ($cell_area->height - 2),
                                arrow_width - 3, $cell_area->height - 2);
}

sub menu_pos_func {
        my ($menu, $x, $y, $data) = @_;
        my ($treeview, $cell_area) = @$data;
        # we need to figure out where the cell is in window coordinates,
        # so we can put the menu near it.  tree_to_widget_coords() maps
        # the cell_area's x and y to widget coords, but this is in the
        # entire treeview's coordinate space; if it's inside a scrolled
        # window, then only part of it is visible.  thus, we need to add
        # the offset of the visible portion of the treeview.  we want the
        # menu to start xpad from the left of the cell (just like the 
        # button graphic), and we'll start by centering it vertically.
        # got all that?
        my ($wx, $wy) = $treeview->get_bin_window->get_origin;
        my ($tx, $ty) = $treeview->tree_to_widget_coords($cell_area->x, $cell_area->y);
        my $visible = $treeview->get_visible_rect;

        $x = $wx + $visible->x + $tx + xpad;
        $y = $wy + $visible->y + $ty + $cell_area->height / 2 - 2;

        # center the menu vertically around the selected item.
        # this is inspired heavily by GtkOptionMenu.
        my $active = $menu->get_active;
        $y -= $active->get_child_requisition->height / 2 if $active;
        foreach my $i ($menu->get_children) {
                last if $i == $active;
                $y -= $i->get_child_requisition->height if $i->visible;
        }
        # play nicely with rtl languages
        if ($treeview->get_direction eq 'rtl') {
                $x = $wx + $tx + $cell_area->width -
                        $menu->get_child_requisition->width;
        }
        return ($x, $y, 1);
}




sub editing_done {
        my ($item, $info) = @_;
        my ($cell, $editable) = @$info;
        $cell->signal_emit ('edited', $item->{path}, $item->{index});
        # see the evil trick description below
        $editable->remove_widget;
}

sub START_EDITING {
        my ($cell, $event, $widget, $path, $background_area, $cell_area, $flags) = @_;
        my $menu = Gtk2::Menu->new;
        my @data = @{ $cell->{list} };

        # this is an evil trick.  we're creating a custom widget and handling
        # the editing ourselves, but the higher level code only thinks we're
        # editing if we return an editable.  so we return an editable.  of
        # course, we have to remove it in the menu activate callbacks so that
        # it doesn't stick around.
        my $editable = Gtk2::Entry->new;

        for (my $i = 0 ; $i < @data ; $i++) {
                my $item = Gtk2::MenuItem->new ($data[$i]);
                $item->show;
                $menu->append ($item);
                $item->{path} = $path;
                $item->{index} = $i;
                $item->{text} = $data[$i];
                #$item->signal_connect (activate => \&editing_done, $cell);
                $item->signal_connect (activate => \&editing_done, [$cell, $editable]);
        }
        $menu->set_active ($cell->{index});
        $menu->popup (undef, undef,
                      \&menu_pos_func, [$widget, $cell_area],
                      $event ? $event->button : 0, 0);
        $item = $menu->get_active;
        $menu->select_item ($item) if $item;

        # see the evil trick mentioned above.
        $editable;
}


##########################################################################
# driver code
package main;

use Data::Dumper;
use Glib qw(FALSE TRUE);

$window = Gtk2::Window->new;
$window->set_title ('cell renderer test');
$window->signal_connect (delete_event => sub { Gtk2->main_quit; FALSE; });

$vbox = Gtk2::VBox->new;
$window->add ($vbox);

$label = Gtk2::Label->new;
$label->set_markup ('<big>F-Words</big>');
$vbox->pack_start ($label, FALSE, FALSE, 0);

# create and load the model
$model = Gtk2::ListStore->new ('Glib::String', 'Glib::Scalar', 'Glib::Int');
foreach ([ 'foo',        [qw/foo bar baz/]],
         [ 'fluffy',     [qw/muffy tuffy buffy willow/]],
         [ 'flurble',    [qw/murble swurble curble/]],
         [ 'frob',       [qw/blob clob plob mob rob gob glob wob dob/]],
         [ 'frobnitz',   [qw/fronbination that's sweepin' the nation/]],
         [ 'repeated',   [qw/fronbination that's sweepin' the nation the the the the/]],
#        [ 'none',       []],
#        [ 'verymany',   [(1..50)]],
         [ 'ftang',      [qw/quisinart/]],
         [ 'fire truck', [qw/red white green yellow polka-dot/]]) {
        my $iter = $model->append;
        $model->set ($iter, 0, $_->[0], 1, $_->[1], 2, rand (@{$_->[1]}));
}


# now a view
$treeview = Gtk2::TreeView->new ($model);
$treeview->set_rules_hint (TRUE);
$treeview->set_reorderable (TRUE);


#
# regular editable text column for column 0, the string
#
$renderer = Gtk2::CellRendererText->new;
$renderer->set (editable => TRUE);;
$column = Gtk2::TreeViewColumn->new_with_attributes ('something', $renderer,
                                                     text => 0);
# this commits changes from the user's editing to the model.  compare and
# contrast with the one for the popup, below.
$renderer->signal_connect (edited => sub {
                my ($cell, $text_path, $new_text, $model) = @_;
                my $path = Gtk2::TreePath->new_from_string ($text_path);
                my $iter = $model->get_iter ($path);
                $model->set ($iter, 0, $new_text);
        }, $model);
$treeview->append_column ($column);

#
# text for col[1]
#
$renderer = Gtk2::CellRendererText->new;
$column = Gtk2::TreeViewColumn->new_with_attributes ('list', $renderer,);
# custom data func to show the list items from the scalar.
$column->set_cell_data_func ($renderer, sub {
                my ($tree_column, $cell, $model, $iter) = @_;
                my ($info) = $model->get ($iter, 1);
                $cell->set (text => "[".join(", ", @$info)."]");
        });
$treeview->append_column ($column);

#
# text for col[2]
#
$renderer = Gtk2::CellRendererText->new;
$column = Gtk2::TreeViewColumn->new_with_attributes ('index', $renderer,
                                                     text => 2);
$treeview->append_column ($column);

#
# custom cell renderer for cols 1 and 2, an editable popup menu
#
$renderer = Mup::CellRendererPopup->new;
$renderer->set (mode => 'editable');
$column = Gtk2::TreeViewColumn->new_with_attributes ('selector', 
                                                     $renderer, 
                                                     'list' => 1, 
                                                     'index' => 2);
# this handler commits the user's selection to the model.  compare with
# the one for the typical text renderer -- the only difference is a var name.
$renderer->signal_connect (edited => sub {
                my ($cell, $text_path, $new_index, $model) = @_;
                my $path = Gtk2::TreePath->new_from_string ($text_path);
                my $iter = $model->get_iter ($path);
                $model->set ($iter, 2, $new_index);
        }, $model);
$treeview->append_column ($column);


my $scroll = Gtk2::ScrolledWindow->new;
$scroll->set_policy ('never', 'automatic');
$scroll->add ($treeview);
$vbox->pack_start ($scroll, TRUE, TRUE, 0);

# since we have a scroller, we need to set some reasonable initial size.
# i'll set one that should have the window scroll a bit, to make sure we
# can easily test the popup behavior when the treeview is scrolled.
$window->set_default_size (-1, 150);

my $check = Gtk2::CheckButton->new ('_show boxes');
$check->set_active ($renderer->get ('show-box'));
$check->signal_connect (toggled => sub {
                $renderer->set (show_box => $check->get_active);
                $treeview->queue_draw;
});
$vbox->pack_start ($check, FALSE, FALSE, 0);

$window->show_all;

Gtk2->main;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]