]> gitweb.factorcode.org Git - factor.git/blob - extra/ui/gadgets/slate/slate-docs.factor
Updating meta-data
[factor.git] / extra / ui / gadgets / slate / slate-docs.factor
1 ! Copyright (C) 2009 Eduardo Cavazos
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax multiline ;
4 IN: ui.gadgets.slate
5
6 ARTICLE: "ui.gadgets.slate" "Slate gadget"
7 { $description "A gadget with an 'action' slot which should be set to a callable."}
8 { $heading "Example" }
9 { $code <" USING: processing.shapes ui.gadgets.slate ui.gadgets.panes ;
10 [ { { 10 10 } { 50 30 } { 10 50 } } polygon fill-mode ] <slate>
11 gadget."> } ;
12
13 ABOUT: "ui.gadgets.slate"