mirror of
https://github.com/Insality/druid
synced 2025-09-29 11:02:20 +02:00
Update examples to widgets instead components
This commit is contained in:
@@ -1,17 +1,10 @@
|
||||
local hover_hint = require("example.examples.widgets.hover_hint.hover_hint")
|
||||
|
||||
local component = require("druid.component")
|
||||
---@class examples.hover_hint_example: druid.widget
|
||||
local M = {}
|
||||
|
||||
---@class examples.hover_hint_example: druid.component
|
||||
---@field druid druid.instance
|
||||
local M = component.create("hover_hint_example")
|
||||
|
||||
|
||||
---@param template string
|
||||
---@param nodes table<hash, node>
|
||||
function M:init(template, nodes)
|
||||
self.druid = self:get_druid(template, nodes)
|
||||
self.hover_hint = self.druid:new(hover_hint, "hover_hint")
|
||||
function M:init()
|
||||
self.hover_hint = self.druid:new_widget(hover_hint, "hover_hint")
|
||||
|
||||
self.hover_hint:add_hover_hint(self:get_node("node_yellow"), "Yellow box", gui.PIVOT_N, gui.PIVOT_S)
|
||||
self.hover_hint:add_hover_hint(self:get_node("node_green"), "Green box", gui.PIVOT_S, gui.PIVOT_N)
|
||||
|
Reference in New Issue
Block a user