WX GUI Static Text variable_static_text WX GUI Widgets from gnuradio.wxgui import forms self.$(id) = $(id) = $value #set $parent = $notebook() and 'self.%s.GetPage(%s)'%$notebook() or 'self' #set $win = 'self._%s_static_text'%$id $win = forms.static_text( parent=$(parent).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 ) #if not $grid_pos() $(parent).Add($win) #else $(parent).GridAdd($win, $(', '.join(map(str, $grid_pos())))) #end if self.set_$(id)($value) self._$(id)_static_text.set_value($id) Label label string #if $label() then 'none' else 'part'# Default Value value 0 raw Converter converver float_converter enum Formatter formatter None raw part Grid Position grid_pos grid_pos Notebook notebook notebook This block creates a variable with a static text form. \ 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. Use the Notebook Param (notebook-id, page-index) to place the graphical element inside of a notebook page.