File size: 7,553 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
-- ========== GENERATED BY XTemplate Editor (Alt-F3) DO NOT EDIT MANUALLY! ==========

PlaceObj('XTemplate', {
	group = "GedApps",
	id = "ModManager",
	save_in = "Ged",
	PlaceObj('XTemplateWindow', {
		'__class', "GedApp",
		'Translate', true,
		'Title', "Mods Manager",
		'AppId', "ModManager",
	}, {
		PlaceObj('XTemplateWindow', {
			'__context', function (parent, context) return "root" end,
			'__class', "GedListPanel",
			'Id', "idMods",
			'Title', "Mods",
			'ActionContext', "PanelActions",
			'Format', "<EditorView>",
			'OnDoubleClick', function (self, item_idx)
				self.parent:Op("GedOpEditMod", self.context, item_idx)
			end,
			'ItemActionContext', "ChildActions",
		}),
		PlaceObj('XTemplateWindow', {
			'__class', "XPanelSizer",
		}),
		PlaceObj('XTemplateWindow', {
			'__context', function (parent, context) return "log" end,
			'__class', "GedMultiLinePanel",
			'Id', "idMessageLog",
			'Title', "Messages",
			'FormatFunc', "GedModMessageLog",
			'AutoHide', false,
		}),
		PlaceObj('XTemplateAction', {
			'ActionId', "File",
			'ActionName', T(546151333667, --[[XTemplate ModManager ActionName]] "File"),
			'ActionMenubar', "main",
			'OnActionEffect', "popup",
		}, {
			PlaceObj('XTemplateAction', {
				'ActionId', "New",
				'ActionName', T(687867043540, --[[XTemplate ModManager ActionName]] "New Mod"),
				'ActionIcon', "CommonAssets/UI/Ged/new.tga",
				'ActionToolbar', "main",
				'ActionShortcut', "Ctrl-N",
				'OnAction', function (self, host, source, ...)
					host:Op("GedOpNewMod", host.idMods.context)
				end,
				'ActionContexts', {
					"ChildActions",
				},
			}),
			PlaceObj('XTemplateAction', {
				'ActionId', "Load",
				'ActionName', T(719213652871, --[[XTemplate ModManager ActionName]] "Load"),
				'ActionIcon', "CommonAssets/UI/Ged/play.tga",
				'ActionToolbar', "main",
				'ActionShortcut', "Ctrl-L",
				'OnAction', function (self, host, source, ...)
					local panel = host.idMods
					if panel:GetSelection() then
						host:Op("GedOpLoadMod", panel.context, panel:GetSelection())
					end
				end,
				'ActionContexts', {
					"ChildActions",
				},
			}),
			PlaceObj('XTemplateAction', {
				'ActionId', "Unload",
				'ActionName', T(814896034284, --[[XTemplate ModManager ActionName]] "Unload"),
				'ActionIcon', "CommonAssets/UI/Ged/undo.tga",
				'ActionToolbar', "main",
				'ActionShortcut', "Ctrl-U",
				'OnAction', function (self, host, source, ...)
					local panel = host.idMods
					if panel:GetSelection() then
						host:Op("GedOpUnloadMod", panel.context, panel:GetSelection())
					end
				end,
				'ActionContexts', {
					"ChildActions",
				},
			}),
			PlaceObj('XTemplateAction', {
				'ActionId', "Edit",
				'ActionName', T(865079172599, --[[XTemplate ModManager ActionName]] "Edit"),
				'ActionIcon', "CommonAssets/UI/Ged/preview.tga",
				'ActionToolbar', "main",
				'ActionShortcut', "Ctrl-E",
				'OnAction', function (self, host, source, ...)
					local panel = host.idMods
					if panel:GetSelection() then
						host:Op("GedOpEditMod", panel.context, panel:GetSelection())
					end
				end,
				'ActionContexts', {
					"ChildActions",
				},
			}),
			PlaceObj('XTemplateAction', {
				'ActionId', "Delete",
				'ActionName', T(954766070707, --[[XTemplate ModManager ActionName]] "Delete Mod"),
				'ActionIcon', "CommonAssets/UI/Ged/delete.tga",
				'ActionToolbar', "main",
				'ActionShortcut', "Shift-Delete",
				'OnAction', function (self, host, source, ...)
					local panel = host.idMods
					if panel:GetSelection() then
						host:Op("GedOpRemoveMod", panel.context, panel:GetSelection())
					end
				end,
				'ActionContexts', {
					"ChildActions",
				},
			}),
			PlaceObj('XTemplateAction', {
				'ActionId', "Log Viewer",
				'ActionName', T(954766070708, --[[XTemplate ModManager ActionName]] "Game Log"),
				'ActionIcon', "CommonAssets/UI/Ged/log-dataset.tga",
				'ActionToolbar', "main",
				'ActionState', function (self, host)
					if not Platform.desktop then
						return "hidden"
					end
				end,
				'OnAction', function (self, host, source, ...)
					host:Op("ShowLog")
				end,
			}),
			PlaceObj('XTemplateAction', {
				'ActionId', "Exit",
				'ActionName', T(871800305287, --[[XTemplate ModManager ActionName]] "Exit"),
				'OnAction', function (self, host, source, ...)
					host:Exit()
				end,
			}),
			}),
		PlaceObj('XTemplateAction', {
			'ActionId', "Cheats",
			'ActionName', T(580953171470, --[[XTemplate ModManager ActionName]] "Cheats"),
			'ActionMenubar', "main",
			'OnActionEffect', "popup",
		}, {
			PlaceObj('XTemplateTemplate', {
				'__template', "ModEditorCheats",
			}),
			}),
		PlaceObj('XTemplateAction', {
			'ActionId', "Help",
			'ActionName', T(515768319493, --[[XTemplate ModManager ActionName]] "Help"),
			'ActionIcon', "CommonAssets/UI/Ged/help.tga",
			'ActionMenubar', "main",
			'ActionToolbar', "main",
			'ActionShortcut', "F1",
			'OnAction', function (self, host, source, ...)
				host:Op("GedOpHelpMod", host.idMods.context)
			end,
		}),
		PlaceObj('XTemplateAction', {
			'ActionId', "Preferences",
			'ActionName', T(837177020258, --[[XTemplate ModManager ActionName]] "Preferences"),
			'ActionMenubar', "main",
			'OnActionEffect', "popup",
		}, {
			PlaceObj('XTemplateAction', {
				'ActionId', "DarkLightMode",
				'ActionTranslate', false,
				'ActionName', "Dark/Light Mode",
				'OnActionEffect', "popup",
				'OnAction', function (self, host, source, ...)
					local effect = self.OnActionEffect
					local param = self.OnActionParam
					if effect == "close" and host and host.window_state ~= "destroying" then
						host:Close(param ~= "" and param or nil, source, ...)
					elseif effect == "mode" and host then
						assert(IsKindOf(host, "XDialog"))
						host:SetMode(param)
					elseif effect == "back" and host then
						assert(IsKindOf(host, "XDialog"))
						SetBackDialogMode(host)
					elseif effect == "popup" then
						local actions_view = GetParentOfKind(source, "XActionsView")
						if actions_view then
							actions_view:PopupAction(self.ActionId, host, source)
						else
							XShortcutsTarget:OpenPopupMenu(self.ActionId, terminal.GetMousePos())
						end
					else
						--print(self.ActionId, "activated")
					end
				end,
			}, {
				PlaceObj('XTemplateAction', {
					'ActionId', "dark",
					'ActionTranslate', false,
					'ActionName', "Dark",
					'OnAction', function (self, host, source, ...)
						host:Op("GedOpDarkModeChange", "root", "Dark")
					end,
				}),
				PlaceObj('XTemplateAction', {
					'ActionId', "light",
					'ActionTranslate', false,
					'ActionName', "Light",
					'OnAction', function (self, host, source, ...)
						host:Op("GedOpDarkModeChange", "root", "Light")
					end,
				}),
				PlaceObj('XTemplateAction', {
					'ActionId', "FollowSystem",
					'ActionTranslate', false,
					'ActionName', "Use OS setting",
					'OnAction', function (self, host, source, ...)
						host:Op("GedOpDarkModeChange", "root", "Follow system")
					end,
				}),
				}),
			PlaceObj('XTemplateAction', {
				'ActionId', "OpenDocs",
				'ActionName', T(993218250056, --[[XTemplate ModManager ActionName]] "Open Documentation on start (toggle)"),
				'ActionToggle', true,
				'ActionToggled', function (self, host)
					return host.actions_toggled["OpenModdingDocs"]
				end,
				'OnAction', function (self, host, source, ...)
					host:Op("GedOpOpenDocsToggle", "root")
				end,
			}),
			PlaceObj('XTemplateTemplate', {
				'__template', "ModManagerPreferences",
				'IgnoreMissing', true,
			}),
			}),
		}),
})