- Added keybinds to reset segments and scroll up/down.

- Added Spell Customization options where icon and the name of a spell can be changed.
- Added option to change the micro displays side, now it can be shown on the window top side.
- Added options to change the transparency when out of combat and out of a group.
- Added and Still under development the panel for create data captures for charts.
- Fixed a issue with flat skin where the close button was just too big.

- New API: _detalhes:InstanceCall (function, params ...) runs a function into all opened instances.
- New Framework: gump:NewSpellEntry() create a textfield for choose a spell.
- New Framework: gump:NewSpecialLuaEditorEntry() create a textbox with lua syntaxes highlight.
- New FrameWork: gump:NewFillPanel() create a panel with rows.
This commit is contained in:
tercio
2014-04-30 21:55:56 -03:00
parent 432eccb1b0
commit bc1d7965eb
36 changed files with 3446 additions and 420 deletions
+24 -3
View File
@@ -78,7 +78,14 @@
--> functions to set the three statusbar places: left, center and right
function _detalhes.StatusBar:SetCenterPlugin (instance, childObject, fromStartup)
childObject.frame:Show()
childObject.frame:SetPoint ("center", instance.baseframe.rodape.StatusBarCenterAnchor, "center")
childObject.frame:ClearAllPoints()
if (instance.micro_displays_side == 2) then --> default - bottom
childObject.frame:SetPoint ("center", instance.baseframe.rodape.StatusBarCenterAnchor, "center")
elseif (instance.micro_displays_side == 1) then --> top side
childObject.frame:SetPoint ("center", instance.baseframe.cabecalho.StatusBarCenterAnchor, "center")
end
_detalhes.StatusBar:AlignPluginText (childObject, 2)
instance.StatusBar.center = childObject
@@ -102,7 +109,14 @@
end
childObject.frame:Show()
childObject.frame:SetPoint ("left", instance.baseframe.rodape.StatusBarLeftAnchor, "left")
childObject.frame:ClearAllPoints()
if (instance.micro_displays_side == 2) then --> default - bottom
childObject.frame:SetPoint ("left", instance.baseframe.rodape.StatusBarLeftAnchor, "left")
elseif (instance.micro_displays_side == 1) then --> top side
childObject.frame:SetPoint ("left", instance.baseframe.cabecalho.StatusBarLeftAnchor, "left")
end
_detalhes.StatusBar:AlignPluginText (childObject, 1)
instance.StatusBar.left = childObject
@@ -121,7 +135,14 @@
function _detalhes.StatusBar:SetRightPlugin (instance, childObject, fromStartup)
childObject.frame:Show()
childObject.frame:SetPoint ("right", instance.baseframe.rodape.direita, "right", -20, 10)
childObject.frame:ClearAllPoints()
if (instance.micro_displays_side == 2) then --> default - bottom
childObject.frame:SetPoint ("right", instance.baseframe.rodape.direita, "right", -20, 10)
elseif (instance.micro_displays_side == 1) then --> top side
childObject.frame:SetPoint ("right", instance.baseframe.cabecalho.StatusBarRightAnchor, "right")
end
_detalhes.StatusBar:AlignPluginText (childObject, 3)
instance.StatusBar.right = childObject