mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-08 05:34:58 +00:00
14 lines
707 B
Ruby
14 lines
707 B
Ruby
#===============================================================================
|
|
# TODO
|
|
# TODO: Click an option to select it. It remains selected indefinitely. Once an
|
|
# option is selected, there's probably no way to unselect everything; the
|
|
# selection can only be moved to a different option.
|
|
# TODO: Scrollable.
|
|
# TODO: Find some way to not redraw the entire thing if the hovered option
|
|
# changes. Maybe have another bitmap to write the text on (refreshed only
|
|
# when the list is scrolled), and self's bitmap draws the hover colour
|
|
# only.
|
|
#===============================================================================
|
|
class UIControls::List < UIControls::BaseControl
|
|
end
|