Fixed an issue with the loot on the end of the mythic plus panel
This commit is contained in:
@@ -549,13 +549,16 @@ local setColorProperties = function(parent, widget, widgetTable, currentXOffset,
|
||||
label:ClearAllPoints()
|
||||
|
||||
if (bAlignAsPairs) then
|
||||
PixelUtil.SetPoint(label, "topleft", widget:GetParent(), "topleft", currentXOffset, currentYOffset)
|
||||
PixelUtil.SetPoint(widget.widget, "left", label, "left", nAlignAsPairsLength, 0)
|
||||
|
||||
if (not widget.highlightFrame) then
|
||||
local highlightFrame = createOptionHighlightFrame(widget, label, (widgetWidth or 140) + nAlignAsPairsLength + 5)
|
||||
widget.highlightFrame = highlightFrame
|
||||
end
|
||||
|
||||
----
|
||||
widget._valueChangeHook = valueChangeHook
|
||||
--widget.highlightFrame:SetScript("OnClick", highlightFrameOnClickToggle) --todo make this function for color picker color pick start
|
||||
PixelUtil.SetPoint(label, "topleft", widget:GetParent(), "topleft", currentXOffset, currentYOffset)
|
||||
PixelUtil.SetPoint(widget.widget, "right", widget.highlightFrame, "right", -3, 0)
|
||||
else
|
||||
if (widgetTable.boxfirst or bUseBoxFirstOnAllWidgets) then
|
||||
label:SetPoint("left", widget.widget, "right", 2, 0)
|
||||
|
||||
@@ -87,6 +87,11 @@ end
|
||||
---@field lines line[]
|
||||
---@field fixedLineWidth number
|
||||
---@field chartName string
|
||||
---@field dataPoint_OnEnterFunc fun(self: df_chart, onEnterFunc: function, ...) set the function to be called when the mouse hover over a data point in the chart
|
||||
---@field dataPoint_OnEnterPayload any[] set the payload to be passed to the function set by DataPoint_OnEnterFunc
|
||||
---@field dataPoint_OnLeaveFunc fun(self: df_chart, onLeaveFunc: function, ...) set the function to be called when the mouse leaves a data point in the chart
|
||||
---@field dataPoint_OnLeavePayload any[] set the payload to be passed to the function set by DataPoint_OnLeaveFunc
|
||||
---@field GetOnEnterLeaveFunctions fun(self: df_chart) : function, any[], function, any[] return the functions and payloads set by DataPoint_OnEnterFunc and DataPoint_OnLeaveFunc
|
||||
---@field ChartFrameConstructor fun(self: df_chart) set the default values for the chart frame
|
||||
---@field GetLine fun(self: df_chart) : line return a line and also internally handle next line
|
||||
---@field GetLines fun(self: df_chart) : line[] return a table with all lines already created
|
||||
@@ -684,6 +689,31 @@ detailsFramework.ChartFrameMixin = {
|
||||
self:UpdateFrameSizeCache()
|
||||
end,
|
||||
|
||||
---when the mouse hover over a data point in the chart, this function will be called
|
||||
---@param self df_chart
|
||||
SetOnEnterFunction = function(self, onEnterFunc, ...)
|
||||
self.dataPoint_OnEnterFunc = onEnterFunc
|
||||
self.dataPoint_OnEnterPayload = {...}
|
||||
end,
|
||||
|
||||
---when the mouse leaves a data point in the chart, this function will be called
|
||||
---@param self df_chart
|
||||
SetOnLeaveFunction = function(self, onLeaveFunc, ...)
|
||||
self.dataPoint_OnLeaveFunc = onLeaveFunc
|
||||
self.dataPoint_OnLeavePayload = {...}
|
||||
end,
|
||||
|
||||
---get the data point on enter and on leave function
|
||||
---@param self df_chart
|
||||
---@return function onEnterFunc
|
||||
---@return any[] onEnterPayload
|
||||
---@return function onLeaveFunc
|
||||
---@return any[] onLeavePayload
|
||||
GetOnEnterLeaveFunctions = function(self)
|
||||
return self.dataPoint_OnEnterFunc, self.dataPoint_OnEnterPayload, self.dataPoint_OnLeaveFunc, self.dataPoint_OnLeavePayload
|
||||
end,
|
||||
|
||||
---this function will draw the chart lines
|
||||
---@param self df_chart
|
||||
---@param yPointScale number|nil
|
||||
---@param bUpdateLabels boolean|nil
|
||||
@@ -709,6 +739,8 @@ detailsFramework.ChartFrameMixin = {
|
||||
|
||||
self:ResetDataIndex()
|
||||
|
||||
print(maxLines)
|
||||
|
||||
for i = 1, maxLines do
|
||||
local line = self:GetLine()
|
||||
|
||||
@@ -798,6 +830,8 @@ local createChartFrame = function(parent, name)
|
||||
return chartFrame
|
||||
end
|
||||
|
||||
|
||||
|
||||
function detailsFramework:CreateGraphicLineFrame(parent, name)
|
||||
---@type df_chart
|
||||
local newGraphicFrame = createChartFrame(parent, name)
|
||||
|
||||
@@ -312,10 +312,9 @@
|
||||
---@field CreateSearchBox fun(self:table, parent:frame, callback:function) : df_searchbox
|
||||
---@field ConvertAnchorPointToInside fun(self:table, anchorPoint:anchorid) : anchorid
|
||||
---@field CreateHeader fun(self:table, parent:frame, headerTable:df_headercolumndata[], options:table?, frameName:string?) : df_headerframe
|
||||
---@field CreateGraphicMultiLineFrame fun(self:table, parent:frame, name:string) : df_chartmulti
|
||||
---@field CreateGraphicLineFrame fun(self:table, parent:frame, name:string) : df_chart
|
||||
---@field
|
||||
---@field
|
||||
|
||||
|
||||
|
||||
--[=[
|
||||
Wrapped objects: when using the following functions, the object will be wrapped in a table, e.g. detailsFramework:CreateButton() will return a table with the button, the button will be accessible through the "button" key.
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
|
||||
|
||||
local dversion = 555
|
||||
local dversion = 556
|
||||
local major, minor = "DetailsFramework-1.0", dversion
|
||||
local DF, oldminor = LibStub:NewLibrary(major, minor)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user