gui/collects/scribblings/framework/pasteboard.scrbl
Matthew Flatt ca73700157 adjust the way framework and tools docs extract documentation
svn: r10727

original commit: 01691d9240c55dc3797c17ab6d609b4c16145982
2008-07-12 15:37:31 +00:00

15 lines
722 B
Racket

#lang scribble/doc
@(require scribble/manual scribble/extract)
@(require (for-label framework))
@(require (for-label scheme/gui))
@title{Pasteboard}
@defclass[pasteboard:basic% (editor:basic-mixin pasteboard%) ()]{}
@defclass[pasteboard:standard-style-list% (editor:standard-style-list-mixin pasteboard:basic%) ()]{}
@defclass[pasteboard:keymap% (editor:keymap-mixin pasteboard:standard-style-list%) ()]{}
@defclass[pasteboard:file% (editor:file-mixin pasteboard:keymap%) ()]{}
@defclass[pasteboard:backup-autosave% (editor:backup-autosave-mixin pasteboard:file%) ()]{}
@defclass[pasteboard:info% (editor:info-mixin pasteboard:backup-autosave%) ()]{}
@(include-previously-extracted "main-extracts.ss" #rx"^pasteboard:")