From f0537a7da4571bd6aaab273a0588eaef04121648 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Fri, 21 Jan 2011 15:20:45 -0800 Subject: 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) --- grc/blocks/wxgui_waterfallsink2.xml | 189 ------------------------------------ 1 file changed, 189 deletions(-) delete mode 100644 grc/blocks/wxgui_waterfallsink2.xml (limited to 'grc/blocks/wxgui_waterfallsink2.xml') diff --git a/grc/blocks/wxgui_waterfallsink2.xml b/grc/blocks/wxgui_waterfallsink2.xml deleted file mode 100644 index 3de67597f..000000000 --- a/grc/blocks/wxgui_waterfallsink2.xml +++ /dev/null @@ -1,189 +0,0 @@ - - - - Waterfall Sink - wxgui_waterfallsink2 - from gnuradio import window - from gnuradio.wxgui import waterfallsink2 - #set $parent = $notebook() and 'self.%s.GetPage(%s)'%$notebook() or 'self' -waterfallsink2.$(type.fcn)( - $(parent).GetWin(), - baseband_freq=$baseband_freq, - dynamic_range=$dynamic_range, - ref_level=$ref_level, - ref_scale=$ref_scale, - sample_rate=$samp_rate, - fft_size=$fft_size, - fft_rate=$fft_rate, - average=$average, - avg_alpha=#if $avg_alpha() then $avg_alpha else 'None'#, - title=$title, -#if $win() - win=$win, -#end if -#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 - set_baseband_freq($baseband_freq) - set_sample_rate($samp_rate) - - Type - type - complex - enum - - - - - Title - title - Waterfall Plot - string - - - Sample Rate - samp_rate - samp_rate - real - - - Baseband Freq - baseband_freq - 0 - real - - - Dynamic Range - dynamic_range - 100 - real - - - Reference Level - ref_level - 50 - real - - - Ref Scale (p2p) - ref_scale - 2.0 - real - - - FFT Size - fft_size - 512 - int - - - FFT Rate - fft_rate - 15 - int - - - Average - average - False - enum - part - - - - - Average Alpha - avg_alpha - 0 - real - #if $average() == 'True' then 'none' else 'all'# - - - Window - win - None - raw - #if $win() is None then 'part' else 'none'# - - - - - - - - - Window Size - win_size - - int_vector - #if $win_size() then 'none' else 'part'# - - - Grid Position - grid_pos - - grid_pos - - - Notebook - notebook - - notebook - - not $win_size or len($win_size) == 2 - - in - $type - - -Set Average Alpha to 0 for automatic setting. - -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. - - -- cgit