summaryrefslogtreecommitdiff
path: root/tex/context/base/strc-itm.lua
blob: 53e0d56bf2255c25798f3ccebdf52aa9ad55fb1b (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
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

structures.itemgroups = structures.itemgroups or { }
local itemgroups      = structures.itemgroups

local jobpasses       = job.passes

function itemgroups.register(name,nofitems,maxwidth)
    jobpasses.savedata("itemgroup", { nofitems, maxwidth })
end

function itemgroups.nofitems(name,index)
    jobpasses.getfield("itemgroup", index, 1, 0)
end

function itemgroups.maxwidth(name,index)
    jobpasses.getfield("itemgroup", index, 2, 0)
end