Mercurial > wow > ouroloot
comparison core.lua @ 54:6d5fcbdc0590
DoTimerEditBoxDropDown widget to ver 5, warn (once) about missing item cache entries in the filter list dropdown.
author | Farmbuyer of US-Kilrogg <farmbuyer@gmail.com> |
---|---|
date | Sat, 07 Apr 2012 04:59:27 +0000 |
parents | 7af58a7dce7d |
children | ac57a4342812 |
comparison
equal
deleted
inserted
replaced
53:7af58a7dce7d | 54:6d5fcbdc0590 |
---|---|
5 etc); its named indices are: | 5 etc); its named indices are: |
6 - forum saved text from forum markup window, default nil | 6 - forum saved text from forum markup window, default nil |
7 - attend saved text from raid attendence window, default nil | 7 - attend saved text from raid attendence window, default nil |
8 - printed.FOO last loot index formatted into text window FOO, default 0 | 8 - printed.FOO last loot index formatted into text window FOO, default 0 |
9 | 9 |
10 Common g_loot indices: | 10 Common g_loot entry indices: |
11 - kind time/boss/loot | 11 - kind time/boss/loot |
12 - hour 0-23, on the *physical instance server*, not the realm server | 12 - hour 0-23, on the *physical instance server*, not the realm server |
13 - minute 0-59, ditto | 13 - minute 0-59, ditto |
14 - stamp date+timestamp, on the local computer | 14 - stamp date+timestamp, on the local computer |
15 - cols graphical display data; cleared when logging out | 15 - cols graphical display data; cleared when logging out |
32 - itemname not including square brackets | 32 - itemname not including square brackets |
33 - id itemID as number | 33 - id itemID as number |
34 - itemlink full clickable link | 34 - itemlink full clickable link |
35 - itexture icon path (e.g., Interface\Icons\INV_Misc_Rune_01) | 35 - itexture icon path (e.g., Interface\Icons\INV_Misc_Rune_01) |
36 - quality ITEM_QUALITY_* number | 36 - quality ITEM_QUALITY_* number |
37 - disposition offspec/gvault/shard; missing otherwise; can be set from extratext | 37 - disposition offspec/gvault/shard; missing otherwise; can be set from |
38 - count e.g., "x3"; missing otherwise; can be set/removed from extratext; | 38 - the extratext field |
39 - triggers only for a stack of items, not "the boss dropped double axes today" | 39 - count e.g., "x3"; missing otherwise; can be set/removed from |
40 - extratext; triggers only for a stack of items, not "the boss | |
41 - dropped double axes today" | |
40 - is_heroic true if item is heroic; missing otherwise | 42 - is_heroic true if item is heroic; missing otherwise |
41 - cache_miss if GetItemInfo failed; SHOULD be missing (changes other fields) | 43 - cache_miss if GetItemInfo failed; SHOULD be missing (changes other fields) |
42 - bcast_from if rebroadcast from another player; missing otherwise | 44 - bcast_from if rebroadcast from another player; missing otherwise |
43 - extratext text in Note column, including disposition and rebroadcasting | 45 - extratext text in Note column, including disposition and rebroadcasting |
44 - extratext_byhand true if text was edited by player directly; missing otherwise | 46 - extratext_byhand true if text edited by player directly; missing otherwise |
45 | 47 |
46 | 48 |
47 Functions arranged like this, with these lables (for jumping to). As a | 49 Functions arranged like this, with these lables (for jumping to). As a |
48 rule, member functions with UpperCamelCase names are called directly by | 50 rule, member functions with UpperCamelCase names are called directly by |
49 user-facing code, ones with lowercase names are "one step removed", and | 51 user-facing code, ones with lowercase names are "one step removed", and |