table of contents
other versions
- jessie 1:17.3-dfsg-4+deb8u2
- jessie-backports 1:19.2.1+dfsg-2+deb9u1~bpo8+1
- stretch 1:19.2.1+dfsg-2+deb9u2
- testing 1:21.2.5+dfsg-1
- unstable 1:21.2.6+dfsg-1
- experimental 1:22.0~rc1+dfsg-1
wxFileDialog(3erl) | Erlang Module Definition | wxFileDialog(3erl) |
NAME¶
wxFileDialog - See external documentation: wxFileDialog.DESCRIPTION¶
See external documentation: wxFileDialog. This class is derived (and can use functions) from:DATA TYPES¶
- wxFileDialog():
An object reference, The representation is internal and can be changed without
notice. It can't be used for comparsion stored on disc or distributed for use
on other nodes.
EXPORTS¶
new(Parent) -> wxFileDialog()
Types:
Parent = wxWindow() (see module wxWindow)
Equivalent to new(Parent, []).
new(Parent, Option::[Option]) -> wxFileDialog()
Types:
Parent = wxWindow() (see module wxWindow)
Option = {message, chardata() (see module unicode)} | {defaultDir, chardata()
(see module unicode)} | {defaultFile, chardata() (see module unicode)} |
{wildCard, chardata() (see module unicode)} | {style, integer()} | {pos,
{X::integer(), Y::integer()}} | {sz, {W::integer(), H::integer()}}
See external documentation.
getDirectory(This) -> charlist() (see module unicode)
Types:
This = wxFileDialog()
See external documentation.
getFilename(This) -> charlist() (see module unicode)
Types:
This = wxFileDialog()
See external documentation.
getFilenames(This) -> [charlist() (see module unicode)]
Types:
This = wxFileDialog()
See external documentation.
getFilterIndex(This) -> integer()
Types:
This = wxFileDialog()
See external documentation.
getMessage(This) -> charlist() (see module unicode)
Types:
This = wxFileDialog()
See external documentation.
getPath(This) -> charlist() (see module unicode)
Types:
This = wxFileDialog()
See external documentation.
getPaths(This) -> [charlist() (see module unicode)]
Types:
This = wxFileDialog()
See external documentation.
getWildcard(This) -> charlist() (see module unicode)
Types:
This = wxFileDialog()
See external documentation.
setDirectory(This, Dir) -> ok
Types:
This = wxFileDialog()
Dir = chardata() (see module unicode)
See external documentation.
setFilename(This, Name) -> ok
Types:
This = wxFileDialog()
Name = chardata() (see module unicode)
See external documentation.
setFilterIndex(This, FilterIndex) -> ok
Types:
This = wxFileDialog()
FilterIndex = integer()
See external documentation.
setMessage(This, Message) -> ok
Types:
This = wxFileDialog()
Message = chardata() (see module unicode)
See external documentation.
setPath(This, Path) -> ok
Types:
This = wxFileDialog()
Path = chardata() (see module unicode)
See external documentation.
setWildcard(This, WildCard) -> ok
Types:
This = wxFileDialog()
WildCard = chardata() (see module unicode)
See external documentation.
destroy(This::wxFileDialog()) -> ok
Destroys this object, do not use object again
AUTHORS¶
<>wx 1.3.1 |