]> gitweb.factorcode.org Git - factor.git/blob - basis/ui/gadgets/grid-lines/grid-lines-docs.factor
docs: change $subsection to $subsections
[factor.git] / basis / ui / gadgets / grid-lines / grid-lines-docs.factor
1 USING: ui.gadgets help.markup help.syntax ui.gadgets.grids
2 ui.pens colors ;
3 IN: ui.gadgets.grid-lines
4
5 HELP: grid-lines
6 { $class-description "A class implementing the " { $link draw-boundary } " generic word to draw lines between the cells of a " { $link grid } ". The color of the lines is an instance of " { $link color } ", stored in the " { $snippet "color" } " slot." }
7 { $notes "See " { $link "colors" } "." } ;
8
9 HELP: <grid-lines>
10 { $values { "color" color } { "grid-lines" grid-lines } }
11 { $description "Creates a new " { $link grid-lines } "." } ;
12
13 ARTICLE: "ui.gadgets.grid-lines" "Grid lines"
14 { $subsections
15     grid-lines
16     <grid-lines>
17 } ;
18
19 ABOUT: "ui.gadgets.grid-lines"