File size: 2,315 Bytes
b6a38d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
-- ========== GENERATED BY XTemplate Editor (Alt-F3) DO NOT EDIT MANUALLY! ==========

PlaceObj('XTemplate', {
	__is_kind_of = "XPropControl",
	group = "Common",
	id = "PropChoice",
	save_in = "Common",
	PlaceObj('XTemplateWindow', {
		'__class', "XPropControl",
		'BorderWidth', 2,
		'LayoutMethod', "HList",
		'Background', RGBA(255, 255, 255, 255),
		'RolloverOnFocus', true,
		'MouseCursor', "CommonAssets/UI/HandCursor.tga",
		'FocusedBackground', RGBA(170, 170, 170, 255),
	}, {
		PlaceObj('XTemplateWindow', {
			'__class', "XText",
			'Id', "idName",
			'MinWidth', 300,
			'TextStyle', "GedTitle",
			'Translate', true,
		}),
		PlaceObj('XTemplateWindow', {
			'__class', "XText",
			'Id', "idValue",
			'TextStyle', "GedTitle",
			'Translate', true,
		}),
		PlaceObj('XTemplateFunc', {
			'name', "OnPropUpdate(self, context, prop_meta, value)",
			'func', function (self, context, prop_meta, value)
				local items = prop_meta.items
				if type(items) == "function" then
					items = items(context, prop_meta.id)
				end
				local text
				if type(value) == "table" then
					local count = 0
					for k,v in pairs(value) do
						if v ~= "none" then
							count = count + 1
						end
					end
					if count == 0 then
						text = T(732036341296, "None selected")
					elseif count == 1 and value["random"] then
						text = T(141246507157, "Random")
					else
						text = Untranslated("x" .. count)
					end
				else
					local entry = items and table.find_value(items, "value", value) or table.find_value(items, "value", prop_meta.default)
					text = entry and entry.text or ""
				end
				
				self.idValue:SetText(text)
			end,
		}),
		PlaceObj('XTemplateFunc', {
			'name', "OnMouseButtonDown(self, pos, button)",
			'func', function (self, pos, button)
				XPropControl.OnMouseButtonDown(self, pos, button)
				if button == "L" then
				  SetDialogMode(self, "items", self.prop_meta)
				end
			end,
		}),
		PlaceObj('XTemplateFunc', {
			'name', "OnShortcut(self, shortcut, source, ...)",
			'func', function (self, shortcut, source, ...)
				if shortcut == "ButtonA" then
				  self:OnMouseButtonDown(nil, "L")
				end
			end,
		}),
		PlaceObj('XTemplateFunc', {
			'name', "SetSelected(self, selected)",
			'func', function (self, selected)
				self:SetFocus(selected)
			end,
		}),
		}),
})