diff options
author | Josh Blum | 2011-01-21 15:20:45 -0800 |
---|---|---|
committer | Josh Blum | 2011-03-01 17:02:06 -0800 |
commit | f0537a7da4571bd6aaab273a0588eaef04121648 (patch) | |
tree | 6b894b17c0085cb287c9f5f0b0a7c7b679f46b58 /grc/blocks/wxgui_termsink.xml | |
parent | 2c263e9640f2812b241d724286aaa1f13c57935f (diff) | |
download | gnuradio-f0537a7da4571bd6aaab273a0588eaef04121648.tar.gz gnuradio-f0537a7da4571bd6aaab273a0588eaef04121648.tar.bz2 gnuradio-f0537a7da4571bd6aaab273a0588eaef04121648.zip |
grc: moved wxgui blocks and python into gr-wxgui/grc
Prefixed wxgui blocks with WX GUI in the block names.
Added category to wxgui variables blocks (not in the main block tree.xml)
Diffstat (limited to 'grc/blocks/wxgui_termsink.xml')
-rw-r--r-- | grc/blocks/wxgui_termsink.xml | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/grc/blocks/wxgui_termsink.xml b/grc/blocks/wxgui_termsink.xml deleted file mode 100644 index 985d89b58..000000000 --- a/grc/blocks/wxgui_termsink.xml +++ /dev/null @@ -1,55 +0,0 @@ -<?xml version="1.0"?> -<!-- -################################################### -##Terminal window -################################################### - --> -<block> - <name>Terminal Sink</name> - <key>wxgui_termsink</key> - - <import>from gnuradio.wxgui import termsink</import> - - <make>#set $parent = $notebook() and 'self.%s.GetPage(%s)'%$notebook() or 'self' -termsink.termsink( - parent=$(parent).GetWin(), -#if $win_size() - size=$win_size, -#end if - msgq=$(id)_msgq_in, -) -#if not $grid_pos() -$(parent).Add(self.$(id)) -#else -$(parent).GridAdd(self.$(id), $(', '.join(map(str, $grid_pos())))) -#end if</make> - - <param> - <name>Window Size</name> - <key>win_size</key> - <value></value> - <type>int_vector</type> - <hide>#if $win_size() then 'none' else 'part'#</hide> - </param> - <param> - <name>Grid Position</name> - <key>grid_pos</key> - <value></value> - <type>grid_pos</type> - </param> - - <param> - <name>Notebook</name> - <key>notebook</key> - <value></value> - <type>notebook</type> - </param> - - <check>not $win_size or len($win_size) == 2</check> - - <sink> - <name>in</name> - <type>msg</type> - </sink> - -</block> |