Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
WoW
Talk
English
Views
Read
Edit
History
More
Search
Navigation
Home
Random page
Help using wiki
Editions
for WoW
for WildStar
for Solar2D
Documentation
for WoW
for WildStar
Reference
WoW
⦁ FrameXML
⦁ AddOns
⦁ API
⦁ WoW Lua
WildStar
⦁ AddOns
⦁ API
⦁ WildStar Lua
Engine
Tools
What links here
Related changes
Special pages
Page information
Site
Recent Changes
Editing
WoW:USERAPI ConfigMode
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Multimode handler === <div style="margin-left: 3%;"> Some addons can have several different layouts and thus different test modes. This is the case of several unit frame addons. Such addons can publish a more elaborated handler that supports the following calls: * '''handlerFunc("ON", mode)''': enter configuration mode ''mode'' * '''handlerFunc("OFF")''': leave configuration mode * '''mode1, mode2, mode3, ... = handlerFunc("GETMODES")''': list available modes. :{{icon-exclamation}}Note that you HAVE to be prepared to just receive ("ON") without a mode from a "simple" controller addon. In this case, you can e.g. pick the last mode your addon was in, or whatever makes sense to your addon (UF addon in a raid? show raid mode. In a party? show party mode.) Here is the sample of a unit frame multimode handler: -- Create the global table if it does not exist yet CONFIGMODE_CALLBACKS = CONFIGMODE_CALLBACKS or {} -- Declare our handler CONFIGMODE_CALLBACKS["MyUnitFrameAddon"] = function(action, mode) if action == "ON" then MyUnitFrameAddon:EnableTestMode(mode) -- note: mode can be nil! elseif action == "OFF" then MyUnitFrameAddon:DisableTestMode() elseif action == "GETMODES" then return "party", "raid" end end </div>
Summary:
Please note that all contributions to AddOn Studio are considered to be released under the Creative Commons Attribution-NonCommercial-ShareAlike (see
AddOn Studio Wiki:Copyrights
for details).
Submissions must be written by you, or copied from a public domain or similar free resource (see
AddOn Studio Wiki:Copyrights
for details).
Cancel
Editing help
(opens in new window)