Handbook
Glossary
draw-focused-row ( table -- )
Vocabulary
ui
.
gadgets
.
tables
.
private
Inputs
table
an
object
Outputs
None
Definition
USING:
accessors
combinators.short-circuit
kernel
opengl
;
IN:
ui.gadgets.tables.private
:
draw-focused-row
( table -- )
dup
{
[
focused?>>
]
[
selection-index>>
value>>
]
}
1&&
[
dup
focus-border-color>>
gl-color
dup
selection-index>>
value>>
row-bounds
gl-rect
]
[
drop
]
if
;