Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > c67b354c377ee9ec45db6a53a77f3916 > files > 4

php-pear-Gtk_FileDrop-1.0.2-3mdv2010.0.noarch.rpm

<?php
/**
*   Test application for the Gtk_FileDrop class
*   @author Christian Weiske <cweiske@cweiske.de>
*/
if (!extension_loaded('gtk')) {	
    dl('php_gtk.' . PHP_SHLIB_SUFFIX);
}
require_once('Gtk/FileDrop.php');

$window = &new GtkWindow();
$window->set_default_size(300, 30);
$window->connect_object('destroy', array('gtk', 'main_quit'));
$window->show();

$entry =& new GtkEntry();
$window->add($entry);
$entry->set_text('drop text files on me');
Gtk_FileDrop::attach($entry, array('text/plain'));
    
$window->show_all();
gtk::main();
?>