From da94d8afae1349a9d2d28c0849370e62189e5d1a Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Thu, 11 Dec 2008 16:47:38 -0600 Subject: [PATCH 001/701] Working on new UI --- basis/help/markup/markup.factor | 5 +- basis/help/topics/topics.factor | 4 +- basis/prettyprint/prettyprint.factor | 9 -- basis/tools/apropos/apropos-docs.factor | 6 ++ basis/tools/apropos/apropos-tests.factor | 4 + basis/tools/apropos/apropos.factor | 72 ++++++++++++++++ basis/tools/completion/completion.factor | 18 ++-- basis/tools/crossref/crossref-docs.factor | 5 -- basis/tools/crossref/crossref.factor | 23 ++--- basis/tools/test/tools.factor | 5 -- basis/tools/vocabs/browser/browser.factor | 84 ++++++++----------- basis/ui/gadgets/editors/editors-tests.factor | 2 +- basis/ui/gadgets/editors/editors.factor | 57 ++++++++++--- basis/ui/tools/browser/browser.factor | 29 +++++-- basis/ui/tools/deploy/deploy.factor | 2 +- basis/ui/tools/interactor/interactor.factor | 8 +- basis/ui/tools/search/search.factor | 29 +++---- core/parser/parser.factor | 2 + 18 files changed, 224 insertions(+), 140 deletions(-) create mode 100644 basis/tools/apropos/apropos-docs.factor create mode 100644 basis/tools/apropos/apropos-tests.factor create mode 100644 basis/tools/apropos/apropos.factor delete mode 100644 basis/tools/test/tools.factor diff --git a/basis/help/markup/markup.factor b/basis/help/markup/markup.factor index a7501dc242..0971214518 100644 --- a/basis/help/markup/markup.factor +++ b/basis/help/markup/markup.factor @@ -356,4 +356,7 @@ M: array elements* ] H{ } make-assoc keys ; : <$link> ( topic -- element ) - \ $link swap 2array ; + 1array \ $link prefix ; + +: <$snippet> ( str -- element ) + 1array \ $snippet prefix ; diff --git a/basis/help/topics/topics.factor b/basis/help/topics/topics.factor index e6b19d5baa..9b5aaa7812 100644 --- a/basis/help/topics/topics.factor +++ b/basis/help/topics/topics.factor @@ -1,4 +1,4 @@ -! Copyright (C) 2005, 2007 Slava Pestov. +! Copyright (C) 2005, 2008 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license.x USING: accessors arrays definitions generic assocs io kernel namespaces make prettyprint prettyprint.sections @@ -21,7 +21,7 @@ PREDICATE: word-link < link name>> word? ; M: link summary [ "Link: " % - name>> dup word? [ summary ] [ unparse ] if % + name>> dup word? [ summary ] [ unparse-short ] if % ] "" make ; ! Help articles diff --git a/basis/prettyprint/prettyprint.factor b/basis/prettyprint/prettyprint.factor index 9d5af9e6a5..50c522e255 100644 --- a/basis/prettyprint/prettyprint.factor +++ b/basis/prettyprint/prettyprint.factor @@ -234,15 +234,6 @@ M: pathname synopsis* pprint* ; M: word summary synopsis ; -: synopsis-alist ( definitions -- alist ) - [ dup synopsis swap ] { } map>assoc ; - -: definitions. ( alist -- ) - [ write-object nl ] assoc-each ; - -: sorted-definitions. ( definitions -- ) - synopsis-alist sort-keys definitions. ; - GENERIC: declarations. ( obj -- ) M: object declarations. drop ; diff --git a/basis/tools/apropos/apropos-docs.factor b/basis/tools/apropos/apropos-docs.factor new file mode 100644 index 0000000000..b50b51b84f --- /dev/null +++ b/basis/tools/apropos/apropos-docs.factor @@ -0,0 +1,6 @@ +IN: tools.apropos +USING: help.markup help.syntax strings ; + +HELP: apropos +{ $values { "str" string } } +{ $description "Lists all words, vocabularies and help articles whose name contains a subsequence equal to " { $snippet "str" } ". Results are ranked using a simple distance algorithm." } ; diff --git a/basis/tools/apropos/apropos-tests.factor b/basis/tools/apropos/apropos-tests.factor new file mode 100644 index 0000000000..96ce9d3186 --- /dev/null +++ b/basis/tools/apropos/apropos-tests.factor @@ -0,0 +1,4 @@ +IN: tools.apropos.tests +USING: tools.apropos tools.test ; + +[ ] [ "swp" apropos ] unit-test diff --git a/basis/tools/apropos/apropos.factor b/basis/tools/apropos/apropos.factor new file mode 100644 index 0000000000..e271c62613 --- /dev/null +++ b/basis/tools/apropos/apropos.factor @@ -0,0 +1,72 @@ +! Copyright (C) 2008 Slava Pestov. +! See http://factorcode.org/license.txt for BSD license. +USING: accessors arrays assocs fry help.markup help.topics io +kernel make math math.parser namespaces sequences sorting +summary tools.completion tools.vocabs tools.vocabs.browser +vocabs words unicode.case help ; +IN: tools.apropos + +: $completions ( seq -- ) + dup [ word? ] all? [ words-table ] [ + dup [ vocab-spec? ] all? [ + $vocabs + ] [ + [ <$link> ] map $list + ] if + ] if ; + +TUPLE: more-completions seq ; + +: max-completions 5 ; + +M: more-completions article-title article-name ; + +M: more-completions article-name + seq>> length max-completions - number>string " more results" append ; + +M: more-completions article-content + seq>> sort-values keys \ $completions prefix ; + +M: more-completions summary article-title ; + +: (apropos) ( str candidates title -- element ) + [ + [ completions ] dip '[ + _ 1array \ $heading prefix , + [ max-completions short head keys \ $completions prefix , ] + [ dup length max-completions > [ more-completions boa 1array \ $link prefix , ] [ drop ] if ] + bi + ] unless-empty + ] { } make ; + +: word-candidates ( words -- candidates ) + [ dup name>> >lower ] { } map>assoc ; + +: vocab-candidates ( -- candidates ) + all-vocabs-seq [ dup vocab-name >lower ] { } map>assoc ; + +: help-candidates ( seq -- candidates ) + [ dup >link swap article-title >lower ] { } map>assoc + sort-values ; + +: $apropos ( str -- ) + first + [ all-words word-candidates "Words" (apropos) ] + [ vocab-candidates "Vocabularies" (apropos) ] + [ articles get keys help-candidates "Help articles" (apropos) ] + tri 3array print-element ; + +TUPLE: apropos search ; + +C: apropos + +M: apropos article-title + search>> "Search results for ``" "''" surround ; + +M: apropos article-name article-title ; + +M: apropos article-content + search>> 1array \ $apropos prefix ; + +: apropos ( str -- ) + print-topic ; diff --git a/basis/tools/completion/completion.factor b/basis/tools/completion/completion.factor index 084b97970d..55e58ebf14 100644 --- a/basis/tools/completion/completion.factor +++ b/basis/tools/completion/completion.factor @@ -1,12 +1,12 @@ ! Copyright (C) 2005, 2008 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. -USING: kernel arrays sequences math namespaces strings io +USING: kernel arrays sequences math namespaces strings io fry vectors words assocs combinators sorting unicode.case unicode.categories math.order ; IN: tools.completion : (fuzzy) ( accum ch i full -- accum i ? ) - index-from + index-from [ [ swap push ] 2keep 1+ t ] [ @@ -61,18 +61,12 @@ IN: tools.completion dupd fuzzy score max ; : completion ( short candidate -- result ) - [ second >lower swap complete ] keep first 2array ; + [ second >lower swap complete ] keep 2array ; : completions ( short candidates -- seq ) - over empty? [ - nip [ first ] map - ] [ - [ >lower ] dip [ completion ] with map - rank-completions - ] if ; - -: string-completions ( short strs -- seq ) - dup zip completions ; + [ '[ _ ] ] + [ '[ >lower _ [ completion ] with map rank-completions ] ] bi + if-empty ; : limited-completions ( short candidates -- seq ) [ completions ] [ drop ] 2bi diff --git a/basis/tools/crossref/crossref-docs.factor b/basis/tools/crossref/crossref-docs.factor index b7ec0d07a2..820c957cbc 100644 --- a/basis/tools/crossref/crossref-docs.factor +++ b/basis/tools/crossref/crossref-docs.factor @@ -3,7 +3,6 @@ IN: tools.crossref ARTICLE: "tools.crossref" "Cross-referencing tools" { $subsection usage. } -{ $subsection apropos } { $see-also "definitions" "words" see see-methods } ; ABOUT: "tools.crossref" @@ -14,7 +13,3 @@ HELP: usage. { $examples { $code "\\ reverse usage." } } ; { usage usage. } related-words - -HELP: apropos -{ $values { "str" "a string" } } -{ $description "Lists all words whose name contains a subsequence equal to " { $snippet "str" } ". Results are ranked using a simple distance algorithm." } ; diff --git a/basis/tools/crossref/crossref.factor b/basis/tools/crossref/crossref.factor index c4b046eccc..494e022243 100644 --- a/basis/tools/crossref/crossref.factor +++ b/basis/tools/crossref/crossref.factor @@ -1,16 +1,17 @@ -! Copyright (C) 2005, 2007 Slava Pestov. +! Copyright (C) 2005, 2008 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. -USING: accessors arrays definitions assocs io kernel -math namespaces prettyprint sequences strings io.styles words -generic tools.completion quotations parser summary -sorting hashtables vocabs parser source-files ; +USING: assocs definitions io io.styles kernel prettyprint +sorting ; IN: tools.crossref +: synopsis-alist ( definitions -- alist ) + [ dup synopsis swap ] { } map>assoc ; + +: definitions. ( alist -- ) + [ write-object nl ] assoc-each ; + +: sorted-definitions. ( definitions -- ) + synopsis-alist sort-keys definitions. ; + : usage. ( word -- ) smart-usage sorted-definitions. ; - -: words-matching ( str -- seq ) - all-words [ dup name>> ] { } map>assoc completions ; - -: apropos ( str -- ) - words-matching synopsis-alist reverse definitions. ; diff --git a/basis/tools/test/tools.factor b/basis/tools/test/tools.factor deleted file mode 100644 index bf74c1ae98..0000000000 --- a/basis/tools/test/tools.factor +++ /dev/null @@ -1,5 +0,0 @@ -IN: tools.test.tests -USING: completion words sequences test ; - -[ ] [ "swp" apropos ] unit-test -[ f ] [ "swp" words-matching empty? ] unit-test diff --git a/basis/tools/vocabs/browser/browser.factor b/basis/tools/vocabs/browser/browser.factor index e9e8d27870..8b3292e3ac 100644 --- a/basis/tools/vocabs/browser/browser.factor +++ b/basis/tools/vocabs/browser/browser.factor @@ -11,42 +11,32 @@ IN: tools.vocabs.browser : vocab-status-string ( vocab -- string ) { - { [ dup not ] [ drop "" ] } + { [ dup vocab not ] [ drop "" ] } { [ dup vocab-main ] [ drop "[Runnable]" ] } [ drop "[Loaded]" ] } cond ; -: write-status ( vocab -- ) - vocab vocab-status-string write ; +: vocab-row ( vocab -- row ) + [ <$link> ] [ vocab-status-string ] [ vocab-summary ] tri + 3array ; -: vocab. ( vocab -- ) - [ - [ [ write-status ] with-cell ] - [ [ ($link) ] with-cell ] - [ [ vocab-summary write ] with-cell ] tri - ] with-row ; +: vocab-headings ( -- headings ) + { + { $strong "Vocabulary" } + { $strong "State" } + { $strong "Summary" } + } ; -: vocab-headings. ( -- ) - [ - [ "State" write ] with-cell - [ "Vocabulary" write ] with-cell - [ "Summary" write ] with-cell - ] with-row ; - -: root-heading. ( root -- ) +: root-heading ( root -- ) [ "Children from " prepend ] [ "Children" ] if* $heading ; -: $vocabs ( assoc -- ) +: $vocabs ( seq -- ) + [ vocab-row ] map vocab-headings prefix $table ; + +: $vocab-roots ( assoc -- ) [ - [ drop ] [ - [ root-heading. ] - [ - standard-table-style [ - vocab-headings. [ vocab. ] each - ] ($grid) - ] bi* - ] if-empty + [ drop ] [ [ root-heading ] [ $vocabs ] bi* ] if-empty ] assoc-each ; TUPLE: vocab-tag name ; @@ -74,7 +64,7 @@ C: vocab-author ] unless-empty ; : describe-children ( vocab -- ) - vocab-name all-child-vocabs $vocabs ; + vocab-name all-child-vocabs $vocab-roots ; : describe-files ( vocab -- ) vocab-files [ ] map [ @@ -94,7 +84,7 @@ C: vocab-author [ [ <$link> ] [ superclass <$link> ] - [ "slots" word-prop [ name>> ] map " " join \ $snippet swap 2array ] + [ "slots" word-prop [ name>> ] map " " join <$snippet> ] tri 3array ] map { { $strong "Class" } { $strong "Superclass" } { $strong "Slots" } } prefix @@ -161,24 +151,24 @@ C: vocab-author "Parsing words" $subheading [ [ <$link> ] - [ word-syntax dup [ \ $snippet swap 2array ] when ] + [ word-syntax dup [ <$snippet> ] when ] bi 2array ] map { { $strong "Word" } { $strong "Syntax" } } prefix $table ] unless-empty ; +: words-table ( words -- ) + [ + [ <$link> ] + [ stack-effect dup [ effect>string <$snippet> ] when ] + bi 2array + ] map + { { $strong "Word" } { $strong "Stack effect" } } prefix + $table ; + : (describe-words) ( words heading -- ) - '[ - _ $subheading - [ - [ <$link> ] - [ stack-effect dup [ effect>string \ $snippet swap 2array ] when ] - bi 2array - ] map - { { $strong "Word" } { $strong "Stack effect" } } prefix - $table - ] unless-empty ; + '[ _ $subheading words-table ] unless-empty ; : describe-generics ( words -- ) "Generic words" (describe-words) ; @@ -201,8 +191,8 @@ C: vocab-author [ <$link> 1array ] map $table ] unless-empty ; -: describe-words ( vocab -- ) - words [ +: $words ( words -- ) + [ "Words" $heading natural-sort @@ -229,7 +219,7 @@ C: vocab-author : words. ( vocab -- ) last-element off - vocab-name describe-words ; + words $words ; : describe-metadata ( vocab -- ) [ @@ -239,11 +229,11 @@ C: vocab-author ] { } make [ "Meta-data" $heading $table ] unless-empty ; -: $describe-vocab ( element -- ) +: $vocab ( element -- ) first { [ describe-help ] [ describe-metadata ] - [ describe-words ] + [ words $words ] [ describe-files ] [ describe-children ] } cleave ; @@ -262,10 +252,10 @@ C: vocab-author [ vocab-authors ] keyed-vocabs ; : $tagged-vocabs ( element -- ) - first tagged $vocabs ; + first tagged $vocab-roots ; : $authored-vocabs ( element -- ) - first authored $vocabs ; + first authored $vocab-roots ; : $all-tags ( element -- ) drop "Tags" $heading all-tags $tags ; @@ -282,7 +272,7 @@ M: vocab-spec article-title vocab-name " vocabulary" append ; M: vocab-spec article-name vocab-name ; M: vocab-spec article-content - vocab-name \ $describe-vocab swap 2array ; + vocab-name \ $vocab swap 2array ; M: vocab-spec article-parent drop "vocab-index" ; diff --git a/basis/ui/gadgets/editors/editors-tests.factor b/basis/ui/gadgets/editors/editors-tests.factor index 274d62ea46..eda3e39b07 100644 --- a/basis/ui/gadgets/editors/editors-tests.factor +++ b/basis/ui/gadgets/editors/editors-tests.factor @@ -43,7 +43,7 @@ IN: ui.gadgets.editors.tests \ must-infer -"hello" "field" set +"hello" "field" set "field" get [ [ "hello" ] [ "field" get field-model>> value>> ] unit-test diff --git a/basis/ui/gadgets/editors/editors.factor b/basis/ui/gadgets/editors/editors.factor index 72d5900c28..26024c874d 100755 --- a/basis/ui/gadgets/editors/editors.factor +++ b/basis/ui/gadgets/editors/editors.factor @@ -1,9 +1,9 @@ ! Copyright (C) 2006, 2008 Slava Pestov ! See http://factorcode.org/license.txt for BSD license. -USING: accessors arrays documents kernel math models -namespaces locals fry make opengl opengl.gl sequences strings -io.styles math.vectors sorting colors combinators assocs -math.order fry calendar alarms ui.clipboards ui.commands +USING: accessors arrays documents kernel math models namespaces +locals fry make opengl opengl.gl sequences strings io.styles +math.vectors sorting colors combinators assocs math.order fry +calendar alarms continuations ui.clipboards ui.commands ui.gadgets ui.gadgets.borders ui.gadgets.buttons ui.gadgets.labels ui.gadgets.scrollers ui.gadgets.theme ui.gadgets.menus ui.gadgets.wrappers ui.render ui.gestures @@ -452,6 +452,10 @@ editor "caret-motion" f { { T{ key-down f { C+ } "END" } end-of-document } } define-command-map +: clear-editor ( editor -- ) + #! The with-datastack is a kludge to make it infer. Stupid. + model>> 1array [ clear-doc ] with-datastack drop ; + : select-all ( editor -- ) T{ doc-elt } select-elt ; : select-line ( editor -- ) T{ one-line-elt } select-elt ; @@ -537,8 +541,8 @@ TUPLE: source-editor < multiline-editor ; : ( -- editor ) source-editor new-editor ; -! Fields wrap an editor and edit an external model -TUPLE: field < wrapper field-model editor ; +! Fields wrap an editor +TUPLE: field < wrapper editor min-width max-width ; : field-theme ( gadget -- gadget ) gray >>boundary ; inline @@ -548,18 +552,45 @@ TUPLE: field < wrapper field-model editor ; { 1 0 } >>fill field-theme ; -: ( model -- gadget ) - dup field new-wrapper - swap >>editor - swap >>field-model ; +: new-field ( class -- gadget ) + [ dup ] dip new-wrapper swap >>editor ; inline -M: field graft* +: column-width ( editor n -- width ) + [ editor>> editor-font* ] dip CHAR: \s string-width ; + +M: field pref-dim* + [ call-next-method ] + [ dup min-width>> dup [ column-width 0 2array vmax ] [ 2drop ] if ] + [ dup max-width>> dup [ column-width 1/0. 2array vmin ] [ 2drop ] if ] + tri ; + +TUPLE: model-field < field field-model ; + +: ( model -- gadget ) + model-field new-field swap >>field-model ; + +M: model-field graft* [ [ field-model>> value>> ] [ editor>> ] bi set-editor-string ] [ dup editor>> model>> add-connection ] bi ; -M: field ungraft* +M: model-field ungraft* dup editor>> model>> remove-connection ; -M: field model-changed +M: model-field model-changed nip [ editor>> editor-string ] [ field-model>> ] bi set-model ; + +TUPLE: action-field < field quot ; + +: ( quot -- gadget ) + action-field new-field swap >>quot ; + +: invoke-action-field ( field -- ) + [ editor>> editor-string ] + [ editor>> clear-editor ] + [ quot>> ] + tri call ; + +action-field H{ + { T{ key-down f f "RET" } [ invoke-action-field ] } +} set-gestures diff --git a/basis/ui/tools/browser/browser.factor b/basis/ui/tools/browser/browser.factor index becb401fa6..2018d5b622 100644 --- a/basis/ui/tools/browser/browser.factor +++ b/basis/ui/tools/browser/browser.factor @@ -1,15 +1,16 @@ ! Copyright (C) 2006, 2008 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. USING: debugger ui.tools.workspace help help.topics kernel -models models.history ui.commands ui.gadgets ui.gadgets.panes -ui.gadgets.scrollers ui.gadgets.tracks ui.gestures -ui.gadgets.buttons compiler.units assocs words vocabs -accessors fry combinators.short-circuit ; +models models.history tools.apropos ui.commands ui.gadgets +ui.gadgets.panes ui.gadgets.scrollers ui.gadgets.tracks +ui.gestures ui.gadgets.buttons ui.gadgets.packs +ui.gadgets.editors ui.gadgets.labels models compiler.units +assocs words vocabs accessors fry combinators.short-circuit ; IN: ui.tools.browser TUPLE: browser-gadget < track pane history ; -: show-help ( link help -- ) +: show-help ( link browser-gadget -- ) history>> dup add-history [ >link ] dip set-model ; @@ -19,10 +20,23 @@ TUPLE: browser-gadget < track pane history ; : init-history ( browser-gadget -- ) "handbook" >link >>history drop ; +: search-browser ( string browser -- ) + [ ] dip show-help ; + +: ( browser -- field ) + '[ _ search-browser ] 10 >>min-width 10 >>max-width ; + +: ( browser -- toolbar ) + + { 5 5 } >>gap + over add-gadget + "Search:"