in reply to Re: Passing multiple user data GLADE
in thread Passing multiple user data GLADE

Hi,

Well I have 4 text entry boxes:

ip: 192.168.0.2

SSID:My Router

PSK: Passphrase

Device: Gadget1

Where the values in the '[]' I need when the okay is clicked, and passed to my callback routine. And these are stored in a 4 element vbox.

Now in Glade's properties window in the signals tab you can put the routine in the 'handler' box, and the data you want passed to the routine in the 'user data' box, but only allows you to add one object. So I'm stuck in passing it to the callback routine.

I am using Glade 3.14.2 and Gtk3. As well Glade and Perl are both quite new to me. Thanks for your help

Replies are listed 'Best First'.
Re^3: Passing multiple user data GLADE
by sam_bakki (Pilgrim) on Mar 17, 2014 at 08:29 UTC

    Hi

    Ok. Then expose the text entry boxes as a global variables like below,

    my $GuiBuilder = Gtk2::Builder->new (); $GuiBuilder->add_from_file('test.glade'); my $text_ip_entry = $GuiBuilder->get_object('text_ip_entry'); my $text_ssid_entry = $GuiBuilder->get_object('text_ssid_entry'); ..... sub on_some_click { my $widget=shift @_; my $userData = shift @_; my $text_ip = $text_ip_entry->get_text(); }

    Thanks & Regards,
    Bakkiaraj M
    My Perl Gtk2 technology demo project - http://code.google.com/p/saaral-soft-search-spider/ , contributions are welcome.

      Thanks, I got it sorted and updated the post.