19 lines
568 B
Lua
19 lines
568 B
Lua
laptop.register_app("stickynote", {
|
|
app_name = "Notepad",
|
|
app_icon = "laptop_notes_pad.png",
|
|
app_info = "Write notes in a text document.",
|
|
formspec_func = function(app, mtos)
|
|
local data = app:get_storage_ref()
|
|
data.text = data.text or ""
|
|
|
|
return "background[0,0.35;15.2,9.2;"..mtos.theme.contrast_bg.."]"..
|
|
"textarea[0.35,0.35;15.08,10.5;text;;"..minetest.formspec_escape(data.text).."]"
|
|
end,
|
|
receive_fields_func = function(app, mtos, fields, sender)
|
|
if fields.text then
|
|
local data = app:get_storage_ref()
|
|
data.text = fields.text
|
|
end
|
|
end
|
|
})
|