summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/base/pack-rul.lua
blob: 6bbd3c856b4e586dbf2113bda66a0f6beced110c (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
if not modules then modules = { } end modules ['pack-rul'] = {
    version   = 1.001,
    comment   = "companion to pack-rul.tex",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

--[[ldx--
<p>An explanation is given in the history document <t>mk</t>.</p>
--ldx]]--

local texdimen, texcount, texbox, texwd = tex.dimen, tex.count, tex.box, tex.wd
local hpack, free, copy, traverse_id = node.hpack, node.free, node.copy_list, node.traverse_id

function commands.doreshapeframedbox(n)
    local noflines, lastlinelength = 0, 0
    if texwd[n] ~= 0 then
        local list = texbox[n].list
        if list then
            local width, done = 0, false
            for h in traverse_id('hlist',list) do
                local l = h.list
                if l then
                    done = true
                    local p = hpack(copy(l))
                    lastlinelength = p.width
                    if lastlinelength > width then
                        width = lastlinelength
                    end
                    free(p)
                end
            end
            if done then
                if width ~= 0 then
                    for h in traverse_id('hlist',list) do
                        local l = h.list
                        if l then
                    --  if h.width ~= width then -- else no display math handling (uses shift)
                            h.list = hpack(l,width,'exactly')
                            h.shift = 0 -- needed for display math
                            h.width = width
                    --  end
                        end
                    end
                end
                texwd[n] = width
            end
        end
    end
    texdimen["framedlastlength"] = lastlinelength
    texcount["framednoflines"]   = noflines
end