in reply to Grab Config Setting When clicking on Notebook Tab
That's pretty vague. In Gtk2, you need to connect to events or signals for the widgets. Read "perldoc Gtk2::Notebook" and look for the SIGNALS section. Then you do a $notebook->signal_connect( switch_page=> \&your_callback, $your_data);
|
|---|