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

68
lua/vgui/dlistlayout.lua Normal file
View File

@@ -0,0 +1,68 @@
local PANEL = {}
function PANEL:Init()
self:SetDropPos( "82" )
end
function PANEL:OnModified()
-- Override me
end
function PANEL:OnChildRemoved()
self:InvalidateLayout()
end
function PANEL:PerformLayout()
self:SizeToChildren( false, true )
end
function PANEL:OnChildAdded( child )
child:Dock( TOP )
local dn = self:GetDnD()
if ( dn ) then
child:Droppable( self:GetDnD() )
end
if ( self:IsSelectionCanvas() ) then
child:SetSelectable( true )
end
end
function PANEL:GenerateExample( ClassName, PropertySheet, Width, Height )
local pnl = vgui.Create( ClassName )
pnl:MakeDroppable( "ExampleDraggable", false )
pnl:SetSize( 200, 200 )
for i = 1, 5 do
local btn = pnl:Add( "DButton" )
btn:SetText( "Button " .. i )
end
for i = 1, 5 do
local btn = pnl:Add( "DLabel" )
btn:SetText( "Label " .. i )
btn:SetMouseInputEnabled( true )
end
PropertySheet:AddSheet( ClassName, pnl, nil, true, true )
end
derma.DefineControl( "DListLayout", "", PANEL, "DDragBase" )