WoW HandleIt addon Dragonflight/Wrath of the Lich King Classic 2024
logo
wow addon HandleIt

HandleIt

Game Version: 8.1.5
Total Downloads: 1,629
Updated: Jun 20, 2019
Created: Aug 14, 2017
download HandleItDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
1.2.0 +1 More release 33.88 KB Jun 20, 2019 8.1.5 207 download HandleIt 1.2.0

+1 More releaseDownload
1.1.0 +1 More release 33.63 KB Jun 17, 2019 8.1.5 996 download HandleIt 1.1.0

+1 More releaseDownload
1.0.0 +1 More release 33.54 KB Aug 14, 2017 7.2.5 211 download HandleIt 1.0.0

+1 More releaseDownload
1.1.0-2-g3688a92-alpha +1 More alpha 33.85 KB Jun 19, 2019 8.1.5 18 download HandleIt 1.1.0-2-g3688a92-alpha

+1 More alphaDownload
1.1.0-1-g37c6f64-alpha +1 More alpha 33.77 KB Jun 18, 2019 8.1.5 17 download HandleIt 1.1.0-1-g37c6f64-alpha

+1 More alphaDownload
1.0.0-4-g2b36a0f-alpha +1 More alpha 33.60 KB Jun 17, 2019 8.1.5 14 download HandleIt 1.0.0-4-g2b36a0f-alpha

+1 More alphaDownload
4d39766-alpha +1 More alpha 33.54 KB Aug 14, 2017 7.2.5 45 download HandleIt 4d39766-alpha

+1 More alphaDownload
af85587-alpha +1 More alpha 33.47 KB Aug 14, 2017 7.2.5 22 download HandleIt af85587-alpha

+1 More alphaDownload

Screenshots

Description

Share this:

HandleIt

This is a small addon that allows you to write event handlers in a GUI in-game. Useful if you want to look up the event
arguments, check some state or even save stuff to saved variables.

Features

  • you can enable/disable events without losing your handler code
  • a default handler displaying all event arguments is provided
  • you can write stuff to the addon's SavedVariables from within your handler
  • you can register further events and add additional event handlers from within your handlers (use at your own risk)

How to use

Type /handleit or /hit in the chat to open the options. Click "New event" or a select an existing one. Edit to your
liking.

Anytime you change something, the event will be automatically disabled. Re-enable when you are done.

In your handler you get the following arguments through ..., the same way you get the addon's name and namespace in addons, meaning you can name those whatever you like:

  • self – the frame the addon uses for event registration (Frame)
  • db – a reference to the addon's global SavedVariables. Use this to save your state if needed (table)
  • event – the name of the triggered event (string)
  • … – any further event arguments

Calling other event handlers is done by self[event](...) where self is the addon's frame, event is the event name
and ... preserves the argument order as above.

API

The API, in its current state, is not meant to replace or alter the GUI. This is what the GUI uses to (un)register
events and is exposed to you in case you find it useful. The state of the GUI is saved to the addon's SavedVariables.

  • :AddEvent(data) – used to add a new event, or add further callbacks to its handler. Adding an event means
    registering it and attaching the supplied callbacks to make up a handler.
    data is a simple associative array as follows:

    • event – the name of the event you'd like to register (string)
    • unit1 – the first event unit (string or nil)
    • unit2 – the second event unit (string or nil)
    • handler – the callback(s) you want to use as the event handler (string or function or a table thereof)

    NOTE: If you call :AddEvent for an already added event, it will add the new callbacks instead of rewriting the old
    ones.
    If either unit1 or unit2 are non-nils, RegisterUnitEvent will be used for event registration potentially
    overwriting event units from previous calls.

  • :RemoveEvent(data) – used to remove an event, where data is structured as described above. Actually only
    data.event plays a role here. Removing an event means unregistering it und deleting the associated handler.

Limitations

The GUI is limited to one handler per event. So if you added another handler from code and then edit the event in
the GUI, the handler you added will be detached automatically without notice.

The GUI does not list events and handlers you added from code.

Bug reports

You can file bug reports and issues on the project's page at GitHub.

Comments

Add a comment