2017-04-06 09:12:35 +00:00
|
|
|
-- This is a debug plugin, remove the following if block to enable it
|
|
|
|
if true then
|
|
|
|
return { disabled = true, }
|
|
|
|
end
|
|
|
|
|
|
|
|
local InfoMessage = require("ui/widget/infomessage") -- luacheck:ignore
|
2016-12-20 07:19:54 +00:00
|
|
|
local UIManager = require("ui/uimanager")
|
|
|
|
local WidgetContainer = require("ui/widget/container/widgetcontainer")
|
|
|
|
local _ = require("gettext")
|
|
|
|
|
|
|
|
local Hello = WidgetContainer:new{
|
|
|
|
name = 'Hello',
|
|
|
|
is_doc_only = false,
|
|
|
|
}
|
|
|
|
|
|
|
|
function Hello:init()
|
|
|
|
self.ui.menu:registerToMainMenu(self)
|
|
|
|
end
|
|
|
|
|
2017-04-06 09:12:35 +00:00
|
|
|
function Hello:addToMainMenu(menu_items)
|
|
|
|
menu_items.hello_world = {
|
2016-12-20 07:19:54 +00:00
|
|
|
text = _("Hello World"),
|
2016-12-27 10:03:11 +00:00
|
|
|
callback = function()
|
2016-12-20 07:19:54 +00:00
|
|
|
UIManager:show(InfoMessage:new{
|
2017-04-06 09:12:35 +00:00
|
|
|
text = _("Hello, plugin world"),
|
2016-12-20 07:19:54 +00:00
|
|
|
})
|
|
|
|
end,
|
2017-04-06 09:12:35 +00:00
|
|
|
}
|
2016-12-20 07:19:54 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return Hello
|