Description Usage Arguments Value
Basically an entry box instance with a button to initiate gfile
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | gfile(
text = "",
type = c("open", "save", "selectdir"),
initial.filename = NULL,
initial.dir = getwd(),
filter = list(),
multi = FALSE,
...,
toolkit = guiToolkit()
)
.gfile(
toolkit,
text = "",
type = c("open", "save", "selectdir"),
initial.filename = NULL,
initial.dir = getwd(),
filter = list(),
multi = FALSE,
...
)
gfilebrowse(
text = "Select a file...",
type = c("open", "save", "selectdir"),
initial.filename = NULL,
initial.dir = getwd(),
filter = list(),
quote = TRUE,
handler = NULL,
action = NULL,
container = NULL,
...,
toolkit = guiToolkit()
)
.gfilebrowse(
toolkit,
text = "Select a file...",
type = c("open", "save", "selectdir"),
initial.filename = NULL,
initial.dir = getwd(),
filter = list(),
quote = TRUE,
handler = NULL,
action = NULL,
container = NULL,
...
)
|
text |
initial text |
type |
type of browser: to open a file, to save a file or to select a directory |
initial.filename |
Suggested file name |
initial.dir |
initial directory. If a filename is given, and is not an absolute name, this will be prepended. If filename given initial directory will be taken from that. |
filter |
A filter specifiation. This can be a named character vector of file extensions or something toolkit specific. Here are some examples:
|
multi |
Logical. Allow multiple files to be selected? |
... |
These values are passed to the |
toolkit |
Each widget constructor is passed in the toolkit it
will use. This is typically done using the default, which will
lookup the toolkit through |
quote |
quote output |
handler |
A handler assigned to the default change
signal. Handlers are called when some event triggers a widget to
emit a signal. For each widget some default signal is assumed, and
handlers may be assigned to that through Handlers may also be added via |
action |
User supplied data passed to the handler when it is called |
container |
A parent container. When a widget is created it can be incorporated into the widget heirarchy by passing in a parent container at construction time. (For some toolkits this is not optional, e.g. gWidgets2tcltk or gWidgets2WWW2.) |
returns filename(s) or character(0)
if no selection.
Returns an object of class gFilebrowse
. This should
inherit the methods of gedit
instances.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.