add #:close-button?, #:canvas-min-width, and #:canvas-min-height

arguments to in-terminal
This commit is contained in:
Robby Findler 2013-05-11 16:18:04 -05:00
parent 15408f0c7b
commit 19c1c02823
2 changed files with 40 additions and 17 deletions

View File

@ -15,7 +15,10 @@ in command-line scripts.}
[#:cleanup-thunk cleanup-thunk (-> void?) void]
[#:title title string? "mrlib/terminal"]
[#:abort-label abort-label string? (string-constant plt-installer-abort-installation)]
[#:aborted-message aborted-message string? (string-constant plt-installer-aborted)])
[#:aborted-message aborted-message string? (string-constant plt-installer-aborted)]
[#:canvas-min-width canvas-min-width (or/c #f (integer-in 0 10000)) #f]
[#:canvas-min-height canvas-min-height (or/c #f (integer-in 0 10000)) #f]
[#:close-button? close-button? boolean? #t])
(is-a?/c terminal<%>)]{
Creates a GUI, sets up the current error and output ports to
@ -42,7 +45,10 @@ in command-line scripts.}
In addition to the I/O generated by @racket[doit], the generated GUI
contains two buttons: the abort button (with label
@racket[abort-label]) and the close button (with label
@racket[(string-constant close)]). When the abort button is pushed,
@racket[(string-constant close)]). The close button is present only
if @racket[close-button?] is @racket[#t].
When the abort button is pushed,
the newly created custodian is shut down and the
@racket[aborted-message] is printed in the dialog. The close button
becomes active when @racket[doit] returns or when the thread running
@ -52,6 +58,11 @@ in command-line scripts.}
the frame; otherwise, the close button causes the container created
for the terminal's GUI to be removed from its parent.
The @racket[canvas-min-width] and @racket[canvas-min-height] are passed
to the @racket[_min-width] and @racket[_min-height] initialization arguments
of the @racket[editor-canvas%] object that holds the output generated
by @racket[doit].
The value of @racket[on-terminal-run] is invoked after @racket[doit]
returns, but not if it is aborted or an exception is raised.
}

View File

@ -10,10 +10,13 @@
[on-terminal-run (parameter/c (-> void?))]
[in-terminal (->* ((-> eventspace? (or/c #f (is-a?/c top-level-window<%>)) void?))
(#:container (is-a?/c area-container<%>)
#:title string?
#:abort-label string?
#:aborted-message string?
#:cleanup-thunk (-> void?))
#:title string?
#:abort-label string?
#:aborted-message string?
#:cleanup-thunk (-> void?)
#:canvas-min-width (or/c #f exact-nonnegative-integer?)
#:canvas-min-height (or/c #f exact-nonnegative-integer?)
#:close-button? boolean?)
(is-a?/c terminal<%>))])
terminal<%>)
@ -35,7 +38,10 @@
#:title [title "mrlib/terminal"]
#:abort-label [abort-label (string-constant plt-installer-abort-installation)]
#:aborted-message [aborted-message (string-constant plt-installer-aborted)]
#:cleanup-thunk [cleanup-thunk void])
#:cleanup-thunk [cleanup-thunk void]
#:canvas-min-width [canvas-min-width #f]
#:canvas-min-height [canvas-min-height #f]
#:close-button? [close-button? #t])
(define orig-eventspace (current-eventspace))
(define orig-custodian (current-custodian))
(define inst-eventspace (make-eventspace))
@ -49,7 +55,8 @@
(define kill-button #f)
(define setup-sema (make-semaphore 0))
(define can-close-sema (make-semaphore))
(define currently-can-close? #t)
(define (close)
(if frame
(send frame show #f)
@ -64,7 +71,7 @@
(unless container
(set! frame
(new (class frame%
(define/augment (can-close?) (send close-button is-enabled?))
(define/augment (can-close?) currently-can-close?)
(define/augment (on-close) (close-callback))
(super-new [label title]
[width 600]
@ -109,7 +116,9 @@
(set! text (new (text:hide-caret/selection-mixin text:standard-style-list%)))
(define canvas (new editor-canvas%
[parent sub-container]
[editor text]))
[editor text]
[min-width canvas-min-width]
[min-height canvas-min-height]))
(define button-panel (new horizontal-panel%
[parent sub-container]
[stretchable-height #f]
@ -118,10 +127,11 @@
[label abort-label]
[parent button-panel]
[callback (λ (b e) (kill-callback))]))
(set! close-button (new button%
[label (string-constant close)]
[parent button-panel]
[callback (λ (b e) (close))]))
(when close-button?
(set! close-button (new button%
[label (string-constant close)]
[parent button-panel]
[callback (λ (b e) (close))])))
(define (close)
(if frame
@ -132,7 +142,8 @@
(define (kill-callback)
(custodian-shutdown-all installer-cust)
(fprintf output-port "\n~a\n" aborted-message))
(send close-button enable #f)
(set! currently-can-close? #f)
(when close-button (send close-button enable #f))
(send canvas allow-tab-exit #t)
((current-text-keymap-initializer) (send text get-keymap))
(send text set-styles-sticky #f)
@ -198,7 +209,8 @@
(queue-callback
(λ ()
(send kill-button enable #f)
(send close-button enable #t)
(when close-button (send close-button enable #t))
(set! currently-can-close? #t)
(semaphore-post can-close-sema))))
(unless completed-successfully?
(parameterize ([current-eventspace orig-eventspace])
@ -233,7 +245,7 @@
(define/public (is-closed?)
(not (send sub-container is-shown?)))
(define/public (can-close?)
(send close-button is-enabled?))
currently-can-close?)
(define/public (close)
(unless (is-closed?)
(if frame