1 USING: help.markup help.syntax strings ;
4 HELP: pasteboard-string?
5 { $values { "pasteboard" "an " { $snippet "NSPasteBoard" } } { "?" "a boolean" } }
6 { $description "Tests if the pasteboard holds a string." } ;
8 HELP: pasteboard-string
9 { $values { "pasteboard" "an " { $snippet "NSPasteBoard" } } { "str" string } }
10 { $description "Outputs the contents of the pasteboard." } ;
12 HELP: set-pasteboard-string
13 { $values { "str" string } { "pasteboard" "an " { $snippet "NSPasteBoard" } } }
14 { $description "Sets the contents of the pasteboard." } ;
16 ARTICLE: "cocoa-pasteboard-utils" "Cocoa pasteboard utilities"
17 { $subsection pasteboard-string? }
18 { $subsection pasteboard-string }
19 { $subsection set-pasteboard-string } ;
22 ABOUT: "cocoa-pasteboard-utils"