diff options
author | Tom Rondeau | 2011-04-08 15:37:29 -0400 |
---|---|---|
committer | Tom Rondeau | 2011-04-08 15:37:29 -0400 |
commit | 21b64f070a3eb38ab044529a6ddd9cd6b6d0a2cb (patch) | |
tree | 4e72909a051b0a4ac428252d15f34b53bcc986b6 /gr-wxgui/grc/wxgui_histosink2.xml | |
parent | d7093fd06d0ec37f6ba2841d202fe90f4fa3661e (diff) | |
parent | 5c358afd00347f5da7a59dd73ea79cd3df26659d (diff) | |
download | gnuradio-21b64f070a3eb38ab044529a6ddd9cd6b6d0a2cb.tar.gz gnuradio-21b64f070a3eb38ab044529a6ddd9cd6b6d0a2cb.tar.bz2 gnuradio-21b64f070a3eb38ab044529a6ddd9cd6b6d0a2cb.zip |
Merge branch 'master' into constell_obj
Conflicts:
gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.h
gr-audio-oss/src/Makefile.swig.gen
gr-audio/swig/Makefile.swig.gen
Diffstat (limited to 'gr-wxgui/grc/wxgui_histosink2.xml')
-rw-r--r-- | gr-wxgui/grc/wxgui_histosink2.xml | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/gr-wxgui/grc/wxgui_histosink2.xml b/gr-wxgui/grc/wxgui_histosink2.xml new file mode 100644 index 000000000..f4f6a2959 --- /dev/null +++ b/gr-wxgui/grc/wxgui_histosink2.xml @@ -0,0 +1,78 @@ +<?xml version="1.0"?> +<!-- +################################################### +##Histogram Sink +################################################### + --> +<block> + <name>WX GUI Histo Sink</name> + <key>wxgui_histosink2</key> + <category>WX GUI Widgets</category> + <import>from gnuradio.wxgui import histosink_gl</import> + <make>#set $parent = $notebook() and 'self.%s.GetPage(%s)'%$notebook() or 'self' +histosink_gl.histo_sink_f( + $(parent).GetWin(), + title=$title, + num_bins=$num_bins, + frame_size=$frame_size, +#if $win_size() + size=$win_size, +#end if +) +#if not $grid_pos() +$(parent).Add(self.$(id).win) +#else +$(parent).GridAdd(self.$(id).win, $(', '.join(map(str, $grid_pos())))) +#end if</make> + <callback>set_num_bins($num_bins)</callback> + <callback>set_frame_size($frame_size)</callback> + <param> + <name>Title</name> + <key>title</key> + <value>Histogram Plot</value> + <type>string</type> + </param> + <param> + <name>Num Bins</name> + <key>num_bins</key> + <value>27</value> + <type>int</type> + </param> + <param> + <name>Frame Size</name> + <key>frame_size</key> + <value>1000</value> + <type>int</type> + </param> + <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>float</type> + </sink> + <doc> +Leave the window blank for the default size, otherwise enter a tuple of (width, height) pixels. + +Use the Grid Position (row, column, row span, column span) to position the graphical element in the window. + +Use the Notebook Param (notebook-id, page-index) to place the graphical element inside of a notebook page. + </doc> +</block> |