File: basic_fields.mask

package info (click to toggle)
arb 6.0.6-8
  • links: PTS, VCS
  • area: non-free
  • in suites: sid, trixie
  • size: 66,204 kB
  • sloc: ansic: 394,911; cpp: 250,290; makefile: 19,644; sh: 15,879; perl: 10,473; fortran: 6,019; ruby: 683; xml: 503; python: 53; awk: 32
file content (43 lines) | stat: -rw-r--r-- 1,095 bytes parent folder | download | duplicates (6)
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
ARB-Input-Mask
# This is a simple user-mask example.

# What to edit
@ITEMTYPE=Species

# Title of the user-mask-window
@TITLE=Basic fields

# Spacing in window
@X_SPACING=5
@Y_SPACING=3

# Show edit/reload button
@EDIT=1

# ---------------------------
# The definition of the mask:

@MASK_BEGIN

    TEXTFIELD(   "Name (Fullname)",  "full_name" ,63  )
    TEXTFIELD(   "Remark  ",  "remark2" ,  70  )
    TEXTFIELD(   "Remark3 ",  "remark3" ,  70  )

    RADIO(       "Species class: ", "class2", 3, y,        \
                "other", "other-value", \
                "artificial",       "artificial-value",       \
                "real",             Allow_Edit,  15,  "real-value" )

    TEXT("Publications:")

    TEXTFIELD(   "Author  ",  "author" ,  70  )
    TEXTFIELD(   "Title   ",  "title" ,  70  )
    TEXTFIELD(   "Journal ",  "journal" ,  70  )

    TEXT("")

    CHECKBOX(    "Checked ", "mbi/checked", 0) TEXTFIELD("by", "mbi/who_checked", 10) TEXTFIELD("Date", "mbi/date", 20)
    CHECKBOX(    "Aligned ","mbi/aligned",1)
    CHECKBOX(    "String  ","mbi/string",0)

@MASK_END