racket/collects/embedded-gui/scribblings/alignment-parent.scrbl
Matthew Flatt 6fcc293c4a embedded-gui docs
svn: r9389
2008-04-21 20:51:23 +00:00

23 lines
553 B
Racket

#lang scribble/doc
@(require "common.ss")
@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 the alignments.}
@defmethod[(is-shown?) boolean?]{
True if the alignment is being shown (accounting for its parent being
shown).}}