2005-06-27 00:54:49 -04:00
|
|
|
! Copyright (C) 2005 Slava Pestov.
|
|
|
|
! See http://factor.sf.net/license.txt for BSD license.
|
2005-08-31 21:06:13 -04:00
|
|
|
IN: gadgets-panes
|
2005-10-07 20:26:21 -04:00
|
|
|
USING: arrays gadgets gadgets-buttons gadgets-editors
|
|
|
|
gadgets-labels gadgets-layouts gadgets-scrolling gadgets-theme
|
|
|
|
generic hashtables io kernel line-editor lists math namespaces
|
2005-12-17 00:12:32 -05:00
|
|
|
sequences strings styles threads ;
|
|
|
|
|
|
|
|
! Input history
|
|
|
|
TUPLE: input string ;
|
2005-06-27 00:54:49 -04:00
|
|
|
|
|
|
|
! A pane is an area that can display text.
|
|
|
|
|
|
|
|
! output: pile
|
|
|
|
! current: shelf
|
|
|
|
! input: editor
|
2005-12-16 21:12:35 -05:00
|
|
|
TUPLE: pane output active current input prototype
|
|
|
|
continuation scrolls? ;
|
2005-06-27 00:54:49 -04:00
|
|
|
|
|
|
|
: add-output 2dup set-pane-output add-gadget ;
|
2005-06-27 16:50:21 -04:00
|
|
|
|
2005-09-25 00:18:12 -04:00
|
|
|
: <active-line> ( current input -- line )
|
2005-09-27 00:24:42 -04:00
|
|
|
[ 2array ] [ 1array ] if* make-shelf ;
|
2005-06-27 00:54:49 -04:00
|
|
|
|
2005-12-16 21:12:35 -05:00
|
|
|
: init-line ( pane -- )
|
|
|
|
dup pane-prototype clone swap set-pane-current ;
|
|
|
|
|
|
|
|
: prepare-line ( pane -- )
|
|
|
|
dup init-line dup pane-active unparent
|
2005-08-26 21:42:43 -04:00
|
|
|
[ dup pane-current swap pane-input <active-line> ] keep
|
2005-06-27 00:54:49 -04:00
|
|
|
2dup set-pane-active add-gadget ;
|
|
|
|
|
|
|
|
: pop-continuation ( pane -- quot )
|
|
|
|
dup pane-continuation f rot set-pane-continuation ;
|
|
|
|
|
2005-07-06 03:29:42 -04:00
|
|
|
: pane-eval ( string pane -- )
|
2005-12-17 00:12:32 -05:00
|
|
|
pop-continuation dup [
|
|
|
|
[ continue-with ] in-thread
|
|
|
|
] when 2drop ;
|
2005-08-26 00:55:56 -04:00
|
|
|
|
|
|
|
SYMBOL: structured-input
|
|
|
|
|
2005-07-06 03:29:42 -04:00
|
|
|
: pane-call ( quot pane -- )
|
2005-12-17 00:12:32 -05:00
|
|
|
"<< command >>" over stream-print
|
2005-08-26 00:55:56 -04:00
|
|
|
>r structured-input global set-hash
|
2005-09-03 18:44:45 -04:00
|
|
|
"\"structured-input\" \"gadgets-panes\" lookup global hash call"
|
|
|
|
r> pane-eval ;
|
2005-08-26 00:55:56 -04:00
|
|
|
|
|
|
|
: editor-commit ( editor -- line )
|
|
|
|
#! Add current line to the history, and clear the editor.
|
|
|
|
[ commit-history line-text get line-clear ] with-editor ;
|
2005-06-29 00:33:07 -04:00
|
|
|
|
2005-10-01 01:44:49 -04:00
|
|
|
: replace-input ( string pane -- )
|
|
|
|
pane-input set-editor-text ;
|
|
|
|
|
2005-09-28 23:29:00 -04:00
|
|
|
: print-input ( string pane -- )
|
2005-12-17 00:12:32 -05:00
|
|
|
[
|
|
|
|
dup [
|
|
|
|
<input> presented set
|
|
|
|
bold font-style set
|
|
|
|
] make-hash format terpri
|
|
|
|
] with-stream* ;
|
2005-09-28 23:29:00 -04:00
|
|
|
|
2005-12-17 00:12:32 -05:00
|
|
|
: pane-commit ( pane -- )
|
|
|
|
dup pane-input editor-commit swap 2dup print-input pane-eval ;
|
2005-08-31 21:06:13 -04:00
|
|
|
|
|
|
|
: pane-clear ( pane -- )
|
|
|
|
dup pane-output clear-incremental pane-current clear-gadget ;
|
2005-06-27 00:54:49 -04:00
|
|
|
|
|
|
|
: pane-actions ( line -- )
|
2005-10-29 23:25:38 -04:00
|
|
|
H{
|
2005-12-17 00:12:32 -05:00
|
|
|
{ [ button-down ] [ pane-input [ click-editor ] when* ] }
|
2005-11-27 17:45:48 -05:00
|
|
|
{ [ "UP" ] [ pane-input [ [ history-prev ] with-editor ] when* ] }
|
|
|
|
{ [ "DOWN" ] [ pane-input [ [ history-next ] with-editor ] when* ] }
|
|
|
|
{ [ "CTRL" "l" ] [ pane get pane-clear ] }
|
2005-10-29 23:25:38 -04:00
|
|
|
} add-actions ;
|
2005-06-27 00:54:49 -04:00
|
|
|
|
2005-12-17 00:12:32 -05:00
|
|
|
: input-pane-actions ( line -- )
|
|
|
|
[ pane-commit ] [ "RETURN" ] set-action ;
|
|
|
|
|
|
|
|
C: pane ( -- pane )
|
2005-08-31 21:06:13 -04:00
|
|
|
<pile> over set-delegate
|
2005-12-17 00:12:32 -05:00
|
|
|
<shelf> over set-pane-prototype
|
2005-08-31 21:06:13 -04:00
|
|
|
<pile> <incremental> over add-output
|
2005-12-16 21:12:35 -05:00
|
|
|
dup prepare-line dup pane-actions ;
|
2005-06-27 00:54:49 -04:00
|
|
|
|
2005-12-17 00:12:32 -05:00
|
|
|
: <input-pane> ( -- pane )
|
|
|
|
<pane> t over set-pane-scrolls?
|
|
|
|
"" <editor> over set-pane-input dup input-pane-actions ;
|
|
|
|
|
2005-07-04 18:36:07 -04:00
|
|
|
M: pane focusable-child* ( pane -- editor )
|
2005-09-25 00:18:12 -04:00
|
|
|
pane-input [ t ] unless* ;
|
2005-07-04 18:36:07 -04:00
|
|
|
|
2005-08-24 21:52:10 -04:00
|
|
|
: prepare-print ( current -- gadget )
|
|
|
|
#! Optimization: if line has 1 child, add the child.
|
2005-10-29 23:25:38 -04:00
|
|
|
dup gadget-children {
|
|
|
|
{ [ dup empty? ] [ 2drop "" <label> ] }
|
|
|
|
{ [ dup length 1 = ] [ nip first ] }
|
|
|
|
{ [ t ] [ drop ] }
|
|
|
|
} cond ;
|
2005-08-24 21:52:10 -04:00
|
|
|
|
2005-12-16 21:12:35 -05:00
|
|
|
M: pane stream-terpri ( pane -- )
|
|
|
|
dup pane-current prepare-print
|
|
|
|
over pane-output add-incremental
|
|
|
|
prepare-line ;
|
2005-08-24 21:52:10 -04:00
|
|
|
|
2005-12-19 23:18:15 -05:00
|
|
|
M: pane stream-terpri* ( pane -- )
|
|
|
|
dup pane-current gadget-children empty?
|
|
|
|
[ dup stream-terpri ] unless drop ;
|
|
|
|
|
2005-12-16 21:12:35 -05:00
|
|
|
: pane-write ( pane list -- )
|
|
|
|
2dup car swap pane-current stream-write cdr dup
|
|
|
|
[ over stream-terpri pane-write ] [ 2drop ] if ;
|
2005-06-27 00:54:49 -04:00
|
|
|
|
2005-12-16 21:12:35 -05:00
|
|
|
: pane-format ( style pane list -- )
|
|
|
|
3dup car -rot pane-current stream-format cdr dup
|
|
|
|
[ over stream-terpri pane-format ] [ 3drop ] if ;
|
2005-06-27 00:54:49 -04:00
|
|
|
|
2005-12-17 20:03:41 -05:00
|
|
|
: write-gadget ( gadget pane -- )
|
|
|
|
#! Print a gadget to the given pane.
|
|
|
|
pane-current add-gadget ;
|
|
|
|
|
|
|
|
: gadget. ( gadget -- )
|
|
|
|
#! Print a gadget to the current pane.
|
|
|
|
stdio get write-gadget terpri ;
|
|
|
|
|
2005-06-27 00:54:49 -04:00
|
|
|
! Panes are streams.
|
2005-07-27 20:13:11 -04:00
|
|
|
M: pane stream-flush ( pane -- ) drop ;
|
2005-06-27 16:50:21 -04:00
|
|
|
|
2005-07-27 20:13:11 -04:00
|
|
|
M: pane stream-readln ( pane -- line )
|
2005-09-18 01:37:28 -04:00
|
|
|
[ over set-pane-continuation stop ] callcc1 nip ;
|
2005-06-27 00:54:49 -04:00
|
|
|
|
2005-10-10 21:12:53 -04:00
|
|
|
: scroll-pane ( pane -- )
|
|
|
|
dup pane-scrolls? [ pane-input scroll>caret ] [ drop ] if ;
|
2005-09-25 00:18:12 -04:00
|
|
|
|
2005-07-27 20:13:11 -04:00
|
|
|
M: pane stream-write1 ( char pane -- )
|
2005-12-16 21:12:35 -05:00
|
|
|
[ pane-current stream-write1 ] keep scroll-pane ;
|
2005-07-17 14:48:55 -04:00
|
|
|
|
2005-12-16 22:24:39 -05:00
|
|
|
M: pane stream-write ( string pane -- )
|
|
|
|
[ swap "\n" split pane-write ] keep scroll-pane ;
|
2005-06-27 00:54:49 -04:00
|
|
|
|
2005-12-16 21:12:35 -05:00
|
|
|
M: pane stream-format ( string style pane -- )
|
|
|
|
[ rot "\n" split pane-format ] keep scroll-pane ;
|
|
|
|
|
2005-12-19 02:12:40 -05:00
|
|
|
M: pane stream-bl ( pane -- ) pane-current stream-bl ;
|
2005-12-16 21:12:35 -05:00
|
|
|
|
2005-07-27 20:13:11 -04:00
|
|
|
M: pane stream-close ( pane -- ) drop ;
|
2005-09-25 00:18:12 -04:00
|
|
|
|
2005-09-25 01:10:02 -04:00
|
|
|
: with-pane ( pane quot -- )
|
|
|
|
#! Clear the pane and run the quotation in a scope with
|
|
|
|
#! stdio set to the pane.
|
2005-12-17 20:03:41 -05:00
|
|
|
over pane-clear over >r with-stream*
|
2005-12-19 23:18:15 -05:00
|
|
|
r> stream-terpri* ; inline
|
2005-12-17 20:03:41 -05:00
|
|
|
|
|
|
|
: make-pane ( quot -- pane )
|
|
|
|
#! Execute the quotation with output to an output-only pane.
|
2005-12-19 02:12:40 -05:00
|
|
|
<pane> [ swap with-pane ] keep ; inline
|