summaryrefslogtreecommitdiff
path: root/gr-wxgui
Commit message (Collapse)AuthorAgeFilesLines
* grc: work on generator for gui flowgraphs to simplify generationJosh Blum2011-03-0114-5/+83
| | | | | | | generator does not differentiate between notebooks and controls, they are all block, but block are now sorted by variables present in the make also adjusted categories listed in the wx and qt widget related blocks
* grc: moved wxgui blocks and python into gr-wxgui/grcJosh Blum2011-03-0118-1/+1809
| | | | | Prefixed wxgui blocks with WX GUI in the block names. Added category to wxgui variables blocks (not in the main block tree.xml)
* Major Makefile.am housecleaning. Passes distcheck.Eric Blossom2010-11-241-1/+1
| | | | | | | | | Move all occurrences of swig_built_sources out of Makefile.am's. Move all SWIG related use of BUILT_SOURCES out of Makefile.am's. Clean up 'if PYTHON' conditionalization in gr-* Still left to do: fix Makefile.swig CLEANFILES and no_dist_files such that they remove exactly the generated files.
* Adds a new parameter "y_axis_label" to scopesink2 and the GRC .xml file that ↵Marcus Leech2010-10-173-1/+6
| | | | contains the string for the Y axis label. It defaults to 'Counts' to be consistent with the old version.
* Merge branch 'maint'Eric Blossom2010-09-141-0/+2
|\ | | | | | | | | | | | | | | * maint: Avoid divide by zero in persistence code when using default args Update config.guess and config.sub in gr-howoto-write-a-block too Update config.guess and config.sub from canonical home Update script to pull config.* from git repo
| * Avoid divide by zero in persistence code when using default argsEric Blossom2010-09-121-0/+2
| |
* | Merge branch 'maint'Johnathan Corgan2010-07-211-1/+1
|\| | | | | | | | | * maint: wxgui: fix to use wx.Colour which is the actual name of the class (wx python wrapper may be missing wx.Color wrapper)
| * wxgui: fix to use wx.Colour which is the actual name of the class (wx python ↵Josh Blum2010-07-211-1/+1
| | | | | | | | wrapper may be missing wx.Color wrapper)
* | Merge branch 'maint'Johnathan Corgan2010-07-051-7/+7
|\|
| * gr-wxgui: fix non-gl scope sink only updating one channelCatalin Patulea2010-07-051-7/+7
| | | | | | | | | | | | This fixes a bug where, when using nongl scopesink, only the real part of a complex input is shown. After applying this patch, both Ch1 and Ch2 can be seen on the scope display.
* | Merge branch 'patches/marcus/stripchart'Johnathan Corgan2010-07-054-3/+28
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: gr-wxgui/src/python/scope_window.py * Adds new scope window trigger, TRIG_MODE_STRIPCHART * Allows config file selection of whether background window sinks still run * Allows config file selection of default trigger mode * Allows config file selection of default waterfall sink color mode [wxgui] #Setting this to true prevents the window sinks from stopping when they #are not displayed, as when they are in a notebook with a hidden tab. run_always = False # Default scope trigger mode. # # 0 = Freerun # 1 = Auto (default) # 2 = Normal # 3 = Stripchart trig_mode = 1 # Default waterfall sink color mode. Valid choices are 'rgb1', 'rbg2', # 'rgb3', or 'gray' waterfall_color = rgb1
| * gr-wxgui: adds stripchart trigger mode to graphics sinksMarcus D Leech2010-05-164-3/+28
| |
* | Make C++ shared libraries versionedJohnathan Corgan2010-05-281-1/+1
| |
* | gr-wxgui: update copyrightsJohnathan Corgan2010-05-138-8/+8
| |
* | gr-wxgui: Renamed "emulate analog" feature to "use persistence"Johnathan Corgan2010-05-139-118/+118
| |
* | Merge remote branch 'nldudok1/gr-wxgui_emulate_analog' into masterJohnathan Corgan2010-05-139-29/+340
|\ \ | |/ |/| | | | | | | | | | | | | * nldudok1/gr-wxgui_emulate_analog: Add analog CRT screen afterglow emulation for gr-wxgui Conflicts: gr-wxgui/src/python/fftsink_gl.py gr-wxgui/src/python/fftsink_nongl.py
| * Add analog CRT screen afterglow emulation for gr-wxguiMartin Dudok van Heel2010-04-269-29/+340
| |
* | gr-wxgui: Added additional color table entriesMarcus Leech2010-04-281-0/+3
| |
* | Use numpy to do color table lookup.Josh Blum2010-01-061-9/+8
| | | | | | | | | | | | You can index a numpy array with another numpy array to get an array of looked-up values. I did not know that numpy could do that!
* | bug fix for waterfall plotter,Josh Blum2009-12-261-5/+9
| | | | | | | | it seems that numpy choose changed
* | gr-wxgui: cleanup for mergeJohnathan Corgan2009-11-032-3/+1
| |
* | Consolidated termsink into one classJohnathan Corgan2009-10-293-86/+51
| |
* | Basic terminal window that takes raw text on input msgq and appends itJohnathan Corgan2009-10-292-16/+39
| | | | | | | | Works, but needs "--line-buffered" mode for GR buffering between blocks
* | Add placeholder panel for console, use old style window sizeJohnathan Corgan2009-10-292-4/+28
| |
* | Created skeleton wxgui term window componentJohnathan Corgan2009-10-293-0/+68
| |
* | Merge branch 'flattopwindow' of http://gnuradio.org/git/jblumJohnathan Corgan2009-10-293-5/+10
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | Merge-fix: Remove debugging print Merge-fix: Update copyrights * 'flattopwindow' of http://gnuradio.org/git/jblum: Added window option to wxgui fft and waterfall sink. redid cos windows, added flattop and nuttall_cfd
| * | Added window option to wxgui fft and waterfall sink.Josh Blum2009-10-283-2/+7
|/ / | | | | | | | | | | | | Added rectangular window function to window.py. Average stays hidden in waterfall, fft, and numbersink wrappers (only avg_alpha shows/hides). Fixed options in waterfall wrapper to model after fft and numbersink average params.
* | Merge branch 'vrt' of http://gnuradio.org/git/jblumJohnathan Corgan2009-10-211-2/+6
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge fix: added GRUEL_INCLUDES to vrt Makefile Merge fix: added missing include in gr-vrt * 'vrt' of http://gnuradio.org/git/jblum: query the model number from the host fix so all handlers get called on event simplfied the code while i was looking at it added access methods for gps stuff added access methods and parsing for caldiv if context use existing utility method reading the lo back and storing it use the new htonll and vrt types to send cal and lo freqs checking for if context packets and setting up the payload pointer and size Reading 64 bit freq out of chunk of context packet. copied over vrt context and type headers, updated bits.h as well Dump IF-Context packets in hex. use gruel/inet.h instead of arap/inet.h fix white space made rxdspno a parameter for: start/stop streaming, and quadradio32fc
| * | fix so all handlers get called on eventJosh Blum2009-10-141-2/+5
| | |
| * | Merge commit '38d5389f3054164a2f04d6e4e8fe381aa5ee03fc' into vrtJosh Blum2009-10-129-41/+129
| |\ \
| * | | added access methods for gps stuffJosh Blum2009-09-291-2/+6
| | | |
* | | | added v offset option to scopeJosh Blum2009-10-182-2/+5
| | | |
* | | | Merge commit '25a8' from git@gnuradio.org:jblumJohnathan Corgan2009-10-158-11/+26
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '25a8': use clean numbers for waterfall ref and range tweaks to scope autoscaling registered key to hide/show control panel in wxgui windows Added window size param to all wxgui wrappers. add canonical options for copy enable param
| * | | use clean numbers for waterfall ref and rangeJosh Blum2009-10-091-6/+7
| | | |
| * | | tweaks to scope autoscalingJosh Blum2009-10-091-5/+6
| | | |
| * | | registered key to hide/show control panel in wxgui windowsJosh Blum2009-10-097-0/+13
| | |/ | |/|
* / | fix so all handlers get called on eventJosh Blum2009-10-121-2/+5
|/ /
* | using gr copy in the wxgui connect, added gr copy to grc xmlJosh Blum2009-10-081-37/+19
| |
* | point label transpareny, horizontal offset, and toggle on/off capabilityJosh Blum2009-10-082-3/+9
| |
* | simplify some paramsJosh Blum2009-10-071-15/+13
| |
* | moved the wxgui connect helper functions into the wrapper classJosh Blum2009-10-071-57/+80
| |
* | making use of update ui eventJosh Blum2009-10-071-11/+10
| |
* | setup special wxgui connect on sinks, needs testingJosh Blum2009-10-077-40/+63
| |
* | working special connect for fftsinkJosh Blum2009-10-071-12/+13
| |
* | work on a special connect function that registers a callbackJosh Blum2009-10-062-2/+23
| |
* | added bind to visible event function to callback when visibility changes ↵Josh Blum2009-10-061-0/+35
|/ | | | within tabs
* fixed bool converter in forms to work with non bool optionsJosh Blum2009-09-141-2/+4
|
* set text box bg color on changeJosh Blum2009-09-091-4/+8
|
* Round the slider's value, but not the internal representation.Josh Blum2009-09-092-3/+5
| | | | Now, the slider can operate on any step size without killing the precision for other forms.
* Merge branch 'grc' from http://gnuradio.org/git/jblum.git into masterJohnathan Corgan2009-09-041-3/+3
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | we dont use test() -> remove it Made the window for the pass band filters integers (take firdes.WIN_XXX). Evaluation fix in param.to_code(). Removed the flagging api and usage from the base classes. added ref scale param to fft and waterfall Switched the python classes to inherit from the base and gui classes. port and param types from an overloaded method todo Replaced TYPES in Port and Param with types parameter. made is_virtual_xxx a block level function, used by port and param classes added stream id type and checking in evaluate avoid loops Recursive resolution of virtual sources. added virtual source and added stream ids, logic to clone in port added rewrite methods to element to separate from validation logic Added virtual sink and logic to clone port. removed repurposing of pads Work on command line options for generated code. renamed the colors dialog to types use pkgpythondir ...