1wxFileDataObject(3) Erlang Module Definition wxFileDataObject(3)
2
3
4
6 wxFileDataObject - Functions for wxFileDataObject class
7
9 wxFileDataObject is a specialization of wxDataObject for file names.
10 The program works with it just as if it were a list of absolute file
11 names, but internally it uses the same format as Explorer and other
12 compatible programs under Windows or GNOME/KDE file manager under Unix
13 which makes it possible to receive files from them using this class.
14
15 See: wxDataObject, wxDataObjectSimple (not implemented in wx), wxText‐
16 DataObject, wxBitmapDataObject, wxDataObject
17
18 This class is derived (and can use functions) from: wxDataObject
19
20 wxWidgets docs: wxFileDataObject
21
23 wxFileDataObject() = wx:wx_object()
24
26 new() -> wxFileDataObject()
27
28 Constructor.
29
30 addFile(This, File) -> ok
31
32 Types:
33
34 This = wxFileDataObject()
35 File = unicode:chardata()
36
37 Adds a file to the file list represented by this data object
38 (Windows only).
39
40 getFilenames(This) -> [unicode:charlist()]
41
42 Types:
43
44 This = wxFileDataObject()
45
46 Returns the array of file names.
47
48 destroy(This :: wxFileDataObject()) -> ok
49
50 Destroys the object.
51
52
53
54wxWidgets team. wx 2.2.1 wxFileDataObject(3)