Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17182 программиста и 1834 робота. Сейчас ищут 1680 программистов ...

Example

Вернуться к: Gtk2_FileDrop

Example

Example – How to use Gtk2_FileDrop

General setup

<?php
$accepted_types 
= array(
    
'text/html',
    
'text/plain',
    
'.dat'
);
Gtk2_FileDrop::attach($widget$accepted_types);
?>

Here we set up the array of accepted file types: The widget shall accept files with MIME-Type text/html, text/plain and files ending with .dat. After this we set up the $widget to accept this files.

Accepting directories

<?php
$accepted_types 
= array(
    
'inode/directory',
);
?>

The MIME type inode/directory has to be used if the widget shall accept directories.

When a file is dropped over a widget which accepts directories only, the directory of the filename is used.

Setup with callback

<?php
function filesDropped($widget$arFiles) {
    foreach(
$arFiles as $strFile) {
        echo 
"The file \"$strFile\" has been dropped\r\n";
    }
}

$accepted_types = array(
    
'text/html',
    
'text/plain',
    
'.dat'
);
Gtk2_FileDrop::attach($widget$accepted_types'filesDropped'false);
?>

In this example we use a callback function to print out all dropped files to the console. Further we determine the fourth parameter as false which means that the widget's value is not changed automatically.

To use the callback with objects, you pass an array with the reference of the object:

Using a callback

<?php
Gtk2_FileDrop
::attach($widget$accepted_types, array( &$this'filesDropped'));
?>

Working example

<?php
require_once 'Gtk2/FileDrop.php';

$window = new GtkWindow();
$window->set_default_size(30030);
$window->connect_simple('destroy', array('gtk''main_quit'));
$window->show();

$entry = new GtkEntry();
$window->add($entry);
$entry->set_text('drop text files on me');
Gtk2_FileDrop::attach($entry, array('text/plain'));

$window->show_all();
Gtk::main();
?>


Вернуться к: Gtk2_FileDrop

© 2024 «PHP.RU — Сообщество PHP-Программистов»
Главная | Форум | Реклама на сайте | Контакты VIP Сувениры
Разработка компании ODware