summaryrefslogtreecommitdiff
path: root/grc/blocks/variable_text_box.xml
blob: 65d491ba0bebd346050bc496ddc757ab32787f36 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0"?>
<!--
###################################################
##Variable Text Box:
##	a gui text box form
###################################################
 -->
<block>
	<name>Variable Text Box</name>
	<key>variable_text_box</key>
	<import>from gnuradio.wxgui import forms</import>
	<var_make>self.$(id) = $(id) = $value</var_make>
	<make>self._$(id)_text_box = forms.text_box(
	parent=self.GetWin(),
	value=self.$id,
	callback=self.set_$(id),
	#if $label()
	label=$label,
	#else
	label='$id',
	#end if
	#if $formatter()
	converter=forms.$(converver)(formatter=$formatter),
	#else
	converter=forms.$(converver)(),
	#end if
)
#set $grid_pos = $grid_pos()
#if not grid_pos
self.Add(self._$(id)_text_box)
#else
self.GridAdd(self._$(id)_text_box, $grid_pos[0], $grid_pos[1], $grid_pos[2], $grid_pos[3])
#end if</make>
	<callback>self.set_$(id)($value)</callback>
	<callback>self._$(id)_text_box.set_value($id)</callback>
	<param>
		<name>Label</name>
		<key>label</key>
		<value></value>
		<type>string</type>
		<hide>#if $label() then 'none' else 'part'#</hide>
	</param>
	<param>
		<name>Default Value</name>
		<key>value</key>
		<value>0</value>
		<type>raw</type>
	</param>
	<param>
		<name>Converter</name>
		<key>converver</key>
		<value>float_converter</value>
		<type>enum</type>
		<option>
			<name>Float</name>
			<key>float_converter</key>
		</option>
		<option>
			<name>Integer</name>
			<key>int_converter</key>
		</option>
		<option>
			<name>String</name>
			<key>str_converter</key>
		</option>
		<option>
			<name>Evaluate</name>
			<key>eval_converter</key>
		</option>
	</param>
	<param>
		<name>Formatter</name>
		<key>formatter</key>
		<value>None</value>
		<type>raw</type>
		<hide>part</hide>
	</param>
	<param>
		<name>Grid Position</name>
		<key>grid_pos</key>
		<value></value>
		<type>grid_pos</type>
	</param>
	<doc>
This block creates a variable with a text box. \
Leave the label blank to use the variable id as the label.

Format should be a function/lambda that converts a value into a string or None for the default formatter.

Use the Grid Position (row, column, row span, column span) to position the graphical element in the window.
	</doc>
</block>