Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: Passing multiple user data GLADE

by hakim-djz (Novice)
on Mar 16, 2014 at 14:35 UTC ( [id://1078517]=note: print w/replies, xml ) Need Help??


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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1078517]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (2)
As of 2024-04-26 07:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found