checkpoint new GUI toolbox docs
svn: r7109 original commit: c7c3d60b1666fcd4b1dba547bb7c64e7d61447ac
This commit is contained in:
parent
96172c025d
commit
6d55647707
|
@ -314,6 +314,16 @@
|
||||||
[else (error 'html-render "unrecognized style symbol: ~e" style)])]
|
[else (error 'html-render "unrecognized style symbol: ~e" style)])]
|
||||||
[(string? style)
|
[(string? style)
|
||||||
`((span ([class ,style]) ,@(super render-element e part ht)))]
|
`((span ([class ,style]) ,@(super render-element e part ht)))]
|
||||||
|
[(and (pair? style)
|
||||||
|
(eq? (car style) 'show-color))
|
||||||
|
`((font ((style ,(format "background-color: ~a"
|
||||||
|
(apply string-append "#"
|
||||||
|
(map (lambda (v) (let ([s (format "0~x" v)])
|
||||||
|
(substring s (- (string-length s) 2))))
|
||||||
|
(cdr style))))))
|
||||||
|
(tt nbsp nbsp nbsp nbsp nbsp))
|
||||||
|
nbsp
|
||||||
|
,@(super render-element e part ht))]
|
||||||
[(target-url? style)
|
[(target-url? style)
|
||||||
(if (current-no-links)
|
(if (current-no-links)
|
||||||
(super render-element e part ht)
|
(super render-element e part ht)
|
||||||
|
|
|
@ -480,6 +480,20 @@
|
||||||
|
|
||||||
(define max-proto-width 65)
|
(define max-proto-width 65)
|
||||||
|
|
||||||
|
(define (name-this-object type-sym)
|
||||||
|
(to-element
|
||||||
|
(string->symbol
|
||||||
|
(regexp-replace
|
||||||
|
#rx"(%|<%>|-mixin)$"
|
||||||
|
(format "_a~a-~s"
|
||||||
|
(if (member
|
||||||
|
(string-ref (symbol->string type-sym) 0)
|
||||||
|
'(#\a #\e #\i #\o #\u))
|
||||||
|
"n"
|
||||||
|
"")
|
||||||
|
type-sym)
|
||||||
|
""))))
|
||||||
|
|
||||||
(define (*defproc mode within-id
|
(define (*defproc mode within-id
|
||||||
stx-ids prototypes arg-contractss result-contracts content-thunk)
|
stx-ids prototypes arg-contractss result-contracts content-thunk)
|
||||||
(let ([spacer (hspace 1)]
|
(let ([spacer (hspace 1)]
|
||||||
|
@ -564,17 +578,7 @@
|
||||||
(make-element #f
|
(make-element #f
|
||||||
(list (scheme send)
|
(list (scheme send)
|
||||||
(hspace 1)
|
(hspace 1)
|
||||||
(to-element (string->symbol
|
(name-this-object (syntax-e within-id))
|
||||||
(regexp-replace
|
|
||||||
#rx"(%|<%>|-mixin)$"
|
|
||||||
(format "a~a-~s"
|
|
||||||
(if (member
|
|
||||||
(string-ref (symbol->string (syntax-e within-id)) 0)
|
|
||||||
'(#\a #\e #\i #\o #\u))
|
|
||||||
"n"
|
|
||||||
"")
|
|
||||||
(syntax-e within-id))
|
|
||||||
"")))
|
|
||||||
(hspace 1)
|
(hspace 1)
|
||||||
(if first?
|
(if first?
|
||||||
(let* ([mname (car prototype)]
|
(let* ([mname (car prototype)]
|
||||||
|
@ -1225,6 +1229,7 @@
|
||||||
defmethod*
|
defmethod*
|
||||||
methspec
|
methspec
|
||||||
methimpl
|
methimpl
|
||||||
|
this-obj
|
||||||
include-class)
|
include-class)
|
||||||
|
|
||||||
(define-syntax-parameter current-class #f)
|
(define-syntax-parameter current-class #f)
|
||||||
|
@ -1417,5 +1422,14 @@
|
||||||
(syntax-rules ()
|
(syntax-rules ()
|
||||||
[(_ body ...) (make-spec (lambda () (list (italic "Specification:") body ...)))]))
|
[(_ body ...) (make-spec (lambda () (list (italic "Specification:") body ...)))]))
|
||||||
|
|
||||||
|
(define (*this-obj cname)
|
||||||
|
(name-this-object cname))
|
||||||
|
|
||||||
|
(define-syntax (this-obj stx)
|
||||||
|
(syntax-case stx ()
|
||||||
|
[(_)
|
||||||
|
(with-syntax ([cname (syntax-parameter-value #'current-class)])
|
||||||
|
#'(*this-obj 'cname))]))
|
||||||
|
|
||||||
;; ----------------------------------------
|
;; ----------------------------------------
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user