89 lines
2.3 KiB
Lua
89 lines
2.3 KiB
Lua
|
|
-- Copyright (C) 2017-2020 DBotThePony
|
|
|
|
-- Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
-- of this software and associated documentation files (the "Software"), to deal
|
|
-- in the Software without restriction, including without limitation the rights
|
|
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
-- of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
-- subject to the following conditions:
|
|
|
|
-- The above copyright notice and this permission notice shall be included in all copies
|
|
-- or substantial portions of the Software.
|
|
|
|
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
-- INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
-- PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
|
-- FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
-- DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
local PANEL = {}
|
|
DLib.VGUI.DMenu = PANEL
|
|
|
|
--[[
|
|
@doc
|
|
@panel DLib_Menu
|
|
|
|
@desc
|
|
a basic extended menu. Has `AddCopyOption`, `AddURLOption`,
|
|
`AddSteamID` and `AddSteamID64` methods (quick copy methods)
|
|
@enddesc
|
|
]]
|
|
function PANEL:Init()
|
|
self:SetSkin('DLib_Black')
|
|
end
|
|
|
|
--[[
|
|
@doc
|
|
@func DLib_Menu:AddCopyOption
|
|
@args string name, string value
|
|
]]
|
|
function PANEL:AddCopyOption(name, value)
|
|
local new = self:AddOption(name, function()
|
|
SetClipboardText(value)
|
|
end)
|
|
|
|
new:SetIcon(DLib.skin.icon.copy())
|
|
|
|
return new
|
|
end
|
|
|
|
--[[
|
|
@doc
|
|
@func DLib_Menu:AddURLOption
|
|
@args string name, string url
|
|
]]
|
|
function PANEL:AddURLOption(name, value)
|
|
local new = self:AddOption(name, function()
|
|
gui.OpenURL(value)
|
|
end)
|
|
|
|
new:SetIcon(DLib.skin.icon.url())
|
|
|
|
return new
|
|
end
|
|
|
|
--[[
|
|
@doc
|
|
@func DLib_Menu:AddSteamID
|
|
@args string name, string steamid
|
|
]]
|
|
function PANEL:AddSteamID(name, value)
|
|
return self:AddSteamID64(name, util.SteamIDTo64(value))
|
|
end
|
|
|
|
--[[
|
|
@doc
|
|
@func DLib_Menu:AddSteamID64
|
|
@args string name, string steamid64
|
|
]]
|
|
function PANEL:AddSteamID64(name, value)
|
|
local new = self:AddURLOption(name, 'https://steamcommunity.com/profiles/' .. value)
|
|
new:SetIcon(DLib.skin.icon.user())
|
|
return new
|
|
end
|
|
|
|
vgui.Register('DLib_Menu', PANEL, 'DMenu')
|
|
return PANEL
|