aboutsummaryrefslogtreecommitdiff
path: root/games/devtest/mods/testnodes/textures/testnodes_2.png
blob: 6c87c868df0db96160b5fadaef616a5db8ee3ff4 (plain)
ofshex dumpascii
0000 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 00 10 00 00 00 10 08 02 00 00 00 90 91 68 .PNG........IHDR...............h
0020 36 00 00 00 37 49 44 41 54 78 01 63 f8 6f 69 49 12 1a 1a 1a 18 10 00 9b 2c a6 6a 34 2e 61 1b e8 6...7IDATx.c.oiI........,.j4.a..
0040 a8 01 8f 1f 08 ab 46 88 e3 52 4d 5a b0 92 10 0f 0c 18 80 1a 31 cd 40 34 20 c7 06 00 43 ac 42 f0 ......F..RMZ........1.@4....C.B.
0060 04 06 32 85 00 00 00 00 49 45 4e 44 ae 42 60 82 ..2.....IEND.B`.
'>54 55 56 57 58 59 60 61 62 63 64
--Minetest
--Copyright (C) 2014 sapier
--
--This program is free software; you can redistribute it and/or modify
--it under the terms of the GNU Lesser General Public License as published by
--the Free Software Foundation; either version 2.1 of the License, or
--(at your option) any later version.
--
--This program is distributed in the hope that it will be useful,
--but WITHOUT ANY WARRANTY; without even the implied warranty of
--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--GNU Lesser General Public License for more details.
--
--You should have received a copy of the GNU Lesser General Public License along
--with this program; if not, write to the Free Software Foundation, Inc.,
--51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


local function delete_world_formspec(dialogdata)

	local retval =
		"size[11.5,4.5,true]" ..
		"label[2,2;" ..
		fgettext("Delete World \"$1\"?", dialogdata.delete_name) .. "]" ..
		"button[3.25,3.5;2.5,0.5;world_delete_confirm;" .. fgettext("Delete") .. "]" ..
		"button[5.75,3.5;2.5,0.5;world_delete_cancel;" .. fgettext("Cancel") .. "]"
	return retval
end

local function delete_world_buttonhandler(this, fields)
	if fields["world_delete_confirm"] then

		if this.data.delete_index > 0 and
			this.data.delete_index <= #menudata.worldlist:get_raw_list() then
			core.delete_world(this.data.delete_index)
			menudata.worldlist:refresh()
		end
		this:delete()
		return true
	end
	
	if fields["world_delete_cancel"] then
		this:delete()
		return true
	end
	
	return false
end


function create_delete_world_dlg(name_to_del,index_to_del)