Example 40-1. General setup
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. |
Example 40-2. Accepting directories
The MIME type inode/directory has to be used if the widget shall accept directories. |
Note: When a file is dropped over a widget which accepts directories only, the directory of the filename is used.
Example 40-3. Setup with callback
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:
|
Example 40-5. Working example
|