PHP-GTK
Wednesday, November 25, 2009 
download | documentation | applications | faq | changelog | resources 


search for in the  


previousGtkHandleBox
GtkHandleBox::get_handle_positionnext

Last updated: Wed, 25 Nov 2009
view this page in English

GtkHandleBox Constructor

Creates a new handle box.

Example 67. Adding a handle box to a window

<?php
$vbox = new GtkVBox();
 
$handlebox = new GtkHandleBox();
$handlebox->add(new GtkLabel('I can be detached'));
$vbox->pack_start($handlebox, false);
 
$vbox->pack_start(new GtkTextView());
 
 
$wnd = new GtkWindow();
$wnd->connect_simple('destroy', array('gtk', 'main_quit'));
$wnd->add($vbox);
$wnd->show_all();
Gtk::main();
?>

User Contributed Notes
gtk.gtkhandlebox.constructor.php
add a note about notes
There are no user contributed notes for this page.


previousGtkHandleBox
GtkHandleBox::get_handle_positionnext

Last updated: Wed, 25 Nov 2009
view this page in English


credits 

PHP  Copyright © 2001-2009 The PHP Group
 All rights reserved.
Last updated: Wed Nov 25 02:46:19 2009 UTC