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
def_widget_opts! {
    TkMenuOpt: (
        // standard
        TkActiveBackground,
        TkActiveBorderWidth,
        TkActiveForeground,
        TkBackground,
        TkBg,
        TkBorderWidth,
        TkBd,
        TkCursor,
        TkDisabledForeground,
        TkFont,
        TkForeground,
        TkRelief,
        TkTakeFocus,

        // widget-specific
        TkPostCommand,
        TkSelectColor,
        TkTearOff,
        TkTearOffCommand,
        TkTitle,
        TkType,
    ),
    TkMenuEntryOpt: (
        TkActiveBackground,
        TkActiveForeground,
        TkAccelerator,
        TkBackground,
        TkBitmap,
        TkColumnBreak,
        TkCommand,
        TkCompound,
        TkFont,
        TkForeground,
        TkHideMargin,
        TkImage,
        TkIndicatorOn,
        TkLabel,
        TkMenu,
        TkOffValue,
        TkOnValue,
        TkSelectColor,
        TkSelectImage,
        TkState,
        TkUnderline,
        TkValue,
        TkVariable,
    ),
}