Hudzilla.org - the homepage of Paul Hudson
Contents > Alternative PHP uses > Graphical user interfaces Wish List | Report Bug | About Me ]

21.3.7     Using Custom Parameters

This is NOT the latest copy of this book; click here for the latest version.

When you are connecting signals to functions, it is possible to add one or more custom parameters to the signal handler. As seen earlier, connect_object() can be used to pass a particular widget into a function, however an alternative is to use connect() with extra parameters for the information you wish to use inside the function.

So, connect() could have been called like this:

$window->connect('button-press-event', 'show_popup', $menu);

The handler function would then need to have accepted three parameters - the event, the GtkWindow object that emitted the signal, and the custom parameter $menu. The only difference here is that behind the scenes a little more data needs to be passed around for the handler function to be called with the extra parameter.

Here is a complete code example you can try out to get the idea:

<?php
    
function btnClick($button, $window) {
        
$window->destroy();
        
gtk::main_quit();
    }

    
$window =& new GtkWindow();
    
$btnquit =& new GtkButton("Quit");
    
$btnquit->connect("clicked", "btnClick", $window);
    
$window->add($btnquit);
    
$window->show_all();

    
gtk::main();
?>

As you can see, the parameter $button is not being used inside btnClick(), however that is hardly a major speed hit.





<< 21.3.6 Advanced GUIs   21.3.8 GUI Themes >>
Table of Contents
Want to see this stuff in print? PHP in a Nutshell takes the core topics covered here, adds in thousands of edits from the editorial team and myself, and combines them to make an unbeatable reference for PHP programmers at all levels.



My latest book has hundreds more tips on how to use PHP, Apache, and MySQL, plus Perl, Python, shell scripts, performance tuning, and more!



Top-right shadow
 
Bottom-left shadow Bottom shadow

Comments from other readers
Be the first to add a comment to this chapter!



Add comment
Please note that by posting a comment here you are committing it to the public domain. This is important so that others can make use of your code themselves, and also so that I can incorporate helpful notes directly into the main text. Comments are limited to 2000 characters in length.

If you are reporting an error in the content, please tell me directly.

Your name/email address:
Your comment:
 
Now, in order to verify that you're a real person, please answer this simple question: what is five plus two?
The answer is:
(please write in
numbers, eg 19)


Top-right shadow
 
Bottom-left shadow Bottom shadow