diff --git a/basis/ui/gadgets/buttons/buttons-docs.factor b/basis/ui/gadgets/buttons/buttons-docs.factor index 62e039632c..0844454301 100644 --- a/basis/ui/gadgets/buttons/buttons-docs.factor +++ b/basis/ui/gadgets/buttons/buttons-docs.factor @@ -17,13 +17,13 @@ HELP: { $values { "label" "a label specifier" } { "quot" { $quotation "( button -- )" } } { "button" button } } { $description "Creates a new " { $link button } " which is displayed with a solid border when it is under the mouse, informing the user that the gadget is clickable." } ; -HELP: +HELP: { $values { "label" "a label specifier" } { "quot" { $quotation "( button -- )" } } { "button" button } } -{ $description "Creates a new " { $link button } " with a shaded border which is always visible. The button appearance changes in response to mouse gestures using a " { $link button-pen } "." } ; +{ $description "Creates a new " { $link button } " with a border which is always visible. The button appearance changes in response to mouse gestures using a " { $link button-pen } "." } ; HELP: { $values { "label" object } { "quot" { $quotation "( button -- )" } } { "button" repeat-button } } -{ $description "Creates a new " { $link button } " derived from a " { $link } " which calls the quotation every 100 milliseconds as long as the mouse button is held down." } ; +{ $description "Creates a new " { $link button } " derived from a " { $link } " which calls the quotation every 100 milliseconds as long as the mouse button is held down." } ; HELP: button-pen { $class-description "A class implementing the " { $link draw-boundary } " and " { $link draw-interior } " gneeric words by delegating to an object in one of four slots which depend on the state of the button being drawn:" @@ -33,12 +33,12 @@ HELP: button-pen { { $snippet "pressed" } " - the button is under the mouse and a mouse button is held down" } { { $snippet "selected" } " - the button is selected (see " { $link } } } -"The " { $link } " and " { $link } " words create " { $link button } " instances with specific " { $link button-pen } "." } ; +"The " { $link } " and " { $link } " words create " { $link button } " instances with specific " { $link button-pen } "." } ; HELP: { $values { "model" model } { "value" object } { "label" "a label specifier" } { "gadget" gadget } } { $description - "Creates a " { $link } " which sets the model's value to " { $snippet "value" } " when pressed. After being pressed, the button becomes selected until the value of the model changes again." + "Creates a " { $link } " which sets the model's value to " { $snippet "value" } " when pressed. After being pressed, the button becomes selected until the value of the model changes again." } { $notes "Typically a row of radio controls should be built together using " { $link } "." } ; @@ -48,7 +48,7 @@ HELP: HELP: { $values { "target" object } { "gesture" "a gesture" } { "command" "a command" } { "button" "a new " { $link button } } } -{ $description "Creates a " { $link } " which invokes the command on " { $snippet "target" } " when clicked." } ; +{ $description "Creates a " { $link } " which invokes the command on " { $snippet "target" } " when clicked." } ; HELP: { $values { "target" object } { "toolbar" gadget } } @@ -60,7 +60,7 @@ ARTICLE: "ui.gadgets.buttons" "Button gadgets" "There are many ways to create a new button:" { $subsection