This file is indexed.

/usr/share/nip2/compat/7.10/Widgets.def is in nip2 7.38.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
Widget_slider_item = class 
	Menuaction "_Slider" "make a new slider widget" {
	icon = "nip-slider-16.png";
	action = Slider 0 255 128;
}

Widget_toggle_item = class 
	Menuaction "_Toggle" "make a new toggle widget" {
	action = Toggle "untitled" false;
}

Widget_option_item = class 
	Menuaction "_Option" "make a new option widget" {
	action = Option "untitled" ["option0", "option1"] 0;
}

Widget_string_item = class 
	Menuaction "St_ring" "make a new string widget" {
	action = String "Enter a string" "sample text";
}

Widget_number_item = class 
	Menuaction "_Number" "make a new number widget" {
	action = Number "Enter a number" 42;
}

Widget_expression_item = class 
	Menuaction "_Expression" "make a new expression widget" {
	action = Expression "Enter an expression" 42;
}

Widget_pathname_item = class 
	Menuaction "_File Chooser" "make a new file chooser widget" {
	action = Pathname "Pick a file" 
		"$VIPSHOME/share/$PACKAGE/data/print_test_image.v";
}

Widget_font_item = class 
	Menuaction "F_ont Chooser" "make a new font chooser widget" {
	action = Fontname "Pick a font"  Workspaces.Preferences.PAINTBOX_FONT;
}