gui/collects/embedded-gui/scribblings/alignment-parent.scrbl
Eli Barzilay 4f207d84ed Recketizing much in `net/*', mass ".ss" -> ".rkt" conversion in .scrbl files.
(Some other minor things here and there.)

original commit: debd1f9f1e6899e2a7e4ab5de929a49df490b5c7
2011-06-20 04:27:14 -04:00

23 lines
550 B
Racket

#lang scribble/doc
@(require "common.rkt")
@definterface/title[alignment-parent<%> ()]{
@defmethod[(get-pasteboard) (is-a?/c pasteboard%)]{
The pasteboard that this alignment is being displayed to.}
@defmethod[(add-child [child (is-a?/c alignment<%>)]) void?]{
Add the given alignment as a child after the existing child.}
@defmethod[(delete-child [child (is-a?/c alignment<%>)]) void?]{
Deletes a child from the alignments.}
@defmethod[(is-shown?) boolean?]{
True if the alignment is being shown (accounting for its parent being
shown).}}