summaryrefslogtreecommitdiff
path: root/tex/context/base/scrn-but.lua
blob: 7d883c910b7ad9a856be1b48646d442d9babf882 (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 ['scrn-but'] = {
    version   = 1.001,
    comment   = "companion to scrn-but.mkiv",
    author    = "Hans Hagen, PRAGMA-ADE, Hasselt NL",
    copyright = "PRAGMA ADE / ConTeXt Development Team",
    license   = "see context related readme files"
}

local context     = context
local f_two_colon = string.formatters["%s:%s"]

local function registerbuttons(tag,register,language)
    local data = sorters.definitions[language]
    local orders = daya and data.orders or sorters.definitions.default.orders
    local tag = tag == "" and { "" } or { tag }
    for i=1,#orders do
        local order = orders[i]
        context.menubutton(tag,f_two_colon(register,order),order)
    end
end

interfaces.implement {
    name      = "registerbuttons",
    actions   = registerbuttons,
    arguments = { "string", "string", "string" }
}