From 1b41f853954ace1129892361c8fb8f8efdfd49f0 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Sun, 15 Feb 2009 03:59:02 -0600 Subject: [PATCH] ui.gadgets.frames: any size frame now supported, arbitrary cell can be fill cell, gap supported --- basis/ui/gadgets/frames/frames-docs.factor | 39 +++------------- basis/ui/gadgets/frames/frames-tests.factor | 31 +++++++++++-- basis/ui/gadgets/frames/frames.factor | 50 ++++++++++----------- basis/ui/gadgets/grids/grids-docs.factor | 12 ++--- basis/ui/gadgets/labeled/labeled.factor | 14 +++++- 5 files changed, 79 insertions(+), 67 deletions(-) diff --git a/basis/ui/gadgets/frames/frames-docs.factor b/basis/ui/gadgets/frames/frames-docs.factor index 52eef11d1c..5ba1512c4b 100644 --- a/basis/ui/gadgets/frames/frames-docs.factor +++ b/basis/ui/gadgets/frames/frames-docs.factor @@ -3,42 +3,17 @@ quotations classes.tuple ui.gadgets.grids parser ; IN: ui.gadgets.frames ARTICLE: "ui-frame-layout" "Frame layouts" -"Frames resemble " { $link "ui-grid-layout" } " except the size of grid is fixed at 3x3, and the center gadget fills up any available space. Because frames inherit from grids, grid layout words can be used to add and remove children." +"Frames extend " { $link "ui-grid-layout" } " with the ability to give all remaining space to a distinguished filled cell." +$nl +"The filled cell's column/row pair is stored in the frame gadget's " { $slot "filled-cell" } " slot. If the actual dimensions of a frame exceed it preferred dimensions, then the fill slot is resized appropriately, together with its row and column." +$nl +"Because frames inherit from grids, grid layout words can be used to add and remove children." { $subsection frame } "Creating empty frames:" -{ $subsection } -"A set of mnemonic words for the positions on a frame's 3x3 grid; these words push values which may be passed to " { $link grid-add } ":" -{ $subsection @center } -{ $subsection @left } -{ $subsection @right } -{ $subsection @top } -{ $subsection @bottom } -{ $subsection @top-left } -{ $subsection @top-right } -{ $subsection @bottom-left } -{ $subsection @bottom-right } ; - -<< - -: ui-frame-constant - { $values { "value" pair } } parsed - { $description "Symbolic constant for a common input to " { $link grid-add } "." } parsed ; - parsing - ->> - -HELP: @center ui-frame-constant ; -HELP: @left ui-frame-constant ; -HELP: @right ui-frame-constant ; -HELP: @top ui-frame-constant ; -HELP: @bottom ui-frame-constant ; -HELP: @top-left ui-frame-constant ; -HELP: @top-right ui-frame-constant ; -HELP: @bottom-left ui-frame-constant ; -HELP: @bottom-right ui-frame-constant ; +{ $subsection } ; HELP: frame -{ $class-description "A frame is a gadget which lays out its children in a 3x3 grid. If the frame is enlarged past its preferred size, the center gadget fills up available room." +{ $class-description "A frame is a gadget which lays out its children in a grid, and assigns all remaining space to a distinguished filled cell. The " { $slot "filled-cell" } " slot stores a pair with shape " { $snippet "{ col row }" } "." $nl "Frames are constructed by calling " { $link } " and since they inherit from " { $link grid } ", children can be managed with " { $link grid-add } " and " { $link grid-remove } "." } ; diff --git a/basis/ui/gadgets/frames/frames-tests.factor b/basis/ui/gadgets/frames/frames-tests.factor index 27d511e10a..95e3c6b09a 100644 --- a/basis/ui/gadgets/frames/frames-tests.factor +++ b/basis/ui/gadgets/frames/frames-tests.factor @@ -2,12 +2,22 @@ USING: accessors kernel namespaces tools.test ui.gadgets ui.gadgets.frames ui.gadgets.grids ui.gadgets.labels ; IN: ui.gadgets.frames.tests -[ ] [ layout ] unit-test +[ ] [ 3 3 { 1 1 } >>filled-cell layout ] unit-test + +[ { 1000 1000 } ] [ + 1 1 + { 0 0 } >>filled-cell + dup "c" set { 0 0 } grid-add + { 1000 1000 } >>dim + layout + "c" get dim>> +] unit-test [ t ] [ - - "Hello world"