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:SecureHandlers
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!
Advanced
Special characters
Help
Heading
Level 2
Level 3
Level 4
Level 5
Format
Insert
Latin
Latin extended
IPA
Symbols
Greek
Greek extended
Cyrillic
Arabic
Arabic extended
Hebrew
Bangla
Tamil
Telugu
Sinhala
Devanagari
Gujarati
Thai
Lao
Khmer
Canadian Aboriginal
Runes
Á
á
À
à
Â
â
Ä
ä
Ã
ã
Ǎ
ǎ
Ā
ā
Ă
ă
Ą
ą
Å
å
Ć
ć
Ĉ
ĉ
Ç
ç
Č
č
Ċ
ċ
Đ
đ
Ď
ď
É
é
È
è
Ê
ê
Ë
ë
Ě
ě
Ē
ē
Ĕ
ĕ
Ė
ė
Ę
ę
Ĝ
ĝ
Ģ
ģ
Ğ
ğ
Ġ
ġ
Ĥ
ĥ
Ħ
ħ
Í
í
Ì
ì
Î
î
Ï
ï
Ĩ
ĩ
Ǐ
ǐ
Ī
ī
Ĭ
ĭ
İ
ı
Į
į
Ĵ
ĵ
Ķ
ķ
Ĺ
ĺ
Ļ
ļ
Ľ
ľ
Ł
ł
Ń
ń
Ñ
ñ
Ņ
ņ
Ň
ň
Ó
ó
Ò
ò
Ô
ô
Ö
ö
Õ
õ
Ǒ
ǒ
Ō
ō
Ŏ
ŏ
Ǫ
ǫ
Ő
ő
Ŕ
ŕ
Ŗ
ŗ
Ř
ř
Ś
ś
Ŝ
ŝ
Ş
ş
Š
š
Ș
ș
Ț
ț
Ť
ť
Ú
ú
Ù
ù
Û
û
Ü
ü
Ũ
ũ
Ů
ů
Ǔ
ǔ
Ū
ū
ǖ
ǘ
ǚ
ǜ
Ŭ
ŭ
Ų
ų
Ű
ű
Ŵ
ŵ
Ý
ý
Ŷ
ŷ
Ÿ
ÿ
Ȳ
ȳ
Ź
ź
Ž
ž
Ż
ż
Æ
æ
Ǣ
ǣ
Ø
ø
Œ
œ
ß
Ð
ð
Þ
þ
Ə
ə
Formatting
Links
Headings
Lists
Files
References
Discussion
Description
What you type
What you get
Italic
''Italic text''
Italic text
Bold
'''Bold text'''
Bold text
Bold & italic
'''''Bold & italic text'''''
Bold & italic text
{{Uitech}} '''SecureHandlers''' is a new set of widget templates provided in [[Patch 3.0]] to enhance addon functionality while in combat lockdown, replacing most variations of SecureStateHeader behavior in 2.0. The templates enable execution of a limited subset of addon code in a restricted but secure environment, allowing addons to perform actions that would normally be impossible. SecureHandlers are implemented entirely in Lua/XML code, and code is publicly visible as part of [[FrameXML]]. The templates are defined in SecureHandlerTemplates.xml, supporting code is in SecureHandlers.lua, and the restricted environment/execution framework is provided by RestrictedExecution.lua, RestrictedFrames.lua, and RestrictedEnvironment.lua files. == SecureHandler templates== {| class="darktable" ! Template !! Function !! Executed snippets |- | SecureHandlerBaseTemplate || Enables use of SecureHandler methods on the frame. || ''none'' |- | SecureHandlerStateTemplate || Fires snippet when a state-''xxx'' attribute changes. || '''_onstate-''xxx'''''(self, stateid, newstate) |- | SecureHandlerAttributeTemplate || Responds to attribute changes || '''_onattributechanged'''(self, name, value) |- | SecureHandlerClickTemplate || Responds to clicks || '''_onclick'''(self, button, down) |- | SecureHandlerDoubleClickTemplate || Responds to double clicks || '''_ondoubleclick'''(self, button, down) |- | SecureHandlerDragTemplate || Enables dragging || '''_ondragstart'''(self, button), '''_onreceivedrag'''(self, button, kind, value, ...) |- | SecureHandlerMouseUpDownTemplate || Mouse up/down events || '''_onmouseup'''(self, button), '''_onmousedown'''(self, button) |- | SecureHandlerMouseWheelTemplate || Mouse wheel || '''_onmousewheel'''(self, delta) |- | SecureHandlerEnterLeaveTemplate || Mouse entering/leaving frame || '''_onenter'''(self), '''_onleave'''(self) |} == Snippets == To add a snippet for a SecureHandler template to call, you should set it as an attribute on the widget inheriting from a SecureHandler template. For example: -- Assume widget is a frame inheriting from SecureHandlerClickTemplate. widget:SetAttribute("_onclick", [=[ -- self, button, down are considered "arguments" to the _onclick handler if button == "RightButton" then self:Hide(); end ]=]); The <code>[=[ ... ]=]</code> syntax allows you to specify long strings without escaping characters within them. Snippets can access a limited subset of the World of Warcraft API; they are said to execute in a [[RestrictedEnvironment|restricted environment]]. Limitations include inability to handle native Lua tables (instead resorting to [[RestrictedEnvironment#Restricted tables|restricted tables]] and [[RestrictedEnvironment#Frame handle methods|frame references]]), and lack of direct access to functions (although some [[RestrictedEnvironment#Control methods|control methods]] can be used to emulate a call stack). == Methods == If ''widget'' inherits from a SecureHandler template, you can use the following methods: ; widget<nowiki>:</nowiki>Execute("codeSnippet") : executes codeSnippet in the [[RestrictedEnvironment|restricted environment]] owned by the widget. ; widget<nowiki>:</nowiki>WrapScript(frame, "script", "preBody", "postBody") : wraps the specified script handler of an explicitly protected frame with the specified pre and post snippets. The snippets are executed within the widget's restricted environment. ; widget<nowiki>:</nowiki>UnwrapScript(frame, "script") : returns the outermost wrapped handler for the frame's script handler. ; widget<nowiki>:</nowiki>SetFrameRef("id", frame) : creates a frame reference that can be accessed inside the restricted environment. == See also == * {{elink|link=http://forums.worldofwarcraft.com/thread.html?topicId=11162847431&sid=1|icon=externalarticle|site=Introduction to the SecureHandlers|desc=by alestane.}} {{API Trail Secure}}
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)
Template:API Trail Secure
(
edit
)
Template:Apinav
(
edit
)
Template:Editlink
(
edit
)
Template:Elink
(
edit
)
Template:Navbar
(
edit
)
Template:Navbox
(
edit
)
Template:Tcl
(
edit
)
Template:Uitech
(
edit
)