-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLOSCustomAppMenuChar.txt
51 lines (47 loc) · 1.28 KB
/
LOSCustomAppMenuChar.txt
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
--@name Lanteans OS AppCard (CustomAppMenuChar)
--@author Yuri6037
--@class processor
--@model models/props_junk/sawblade001a.mdl
--Initialisation
Entity = ents.self()
Entity:setMaterial("phoenix_storms/black_chrome")
wire.createOutputs({"AppName", "AppCode"}, {"String", "String"})
Ports = wire.ports
--End
--Application
AppName = "customappmenuchar"
AppCode = [[
if (AppsMenuChar == nil) then
error("This application requires AnimatedDesktop")
end
local app = {}
function app:Init()
self:SetSize(256, 166)
self:SetTitle("Change AppMenu Name")
self:DisableDecorations()
self:SetPos(LOCATION_CENTER)
local lst = self:AddComponent("listbox", 10, 32)
lst:SetSize(236, 100)
lst:SetMaxLines(5)
lst:SetData({"A", "Y", "L", "O", "S", "♫"})
local bad = self:AddComponent("button", 128, 140, "Cancel", function(app)
OS.CloseApp(app.Handle)
end)
bad:SetSize(128, 16)
local ok = self:AddComponent("button", 0, 140, "Change AppMenu", function(app)
local id, str = lst:GetSelected()
if (id == nil) then return end
AppsMenuChar = str
ReloadDesktopEnv = true
OS.CloseApp(app.Handle)
end)
ok:SetSize(128, 16)
end
OS.DefineApp("customappmenuchar", app)
OS.AddAppMenuItem("customappmenuchar", "AppMenu", "MISC")
]]
--End
--Saving
Ports["AppName"] = "app_" .. AppName
Ports["AppCode"] = AppCode
--End