diff options
Diffstat (limited to 'xmake/core/ui/button.lua')
| -rw-r--r-- | xmake/core/ui/button.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/xmake/core/ui/button.lua b/xmake/core/ui/button.lua index 22413a83c..92f5f8894 100644 --- a/xmake/core/ui/button.lua +++ b/xmake/core/ui/button.lua @@ -43,5 +43,17 @@ function button:init(name, bounds, text) self:cursor_show(true) end +-- set state +function button:state_set(name, enable) + + -- set label state + label.state_set(self, name, enable) + + -- the focused text and background attribute + if name == "focused" then + -- TODO + end +end + -- return module return button |
