mirror of
https://github.com/php/doc-gtk.git
synced 2026-03-25 09:32:13 +01:00
14 lines
349 B
Plaintext
14 lines
349 B
Plaintext
<?php
|
|
//Loading a part of the glade file only
|
|
|
|
//We want "btnClose" to be the root of the widget tree to load
|
|
$glade = new GladeXML('helloglade.glade', 'btnClose');
|
|
|
|
//That will work
|
|
$btn = $glade->get_widget('btnClose');
|
|
|
|
//This will fail, as the window isn't loaded:
|
|
$window = $glade->get_widget('wndClose');
|
|
//Output is NULL
|
|
var_dump($window);
|
|
?> |