Recketizing much in `net/*', mass ".ss" -> ".rkt" conversion in .scrbl files.

(Some other minor things here and there.)

original commit: debd1f9f1e6899e2a7e4ab5de929a49df490b5c7
This commit is contained in:
Eli Barzilay 2011-06-20 04:00:14 -04:00
parent 42babf1e93
commit 4f207d84ed
189 changed files with 214 additions and 282 deletions

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[aligned-pasteboard% pasteboard% (alignment-parent<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[alignment-parent<%> ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[alignment<%> (dllist<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[button-snip% snip% ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@title[#:tag "containers" #:style 'toc]{Containers}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@title[#:tag "control-snips" #:style 'toc]{Control Snips}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@title[#:tag "controls" #:style 'toc]{Controls}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[dllist<%> ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[embedded-button% snip-wrapper% (alignment<%>)]{

View File

@ -1,6 +1,5 @@
#lang scribble/doc
@(require "common.ss"
(for-label framework))
@(require "common.rkt" (for-label framework))
@title{@bold{Embedded GUI}: Widgets within @scheme[editor<%>]}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[embedded-message% snip-wrapper% ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[embedded-text-button% snip-wrapper% (alignment<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[embedded-toggle-button% snip-wrapper% (alignment<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[hline% snip-wrapper% (alignment<%>)]{
@ -8,4 +8,3 @@ Displays a horizontal line across the region that is inserted into.
@defconstructor[([parent (is-a?/c alignment-parent<%>)])]{
}
}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[horizontal-alignment% dllist<%> (alignment<%> alignment-parent<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@title[#:tag "snip-related-functions"]{Snip Functions}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[snip-wrapper% dllist<%> (alignment<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[stretchable-snip<%> ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[text-button-snip% snip% ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[toggle-button-snip% snip% ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[vertical-alignment% dllist<%> (alignment<%> alignment-parent<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[vline% snip-wrapper% (alignment<%>)]{
@ -8,4 +8,3 @@ Displays a vertical line across the region that is inserted into.
@defconstructor[([parent (is-a?/c alignment-parent<%>)])]{
}
}

View File

@ -1,11 +1,7 @@
(require
mzlib/class
mzlib/list
mred
mzlib/etc
"../aligned-editor-container.ss"
"../aligned-pasteboard.ss"
"../snip-lib.ss")
(require mzlib/class mzlib/list mred mzlib/etc
"../aligned-editor-container.rkt"
"../aligned-pasteboard.rkt"
"../snip-lib.rkt")
(define f (new frame% (label "test") (width 200) (height 200)))
(define e (new text%))

View File

@ -1,10 +1,9 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[aligned-editor-canvas% editor-canvas% ()]{
Calls the
Calls the
@method[aligned-pasteboard<%> realign] method when resized.
}

View File

@ -1,9 +1,8 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[aligned-editor-snip% editor-snip% ()]{
Calls the @method[aligned-pasteboard<%> realign] method when resized.
}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[aligned-pasteboard<%> ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[aligned-pasteboard-parent<%> ()]{
@ -10,4 +10,3 @@ is an @scheme[aligned-pasteboard<%>].
void?]{}
}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "../common.ss")
@(require "../common.rkt")
@title[#:style 'toc]{Aligned Pasteboard}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[horizontal-pasteboard% pasteboard% (aligned-pasteboard<%>)]{
@ -28,4 +28,3 @@ Passes all arguments to @scheme[super-init].
(resized [snip (is-a?/c snip%)]
[redraw-now? any/c])
void?]{}}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[stretchable-snip<%> ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[vertical-pasteboard% pasteboard% (aligned-pasteboard<%>)]{

View File

@ -1,6 +1,5 @@
#lang scribble/doc
@(require "common.ss"
(for-label mrlib/bitmap-label))
@(require "common.rkt" (for-label mrlib/bitmap-label))
@title{Bitmap Label}

View File

@ -1,14 +1,13 @@
#lang scribble/doc
@(require "common.ss"
(for-label mrlib/cache-image-snip))
@(require "common.rkt" (for-label mrlib/cache-image-snip))
@title{Cache-image Snip}
@defmodule[mrlib/cache-image-snip]{
The @schememodname[mrlib/cache-image-snip] library provides the core
data structure for DrRacket's @filepath{image.ss} teachpack. Images in
the @filepath{image.ss} teachpack are instances of the
data structure for DrRacket's @filepath{image.rkt} teachpack. Images in
the @filepath{image.rkt} teachpack are instances of the
@scheme[cache-image-snip%] class.}
The library also defines a new type, @scheme[argb], that represents a

View File

@ -1,9 +1,7 @@
#lang scribble/doc
@(require "common.ss"
@(require "common.rkt"
(for-label mrlib/close-icon
scheme/gui
scheme/runtime-path
scheme/include))
scheme/gui scheme/runtime-path scheme/include))
@title{Close Icon}

View File

@ -1,7 +1,5 @@
#lang scribble/doc
@(require "common.ss"
(for-label mrlib/gif
file/gif))
@(require "common.rkt" (for-label mrlib/gif file/gif))
@title{GIF and Animated GIF Writing}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[graph-pasteboard<%> ()]{
@ -121,4 +121,3 @@ of an arrowhead for a line that connects (@scheme[from-x],@scheme[from-y]) to (@
}
}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defmixin/title[graph-pasteboard-mixin (pasteboard%) (graph-pasteboard<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[graph-snip<%> ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defmixin/title[graph-snip-mixin (snip%) (graph-snip<%>)]{
}

View File

@ -1,6 +1,5 @@
#lang scribble/doc
@(require "common.ss"
(for-label mrlib/graph))
@(require "common.rkt" (for-label mrlib/graph))
@title[#:style 'toc]{Graphs}

View File

@ -1,6 +1,5 @@
#lang scribble/doc
@(require "../common.ss"
(for-label mrlib/hierlist))
@(require "../common.rkt" (for-label mrlib/hierlist))
@definterface/title[hierarchical-list-compound-item<%>
(hierarchical-list-item<%>)]{

View File

@ -1,6 +1,5 @@
#lang scribble/doc
@(require "../common.ss"
(for-label mrlib/hierlist))
@(require "../common.rkt" (for-label mrlib/hierlist))
@title[#:style 'toc]{Hierarchical List Control}

View File

@ -1,6 +1,5 @@
#lang scribble/doc
@(require "../common.ss"
(for-label mrlib/hierlist))
@(require "../common.rkt" (for-label mrlib/hierlist))
@definterface/title[hierarchical-list-item<%> ()]{

View File

@ -1,6 +1,5 @@
#lang scribble/doc
@(require "../common.ss"
(for-label mrlib/hierlist))
@(require "../common.rkt" (for-label mrlib/hierlist))
@defclass/title[hierarchical-list% editor-canvas% ()]{

View File

@ -1,6 +1,5 @@
#lang scribble/doc
@(require "../common.ss"
(for-label mrlib/hierlist))
@(require "../common.rkt" (for-label mrlib/hierlist))
@title{Snips in a @scheme[hierarchical-list%] Instance}

View File

@ -1,6 +1,5 @@
#lang scribble/doc
@(require "common.ss"
(for-label mrlib/image-core))
@(require "common.rkt" (for-label mrlib/image-core))
@title{Image Core}
@ -36,4 +35,4 @@ up an image.
Ordinarily, the image's bitmap cache is computed the first time
the image is actually rendered.
}
}

View File

@ -1,8 +1,6 @@
#lang scribble/doc
@(require "common.ss"
(for-label mrlib/include-bitmap
scheme/runtime-path
scheme/include))
@(require "common.rkt"
(for-label mrlib/include-bitmap scheme/runtime-path scheme/include))
@title{Include Bitmap}

View File

@ -1,7 +1,5 @@
#lang scribble/doc
@(require "common.ss"
(for-label mrlib/interactive-value-port
scheme/pretty))
@(require "common.rkt" (for-label mrlib/interactive-value-port scheme/pretty))
@title{Interactive Value Port}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss"
@(require "common.rkt"
(for-label mrlib/matrix-snip
(only-in mrlib/cache-image-snip
cache-image-snip%)))

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@title{@bold{MrLib}: Extra GUI Libraries}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss"
@(require "common.rkt"
(for-label mrlib/name-message))
@title{Name Message}
@ -151,4 +151,4 @@ of the button.}
and the width and height of the text, and the results
are the x and y coordinates where the shape should be
drawn and the width and height of the overall shape.
}
}

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss"
@(require "common.rkt"
(for-label mrlib/path-dialog))
@title{Path Dialog}
@ -76,7 +76,7 @@ The @scheme[filters] argument is one of:
@item{@scheme[(list (list _filter-name _filter-glob) ...)] --- a
list of pattern names (e.g., @scheme["Scheme Files"]) and glob
patterns (e.g., @scheme["*.scm;*.ss"]). Any list, including an
patterns (e.g., @scheme["*.rkt;*.scrbl"]). Any list, including an
empty list, enables a filter box for the user to enter glob
patterns, and the given list of choices is available in a
combo-box drop-down menu. Glob patterns are the usual Unix ones

View File

@ -1,6 +1,5 @@
#lang scribble/doc
@(require "common.ss"
(for-label mrlib/plot))
@(require "common.rkt" (for-label mrlib/plot))
@title{Plot}

View File

@ -1,6 +1,5 @@
#lang scribble/doc
@(require "common.ss"
(for-label mrlib/switchable-button))
@(require "common.rkt" (for-label mrlib/switchable-button))
@title{Switchable Button}

View File

@ -1,13 +1,12 @@
#lang scribble/doc
@(require "common.ss"
(for-label mrlib/switchable-button))
@(require "common.rkt" (for-label mrlib/switchable-button))
@title{TeX Table}
@defmodule[mrlib/tex-table]
@defthing[tex-shortcut-table
(listof
(listof
(list/c string?
(lambda (x)
(and (string? x)

View File

@ -5,4 +5,4 @@
@title{Application}
@(include-previously-extracted "main-extracts.ss" #rx"^application:")
@(include-previously-extracted "main-extracts.rkt" #rx"^application:")

View File

@ -8,11 +8,8 @@
Classes that implement this interface can be autosaved.
@defmethod*[(((do-autosave) void?))]{
This method is called when the object is registered to be
autosaved (see
@scheme[autosave:register]).
autosaved (see @scheme[autosave:register]).
}
}
@(include-previously-extracted "main-extracts.ss" #rx"^autosave:")
@(include-previously-extracted "main-extracts.rkt" #rx"^autosave:")

View File

@ -99,4 +99,4 @@
@defclass[canvas:delegate% (canvas:delegate-mixin canvas:basic%) ()]{}
@defclass[canvas:wide-snip% (canvas:wide-snip-mixin canvas:basic%) ()]{}
@(include-previously-extracted "main-extracts.ss" #rx"^canvas:")
@(include-previously-extracted "main-extracts.rkt" #rx"^canvas:")

View File

@ -4,5 +4,4 @@
@(require (for-label scheme/gui))
@title{Color Model}
@(include-previously-extracted "main-extracts.ss" #rx"^color-model:")
@(include-previously-extracted "main-extracts.rkt" #rx"^color-model:")

View File

@ -4,5 +4,4 @@
@(require (for-label scheme/gui))
@title{Color Prefs}
@(include-previously-extracted "main-extracts.ss" #rx"^color-prefs:")
@(include-previously-extracted "main-extracts.rkt" #rx"^color-prefs:")

View File

@ -285,4 +285,4 @@
}
@defclass[color:text-mode% (color:text-mode-mixin mode:surrogate-text%) ()]{}
@(include-previously-extracted "main-extracts.ss" #rx"^color:")
@(include-previously-extracted "main-extracts.rkt" #rx"^color:")

View File

@ -45,4 +45,4 @@
}
}
@(include-previously-extracted "main-extracts.ss" #rx"^comment-box:")
@(include-previously-extracted "main-extracts.rkt" #rx"^comment-box:")

View File

@ -454,23 +454,19 @@
}
}
@definterface[editor:info<%> (editor:basic<%>)]{
An
@scheme[editor<%>]
An @scheme[editor<%>]
matching this interface provides information about its lock state to its
@scheme[top-level-window<%>].
}
@defmixin[editor:info-mixin (editor:basic<%>) (editor:info<%>)]{
This editor tells the frame when it is locked and unlocked.
See also
@scheme[frame:text-info<%>].
See also @scheme[frame:text-info<%>].
@defmethod*[#:mode override (((lock (lock? boolean?)) void?))]{
Uses
@method[editor:basic<%> run-after-edit-sequence]
to call
@method[frame:info<%> lock-status-changed].
Uses @method[editor:basic<%> run-after-edit-sequence]
to call @method[frame:info<%> lock-status-changed].
}
}
@(include-previously-extracted "main-extracts.ss" #rx"^editor:")
@(include-previously-extracted "main-extracts.rkt" #rx"^editor:")

View File

@ -4,5 +4,4 @@
@(require (for-label scheme/gui))
@title{Exit}
@(include-previously-extracted "main-extracts.ss" #rx"^exit:")
@(include-previously-extracted "main-extracts.rkt" #rx"^exit:")

View File

@ -4,5 +4,4 @@
@(require (for-label scheme/gui))
@title{Finder}
@(include-previously-extracted "main-extracts.ss" #rx"^finder:")
@(include-previously-extracted "main-extracts.rkt" #rx"^finder:")

View File

@ -1049,4 +1049,4 @@
@defclass[frame:delegate% (frame:delegate-mixin frame:searchable%) ()]{}
@defclass[frame:pasteboard% (frame:pasteboard-mixin frame:open-here%) ()]{}
@(include-previously-extracted "main-extracts.ss" #rx"^frame:")
@(include-previously-extracted "main-extracts.rkt" #rx"^frame:")

View File

@ -121,4 +121,4 @@
}
}
@(include-previously-extracted "main-extracts.ss" #rx"^group:")
@(include-previously-extracted "main-extracts.rkt" #rx"^group:")

View File

@ -6,4 +6,4 @@
@defmodule*/no-declare[(framework/gui-utils)]
@declare-exporting[framework/gui-utils framework]
@(include-extracted (lib "gui-utils.ss" "framework"))
@(include-extracted (lib "gui-utils.rkt" "framework"))

View File

@ -4,5 +4,4 @@
@(require (for-label scheme/gui))
@title{Handler}
@(include-previously-extracted "main-extracts.ss" #rx"^handler:")
@(include-previously-extracted "main-extracts.rkt" #rx"^handler:")

View File

@ -4,5 +4,4 @@
@(require (for-label scheme/gui))
@title{Icon}
@(include-previously-extracted "main-extracts.ss" #rx"^icon:")
@(include-previously-extracted "main-extracts.rkt" #rx"^icon:")

View File

@ -42,4 +42,4 @@
}
@defclass[keymap:aug-keymap% (keymap:aug-keymap-mixin keymap%) ()]{}
@(include-previously-extracted "main-extracts.ss" #rx"^keymap:")
@(include-previously-extracted "main-extracts.rkt" #rx"^keymap:")

View File

@ -4,5 +4,4 @@
@(require (for-label scheme/gui))
@title{Main}
@(include-previously-extracted "main-extracts.ss" #rx"^main:")
@(include-previously-extracted "main-extracts.rkt" #rx"^main:")

View File

@ -45,4 +45,4 @@
@defclass[menu:can-restore-checkable-menu-item% (menu:can-restore-mixin checkable-menu-item%) ()]{}
@defclass[menu:can-restore-underscore-menu% (menu:can-restore-underscore-mixin menu%) ()]{}
@(include-previously-extracted "main-extracts.ss" #rx"^menu:")
@(include-previously-extracted "main-extracts.rkt" #rx"^menu:")

View File

@ -1,8 +1,7 @@
#lang scribble/doc
@(require scribble/manual scribble/extract)
@(require (for-label framework))
@(require (for-label scheme/gui))
@(require (for-syntax "mode-helpers.ss"))
@(require scribble/manual scribble/extract
(for-label framework scheme/gui)
(for-syntax "mode-helpers.rkt"))
@title{Mode}
@(begin
@ -43,4 +42,4 @@
(surrogate-methods docs)
)
@(include-previously-extracted "main-extracts.ss" #rx"^mode:")
@(include-previously-extracted "main-extracts.rkt" #rx"^mode:")

View File

@ -12,4 +12,4 @@
}
}
@(include-previously-extracted "main-extracts.ss" #rx"^number-snip:")
@(include-previously-extracted "main-extracts.rkt" #rx"^number-snip:")

View File

@ -209,4 +209,4 @@
}
@(include-previously-extracted "main-extracts.ss" #rx"^panel:")
@(include-previously-extracted "main-extracts.rkt" #rx"^panel:")

View File

@ -11,4 +11,4 @@
@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:")
@(include-previously-extracted "main-extracts.rkt" #rx"^pasteboard:")

View File

@ -4,5 +4,4 @@
@(require (for-label scheme/gui))
@title{Path Utils}
@(include-previously-extracted "main-extracts.ss" #rx"^path-utils:")
@(include-previously-extracted "main-extracts.rkt" #rx"^path-utils:")

View File

@ -7,4 +7,4 @@
@defmodule*/no-declare[(framework/preferences)]
@declare-exporting[framework/preferences framework]
@(include-extracted (lib "preferences.ss" "framework"))
@(include-extracted (lib "preferences.rkt" "framework"))

View File

@ -4,5 +4,4 @@
@(require (for-label scheme/gui))
@title{Preferences}
@(include-previously-extracted "main-extracts.ss" #rx"^preferences:")
@(include-previously-extracted "main-extracts.rkt" #rx"^preferences:")

View File

@ -254,4 +254,4 @@
()]{}
@defclass[scheme:text-mode% (scheme:text-mode-mixin color:text-mode%) ()]{}
@(include-previously-extracted "main-extracts.ss" #rx"^scheme:")
@(include-previously-extracted "main-extracts.rkt" #rx"^scheme:")

View File

@ -110,8 +110,8 @@ but not in X windows.
In X windows, you must explicitly tell your window manager to set the
keyboard focus to the top-most frame, regardless of the position of the
actual mouse.
actual mouse.
@section{Test Functions}
@(include-extracted (lib "test.ss" "framework"))
@(include-extracted (lib "test.rkt" "framework"))

View File

@ -1216,19 +1216,16 @@
}
@defmethod*[(((show-line-numbers! (show boolean?)) void?))]{
Enables or disables line number drawing.
}
@defmethod*[(((show-line-numbers?) boolean?))]{
@defmethod*[(((show-line-numbers?) boolean?))]{
Returns whether or not line drawing is enabled.
}
@defmethod*[(((set-line-numbers-color (color string?)) void?))]{
@defmethod*[(((set-line-numbers-color (color string?)) void?))]{
Sets the color of the line numbers.
}
}
@(include-previously-extracted "main-extracts.ss" #rx"^text:")
@(include-previously-extracted "main-extracts.rkt" #rx"^text:")

View File

@ -4,5 +4,4 @@
@(require (for-label scheme/gui))
@title{Version}
@(include-previously-extracted "main-extracts.ss" #rx"^version:")
@(include-previously-extracted "main-extracts.rkt" #rx"^version:")

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[add-color<%> ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[area-container<%> (area<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[area-container-window<%> (area-container<%> window<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[area<%> ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[button% object% (control<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[canvas% object% (canvas<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[canvas<%> (subwindow<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[check-box% object% (control<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[checkable-menu-item% object% (selectable-menu-item<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[choice% object% (list-control<%>)]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[clipboard-client% object% ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[clipboard<%> ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[column-control-event% control-event% ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[combo-field% text-field% ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@defclass/title[control-event% event% ()]{

View File

@ -1,5 +1,5 @@
#lang scribble/doc
@(require "common.ss")
@(require "common.rkt")
@definterface/title[control<%> (subwindow<%>)]{

Some files were not shown because too many files have changed in this diff Show More