| Home | Trees | Index | Help |
|
|---|
| Package wx :: Class FileDataObject |
|
object--+ |DataObject--+ |DataObjectSimple--+ | FileDataObject
wx.FileDataObject is a specialization of wx.DataObjectSimple for
file names. The program works with it just as if it were a list of
absolute file names, but internally it uses the same format as
Explorer and other compatible programs under Windows or GNOME/KDE
filemanager under Unix which makes it possible to receive files from
them using this class.
| Method Summary | |
|---|---|
| DataObjectSimple |
Constructor accepts the supported format (none by default) which may also be set later with SetFormat. |
__repr__(self)
| |
Adds a file to the list of files represented by this data object. | |
| [names] |
Returns a list of file names. |
| Inherited from DataObjectSimple | |
| String |
Returns the data bytes from the data object as a string, returns None on failure. |
| size_t |
Get the size of our data. |
| DataFormat |
Returns the (one and only one) format supported by this object. |
| bool |
Copy the data value to the data object. |
Sets the supported format. | |
| Inherited from DataObject | |
| |
| [formats] |
Returns a list of all the wx.DataFormats that this dataobject supports in the given direction. |
| size_t |
Returns the number of available formats for rendering or setting the data. |
| DataFormat |
Returns the preferred format for either rendering the data (if dir is Get, its default value) or for setting it. |
| bool |
Returns True if this format is supported. |
| Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
Return hash(x)... | |
Return a new object with type S, a subtype of T... | |
helper for pickle | |
helper for pickle | |
x.__setattr__('name', value) <==> x.name = value | |
Return str(x)... | |
| Class Variable Summary | |
|---|---|
| Inherited from DataObject | |
int |
Both = 3 |
int |
Get = 1 |
int |
Set = 2 |
| Method Details |
|---|
__init__(self)
|
AddFile(self, filename)Adds a file to the list of files represented by this data object.
|
GetFilenames(self)Returns a list of file names.
|
| Home | Trees | Index | Help |
|
|---|
| Generated by Epydoc 2.1.20050511.rpd on Sat Jun 16 17:04:57 2007 | http://epydoc.sf.net |