comparison text_tabs.lua @ 16:5ee4edd24c13

- new blizz methods for editboxes in dialog popups - initial code for dropdowns in history (not active yet) - hovering and shift-clicking to link out of history - proper confirmations for history rewriting - options checkboxes more grid-like - saved texts get a scrollbar instead of expanding indefinitely (duh) - rearranged savedvars a bit (and added transition code) - stores raider join/leave times and "demographic" info, all for MLEQDKP - minor bugfixes and tweaks
author Farmbuyer of US-Kilrogg <farmbuyer@gmail.com>
date Thu, 25 Aug 2011 00:45:31 +0000
parents 952c3ac0e783
children 1070a14cfee4
comparison
equal deleted inserted replaced
15:d8fee518ce5d 16:5ee4edd24c13
161 for i = 1, GetNumRaidMembers() do 161 for i = 1, GetNumRaidMembers() do
162 table.insert(raiders, (GetRaidRosterInfo(i))) 162 table.insert(raiders, (GetRaidRosterInfo(i)))
163 end 163 end
164 table.sort(raiders) 164 table.sort(raiders)
165 local h, m = GetGameTime() 165 local h, m = GetGameTime()
166 local additional = ("Attendance at %s:%s:\n%s"):format(h,m,table.concat(raiders, ", ")) 166 local additional = ("Attendance at %.2d:%.2d:\n%s"):format(h,m,table.concat(raiders, ", "))
167 editbox:SetText(editbox:GetText() .. '\n' .. additional) 167 editbox:SetText(editbox:GetText() .. '\n' .. additional)
168 end) 168 end)
169 container:AddChild(w) 169 container:AddChild(w)
170 end 170 end
171 171