summaryrefslogtreecommitdiff
path: root/tex/context/base/mkxl/strc-itm.lmt
blob: f9153c98e8bfc3cdde4fe5c3ee4dd4ac9cf20ffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
if not modules then modules = { } end modules ['strc-itm'] = {
    version   = 1.001,
    comment   = "companion to strc-itm.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

local structures  = structures
local itemgroups  = structures.itemgroups
local jobpasses   = job.passes

local implement   = interfaces.implement

local setvariable = jobpasses.save
local getvariable = jobpasses.getfield

local texsetcount = tex.setcount
local texsetdimen = tex.setdimen

local f_stamp     = string.formatters["itemgroup:%s:%s"]
local counts      = table.setmetatableindex("number")

local c_strc_itemgroups_max_items = tex.iscount("c_strc_itemgroups_max_items")
local d_strc_itemgroups_max_width = tex.isdimen("d_strc_itemgroups_max_width")

-- We keep the counter at the Lua end so we can group the items within
-- an itemgroup which in turn makes for less passes when one itemgroup
-- entry is added or removed.

local trialtypesetting = context.trialtypesetting

local function analyzeitemgroup(name,level)
    local n = counts[name]
    if level == 1 then
        n = n + 1
        counts[name] = n
    end
    local stamp = f_stamp(name,n)
    texsetcount(c_strc_itemgroups_max_items,getvariable(stamp,level,1,0))
    texsetdimen(d_strc_itemgroups_max_width,getvariable(stamp,level,2,0))
end

local function registeritemgroup(name,level,nofitems,maxwidth)
    local n = counts[name]
    if not trialtypesetting() then
        -- no trialtypsetting
        setvariable(f_stamp(name,n), { nofitems, maxwidth }, level)
    elseif level == 1 then
        counts[name] = n - 1
    end
end

implement {
    name      = "analyzeitemgroup",
    actions   = analyzeitemgroup,
    arguments = { "string", "integer" }
}

implement {
    name      = "registeritemgroup",
    actions   = registeritemgroup,
    arguments = { "string", "integer", "integer", "dimen" }
}