19 lines
698 B
Plaintext
19 lines
698 B
Plaintext
IN: cocoa
|
|
USING: help ;
|
|
|
|
HELP: <NSOpenPanel>
|
|
{ $values { "panel" "an " { $snippet "NSOpenPanel" } } }
|
|
{ $description "Creates a new " { $snippet "NSOpenPanel" } "." } ;
|
|
|
|
HELP: <NSSavePanel>
|
|
{ $values { "panel" "an " { $snippet "NSSavePanel" } } }
|
|
{ $description "Creates a new " { $snippet "NSSavePanel" } "." } ;
|
|
|
|
HELP: open-panel
|
|
{ $values { "paths" "a sequence of pathname strings" } }
|
|
{ $description "Displays a file open panel, and outputs a sequence of selected pathnames." } ;
|
|
|
|
HELP: save-panel
|
|
{ $values { "path" "a pathname string, or " { $link f } } }
|
|
{ $description "Displays a file save panel, and outputs the selected path, or " { $link f } " if the user cancelled the operation." } ;
|