This addon is a development addon that lets you display contents of variables and continually updates the result.
Features
- Continuous colored output of values, tables, selected functions/methods, and ui objects
- Left-Click any key of a table to open a new watcher watching for this key
- Try /rewatch after reloading your ui, you'll love it
- Use your scrollwheel...
- Right-Click the title bars for a dropdown menu
- The white square in the lower right corner of a watcher window is actually a resize-handle... sorry for the missing texture. Window sizes are saved through sessions
Slash-Commands
- /watch [expression]
- Watches defined expression, if you skip the expression part, it will watch for "nil" wich is quite useless though.
- /unwatch <id>
- Removes a watcher with <id>, ID's are shown in the watcher window title as a number between ((double parentheses)).
- /rewatch
- Restores watchers from the last session. This might yield unexpected results if called more than once ...
Useful info
- You can watch for invalid expressions that might become valid sometime (or never, though that's not really useful), like MyAddonTable.frameindex:GetTop() might throw an error normally if the frame does not exist. This error will even be printed in the watcher frame, but if you create it during your session, the watcher will print the correct value.
- Syntax errors should be detected when executing the slash command and should prevent generating a watcher.
- Your expression will result in parsing a code like "return {expression}" (the curly braces are really there)
Stuff that is planned
- Use a timer lib for updating, but do not use LibStub, so it will work even if a future untested version of the timer brought in from another addon is bugged. This is a debugging addon, it would be a shame if it was not working due to such an issue.
- Show/Hide unsafe functions - Often you actually don't care about table values that contain functions, especially those that are not listed as safe methods, so I'd like to add an option to the dropdown to hide/show those
- Change expression - Just a dropdown menu item to change the expression
- A scrollbar... well...
- Highlight lines that change (I already know how to do it, just can't decide on the color... :D)
- 2 comments
- 2 comments
Facts
- Date created
- 14 Jul 2009
- Category
- Last update
- 19 Sep 2009
- Development stage
- Beta
- Language
- enUS
- License
- GNU General Public License version 3 (GPLv3)
- Curse link
- watch
- Recent files
- #2
watchout Wed, 15 Jul 2009 02:51:25Ok never mind, I guess I found it
- #1
watchout Wed, 15 Jul 2009 01:37:44If anyone could tell me why I get this error when reusing a frame, I'd be a happy coder...