parent
61552d2901
commit
279795dbfd
|
@ -18,7 +18,7 @@ CONSTANT: column-title-background COLOR: grey95
|
|||
CONSTANT: roll-button-rollover-border COLOR: gray50
|
||||
CONSTANT: roll-button-selected-background COLOR: dark-gray
|
||||
|
||||
CONSTANT: source-files-color COLOR: NavajoWhite
|
||||
CONSTANT: source-files-color COLOR: yellow2
|
||||
CONSTANT: errors-color COLOR: chocolate1
|
||||
CONSTANT: details-color COLOR: SlateGray2
|
||||
|
||||
|
@ -39,7 +39,11 @@ CONSTANT: contents-color COLOR: orchid2
|
|||
CONSTANT: help-header-background
|
||||
T{ rgba { red 0.9568 } { green 0.9450 } { blue 0.8509 } { alpha 1.0 } } inline
|
||||
|
||||
CONSTANT: thread-status-background
|
||||
CONSTANT: thread-status-stopped-background
|
||||
T{ rgba { red 0.9568 } { green 0.8509 } { blue 0.8509 } { alpha 1.0 } } inline
|
||||
CONSTANT: thread-status-suspended-background
|
||||
T{ rgba { red 0.9568 } { green 0.9450 } { blue 0.8509 } { alpha 1.0 } } inline
|
||||
CONSTANT: thread-status-running-background
|
||||
T{ rgba { red 0.9295 } { green 0.9569 } { blue 0.8510 } { alpha 1.0 } } inline
|
||||
|
||||
CONSTANT: error-summary-background
|
||||
|
|
|
@ -38,28 +38,38 @@ M: walker-gadget ungraft*
|
|||
M: walker-gadget focusable-child*
|
||||
traceback>> ;
|
||||
|
||||
: walker-state-string ( status thread -- string )
|
||||
[
|
||||
"Thread: " %
|
||||
dup name>> %
|
||||
" (" %
|
||||
swap {
|
||||
{ +stopped+ "Stopped" }
|
||||
{ +suspended+ "Suspended" }
|
||||
{ +running+ "Running" }
|
||||
} at %
|
||||
")" %
|
||||
drop
|
||||
] "" make ;
|
||||
: thread-status-text ( status thread -- string )
|
||||
name>> swap {
|
||||
{ +stopped+ "Stopped" }
|
||||
{ +suspended+ "Suspended" }
|
||||
{ +running+ "Running" }
|
||||
} at "Thread: %s (%s)" sprintf ;
|
||||
|
||||
: thread-status-color ( status -- color )
|
||||
{
|
||||
{ +stopped+ [ thread-status-stopped-background ] }
|
||||
{ +suspended+ [ thread-status-suspended-background ] }
|
||||
{ +running+ [ thread-status-running-background ] }
|
||||
{ f [ content-background ] }
|
||||
} case ;
|
||||
|
||||
TUPLE: thread-status < label thread ;
|
||||
|
||||
M: thread-status model-changed
|
||||
[ value>> ] dip {
|
||||
[ [ thread>> thread-status-text ] [ string<< ] bi ]
|
||||
[ [ thread-status-color <solid> ] [ parent>> interior<< ] bi* ]
|
||||
} 2cleave ;
|
||||
|
||||
: <thread-status> ( model thread -- gadget )
|
||||
'[ _ walker-state-string ] <arrow> <label-control> ;
|
||||
"" thread-status new-label
|
||||
swap >>thread
|
||||
swap >>model ;
|
||||
|
||||
: add-thread-status ( track -- track )
|
||||
dup status>> self <thread-status> margins
|
||||
thread-status-background <solid> >>interior
|
||||
f track-add ;
|
||||
|
||||
|
||||
: add-traceback ( track -- track )
|
||||
dup traceback>> 1 track-add ;
|
||||
|
||||
|
|
Loading…
Reference in New Issue