aboutsummaryrefslogtreecommitdiffstats
path: root/gr-qtgui/grc/qtgui_edit_box_msg.block.yml
blob: c2ef05012274b328a08d0c9f965704257306c805 (plain) (blame)
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
id: qtgui_edit_box_msg
label: QT GUI Message Edit Box
flags: [ python ]

parameters:
-   id: type
    label: Type
    dtype: enum
    default: string
    options: [string, int, float, double, complex, int_vec, flt_vec, dbl_vec, cpx_vec]
    option_labels: [String, Int, Float, Double, Complex, Int (Vec), Float (Vec), Double
            (Vec), Complex (Vec)]
    option_attributes:
        t: [qtgui.STRING, qtgui.INT, qtgui.FLOAT, qtgui.DOUBLE, qtgui.COMPLEX, qtgui.INT_VEC,
            qtgui.FLOAT_VEC, qtgui.DOUBLE_VEC, qtgui.COMPLEX_VEC]
-   id: value
    label: Value
    dtype: string
-   id: label
    label: Label
    dtype: string
-   id: is_pair
    label: Pair Mode
    dtype: enum
    default: 'True'
    options: ['False', 'True']
-   id: is_static
    label: Static Mode
    dtype: enum
    default: 'True'
    options: ['False', 'True']
-   id: key
    label: Key
    dtype: string
    hide: ${ ('none' if is_pair == 'True' else 'all') }
-   id: gui_hint
    label: GUI Hint
    dtype: gui_hint
    hide: part

asserts:
- ${(len(key) > 0) or not ((is_pair == 'True') and (is_static == 'True'))}

inputs:
-   domain: message
    id: val
    optional: true

outputs:
-   domain: message
    id: msg
    optional: true

templates:
    imports: |-
        from PyQt5 import Qt
        from gnuradio import qtgui
        import sip
    make: |-
        <%
            win = 'self._%s_win'%id
        %>\
        qtgui.edit_box_msg(${type.t}, ${value}, ${label}, ${is_pair}, ${is_static}, ${key})
        ${win} = sip.wrapinstance(self.${id}.pyqwidget(), Qt.QWidget)
        ${gui_hint() % win}

documentation: |-
    The GUI hint can be used to position the widget within the application. The hint is of the form [tab_id@tab_index]: [row, col, row_span, col_span]. Both the tab specification and the grid position are optional.

file_format: 1