unitframes: add option to show tooltip

This commit is contained in:
shagu
2017-10-18 23:35:08 +02:00
parent c59d920368
commit efb3228d46
3 changed files with 20 additions and 0 deletions
+9
View File
@@ -722,6 +722,7 @@ pfUI:RegisterModule("gui", function ()
CreateConfig(this, T["Enable Debuff Indicators"], C.unitframes.player, "debuff_indicator", "checkbox")
CreateConfig(this, T["Enable Clickcast"], C.unitframes.player, "clickcast", "checkbox")
CreateConfig(this, T["Enable Range Fading"], C.unitframes.player, "faderange", "checkbox")
CreateConfig(this, T["Show Tooltip On Mouseover"], C.unitframes.player, "showtooltip", "checkbox")
CreateConfig(this, T["Enable Health Color in Text"], C.unitframes.player, "healthcolor", "checkbox")
CreateConfig(this, T["Enable Power Color in Text"], C.unitframes.player, "powercolor", "checkbox")
CreateConfig(this, T["Enable Level Color in Text"], C.unitframes.player, "levelcolor", "checkbox")
@@ -762,6 +763,7 @@ pfUI:RegisterModule("gui", function ()
CreateConfig(this, T["Enable Debuff Indicators"], C.unitframes.target, "debuff_indicator", "checkbox")
CreateConfig(this, T["Enable Clickcast"], C.unitframes.target, "clickcast", "checkbox")
CreateConfig(this, T["Enable Range Fading"], C.unitframes.target, "faderange", "checkbox")
CreateConfig(this, T["Show Tooltip On Mouseover"], C.unitframes.target, "showtooltip", "checkbox")
CreateConfig(this, T["Enable Health Color in Text"], C.unitframes.target, "healthcolor", "checkbox")
CreateConfig(this, T["Enable Power Color in Text"], C.unitframes.target, "powercolor", "checkbox")
CreateConfig(this, T["Enable Level Color in Text"], C.unitframes.target, "levelcolor", "checkbox")
@@ -801,6 +803,7 @@ pfUI:RegisterModule("gui", function ()
CreateConfig(this, T["Enable Debuff Indicators"], C.unitframes.ttarget, "debuff_indicator", "checkbox")
CreateConfig(this, T["Enable Clickcast"], C.unitframes.ttarget, "clickcast", "checkbox")
CreateConfig(this, T["Enable Range Fading"], C.unitframes.ttarget, "faderange", "checkbox")
CreateConfig(this, T["Show Tooltip On Mouseover"], C.unitframes.ttarget, "showtooltip", "checkbox")
CreateConfig(this, T["Enable Health Color in Text"], C.unitframes.ttarget, "healthcolor", "checkbox")
CreateConfig(this, T["Enable Power Color in Text"], C.unitframes.ttarget, "powercolor", "checkbox")
CreateConfig(this, T["Enable Level Color in Text"], C.unitframes.ttarget, "levelcolor", "checkbox")
@@ -840,6 +843,7 @@ pfUI:RegisterModule("gui", function ()
CreateConfig(this, T["Enable Debuff Indicators"], C.unitframes.pet, "debuff_indicator", "checkbox")
CreateConfig(this, T["Enable Clickcast"], C.unitframes.pet, "clickcast", "checkbox")
CreateConfig(this, T["Enable Range Fading"], C.unitframes.pet, "faderange", "checkbox")
CreateConfig(this, T["Show Tooltip On Mouseover"], C.unitframes.pet, "showtooltip", "checkbox")
CreateConfig(this, T["Enable Health Color in Text"], C.unitframes.pet, "healthcolor", "checkbox")
CreateConfig(this, T["Enable Power Color in Text"], C.unitframes.pet, "powercolor", "checkbox")
CreateConfig(this, T["Enable Level Color in Text"], C.unitframes.pet, "levelcolor", "checkbox")
@@ -879,6 +883,7 @@ pfUI:RegisterModule("gui", function ()
CreateConfig(this, T["Enable Debuff Indicators"], C.unitframes.focus, "debuff_indicator", "checkbox")
CreateConfig(this, T["Enable Clickcast"], C.unitframes.focus, "clickcast", "checkbox")
CreateConfig(this, T["Enable Range Fading"], C.unitframes.focus, "faderange", "checkbox")
CreateConfig(this, T["Show Tooltip On Mouseover"], C.unitframes.focus, "showtooltip", "checkbox")
CreateConfig(this, T["Enable Health Color in Text"], C.unitframes.focus, "healthcolor", "checkbox")
CreateConfig(this, T["Enable Power Color in Text"], C.unitframes.focus, "powercolor", "checkbox")
CreateConfig(this, T["Enable Level Color in Text"], C.unitframes.focus, "levelcolor", "checkbox")
@@ -943,6 +948,7 @@ pfUI:RegisterModule("gui", function ()
CreateConfig(this, T["Enable Debuff Indicators"], C.unitframes.raid, "debuff_indicator", "checkbox")
CreateConfig(this, T["Enable Clickcast"], C.unitframes.raid, "clickcast", "checkbox")
CreateConfig(this, T["Enable Range Fading"], C.unitframes.raid, "faderange", "checkbox")
CreateConfig(this, T["Show Tooltip On Mouseover"], C.unitframes.raid, "showtooltip", "checkbox")
CreateConfig(this, T["Enable Health Color in Text"], C.unitframes.raid, "healthcolor", "checkbox")
CreateConfig(this, T["Enable Power Color in Text"], C.unitframes.raid, "powercolor", "checkbox")
CreateConfig(this, T["Enable Level Color in Text"], C.unitframes.raid, "levelcolor", "checkbox")
@@ -982,6 +988,7 @@ pfUI:RegisterModule("gui", function ()
CreateConfig(this, T["Enable Debuff Indicators"], C.unitframes.group, "debuff_indicator", "checkbox")
CreateConfig(this, T["Enable Clickcast"], C.unitframes.group, "clickcast", "checkbox")
CreateConfig(this, T["Enable Range Fading"], C.unitframes.group, "faderange", "checkbox")
CreateConfig(this, T["Show Tooltip On Mouseover"], C.unitframes.group, "showtooltip", "checkbox")
CreateConfig(this, T["Enable Health Color in Text"], C.unitframes.group, "healthcolor", "checkbox")
CreateConfig(this, T["Enable Power Color in Text"], C.unitframes.group, "powercolor", "checkbox")
CreateConfig(this, T["Enable Level Color in Text"], C.unitframes.group, "levelcolor", "checkbox")
@@ -1021,6 +1028,7 @@ pfUI:RegisterModule("gui", function ()
CreateConfig(this, T["Enable Debuff Indicators"], C.unitframes.grouptarget, "debuff_indicator", "checkbox")
CreateConfig(this, T["Enable Clickcast"], C.unitframes.grouptarget, "clickcast", "checkbox")
CreateConfig(this, T["Enable Range Fading"], C.unitframes.grouptarget, "faderange", "checkbox")
CreateConfig(this, T["Show Tooltip On Mouseover"], C.unitframes.grouptarget, "showtooltip", "checkbox")
CreateConfig(this, T["Enable Health Color in Text"], C.unitframes.grouptarget, "healthcolor", "checkbox")
CreateConfig(this, T["Enable Power Color in Text"], C.unitframes.grouptarget, "powercolor", "checkbox")
CreateConfig(this, T["Enable Level Color in Text"], C.unitframes.grouptarget, "levelcolor", "checkbox")
@@ -1060,6 +1068,7 @@ pfUI:RegisterModule("gui", function ()
CreateConfig(this, T["Enable Debuff Indicators"], C.unitframes.grouppet, "debuff_indicator", "checkbox")
CreateConfig(this, T["Enable Clickcast"], C.unitframes.grouppet, "clickcast", "checkbox")
CreateConfig(this, T["Enable Range Fading"], C.unitframes.grouppet, "faderange", "checkbox")
CreateConfig(this, T["Show Tooltip On Mouseover"], C.unitframes.grouppet, "showtooltip", "checkbox")
CreateConfig(this, T["Enable Health Color in Text"], C.unitframes.grouppet, "healthcolor", "checkbox")
CreateConfig(this, T["Enable Power Color in Text"], C.unitframes.grouppet, "powercolor", "checkbox")
CreateConfig(this, T["Enable Level Color in Text"], C.unitframes.grouppet, "levelcolor", "checkbox")