Initial commit

This commit is contained in:
2026-03-15 14:54:49 +03:00
commit 64f8029c06
4027 changed files with 254888 additions and 0 deletions

59
lua/derma/derma_menus.lua Normal file
View File

@@ -0,0 +1,59 @@
local tblOpenMenus = {}
function RegisterDermaMenuForClose( dmenu )
table.insert( tblOpenMenus, dmenu )
end
function DermaMenu( parentmenu, parent )
if ( !parentmenu ) then CloseDermaMenus() end
local dmenu = vgui.Create( "DMenu", parent )
return dmenu
end
function CloseDermaMenus()
for k, dmenu in pairs( tblOpenMenus ) do
if ( IsValid( dmenu ) ) then
dmenu:SetVisible( false )
if ( dmenu:GetDeleteSelf() ) then
dmenu:Remove()
end
end
end
tblOpenMenus = {}
hook.Run( "CloseDermaMenus" )
end
--
-- Here we detect when the mouse is pressed on another panel
-- This allows us to close the menus.
--
local function DermaDetectMenuFocus( panel, mousecode )
if ( IsValid( panel ) ) then
if ( panel.m_bIsMenuComponent ) then return end
-- Is the parent a menu?
return DermaDetectMenuFocus( panel:GetParent(), mousecode )
end
CloseDermaMenus()
end
hook.Add( "VGUIMousePressed", "DermaDetectMenuFocus", DermaDetectMenuFocus )