Handbook
Glossary
draw-selected-row ( table -- )
Vocabulary
ui
.
gadgets
.
tables
.
private
Inputs
table
an
object
Outputs
None
Definition
USING:
accessors
kernel
opengl
;
IN:
ui.gadgets.tables.private
:
draw-selected-row
( table -- )
dup
selection-index>>
value>>
[
dup
selection-color>>
gl-color
dup
selection-index>>
value>>
row-bounds
gl-fill-rect
]
[
drop
]
if
;