From c75f6155cf425963c45bbd641e10e2da9b30a8de Mon Sep 17 00:00:00 2001 From: nicolas-p Date: Sun, 19 Jul 2015 21:33:15 +0200 Subject: [PATCH] New toolbar dictionary --- basis/ui/gadgets/buttons/buttons.factor | 18 +----------------- basis/ui/gadgets/toolbar/toolbar.factor | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 17 deletions(-) create mode 100644 basis/ui/gadgets/toolbar/toolbar.factor diff --git a/basis/ui/gadgets/buttons/buttons.factor b/basis/ui/gadgets/buttons/buttons.factor index 4e6f62c27f..cb4f020231 100644 --- a/basis/ui/gadgets/buttons/buttons.factor +++ b/basis/ui/gadgets/buttons/buttons.factor @@ -121,9 +121,8 @@ PRIVATE> [ append theme-image ] tri-curry@ tri ] 2dip ; -CONSTANT: button-background COLOR: grey95 +CONSTANT: button-background COLOR: FactorLightTan CONSTANT: button-clicked-background COLOR: FactorDarkSlateBlue -CONSTANT: toolbar-border COLOR: grey75 : ( -- pen ) "button" button-background button-clicked-background @@ -243,18 +242,3 @@ PRIVATE> target command command-button-quot '[ drop @ ] gesture gesture>tooltip >>tooltip ; inline - -: ( target -- toolbar ) - - 1 >>fill - { 5 5 } >>gap - swap - [ [ "toolbar" ] dip class-of get-command-at commands>> ] - [ '[ [ _ ] 2dip add-gadget ] ] - bi assoc-each ; - -: add-toolbar ( track -- track ) - dup { 3 3 } - button-background >>interior - toolbar-border >>boundary - align-left f track-add ; diff --git a/basis/ui/gadgets/toolbar/toolbar.factor b/basis/ui/gadgets/toolbar/toolbar.factor new file mode 100644 index 0000000000..638a3d2f57 --- /dev/null +++ b/basis/ui/gadgets/toolbar/toolbar.factor @@ -0,0 +1,23 @@ +! Copyright (C) 2015 Nicolas PĂ©net. +! See http://factorcode.org/license.txt for BSD license. +USING: accessors assocs classes colors.constants fry kernel +ui.commands ui.gadgets ui.gadgets.borders ui.gadgets.buttons +ui.gadgets.buttons.private ui.gadgets.packs ui.gadgets.tracks +ui.pens.solid ; +IN: ui.gadgets.toolbar + +CONSTANT: toolbar-background COLOR: grey95 + +: ( target -- toolbar ) + + 1 >>fill + { 5 5 } >>gap + swap + [ [ "toolbar" ] dip class-of get-command-at commands>> ] + [ '[ [ _ ] 2dip add-gadget ] ] + bi assoc-each ; + +: add-toolbar ( track -- track ) + dup { 3 3 } + toolbar-background >>interior + align-left f track-add ;