2008-02-21 21:57:41 -05:00
|
|
|
! Copyright (C) 2007, 2008 Slava Pestov.
|
2007-09-20 18:09:08 -04:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2009-09-08 12:43:47 -04:00
|
|
|
USING: accessors calendar colors colors.constants fonts kernel
|
|
|
|
models models.arrow models.delay sequences summary ui
|
|
|
|
ui.gadgets ui.gadgets.labels ui.gadgets.tracks
|
|
|
|
ui.gadgets.worlds ui.pens.solid ui.private ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: ui.gadgets.status-bar
|
|
|
|
|
2009-09-08 12:43:47 -04:00
|
|
|
: status-bar-font ( -- font )
|
|
|
|
sans-serif-font clone
|
2009-09-08 15:22:13 -04:00
|
|
|
COLOR: FactorDarkSlateBlue >>background
|
2009-09-08 12:43:47 -04:00
|
|
|
COLOR: white >>foreground ;
|
|
|
|
|
|
|
|
: status-bar-theme ( label -- label )
|
|
|
|
status-bar-font >>font
|
2009-09-08 15:22:13 -04:00
|
|
|
COLOR: FactorDarkSlateBlue <solid> >>interior ;
|
2009-09-08 12:43:47 -04:00
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
: <status-bar> ( model -- gadget )
|
2009-02-26 17:15:28 -05:00
|
|
|
1/10 seconds <delay> [ "" like ] <arrow> <label-control>
|
2009-09-08 12:43:47 -04:00
|
|
|
status-bar-theme
|
2008-06-18 23:30:54 -04:00
|
|
|
t >>root? ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2009-05-03 18:11:01 -04:00
|
|
|
: open-status-window ( gadget title/attributes -- )
|
|
|
|
?attributes f <model> >>status <world>
|
|
|
|
dup status>> <status-bar> f track-add
|
2008-07-10 21:32:17 -04:00
|
|
|
open-world-window ;
|
|
|
|
|
|
|
|
: show-summary ( object gadget -- )
|
2008-11-28 01:02:02 -05:00
|
|
|
[ [ summary ] [ "" ] if* ] dip show-status ;
|