Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | grc-refactor: clean-up grc directory | Sebastian Koslowski | 2016-02-17 | 1 | -429/+0 |
| | |||||
* | grc-refactor: move grc.base to grc.python.base | Sebastian Koslowski | 2016-02-17 | 1 | -8/+4 |
| | |||||
* | grc: add embedded python modules | Sebastian Koslowski | 2015-12-04 | 1 | -1/+1 |
| | |||||
* | grc: add embedded python block definition and support in GRC | Sebastian Koslowski | 2015-11-11 | 1 | -7/+12 |
| | |||||
* | grc: mark param type multiline as protected | Sebastian Koslowski | 2015-11-06 | 1 | -3/+3 |
| | |||||
* | grc: Flowgraph complexity. Shows under options block when enabled. | Seth Hitefield | 2015-09-26 | 1 | -23/+17 |
| | |||||
* | grc: new param type 'multiline' for comment entry box | Sebastian Koslowski | 2015-04-03 | 1 | -12/+10 |
| | |||||
* | Removing trailing/extra whitespaces before release. | Tom Rondeau | 2014-07-07 | 1 | -7/+7 |
| | | | | We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace). | ||||
* | grc: move FileParam to gui module | Sebastian Koslowski | 2014-04-10 | 1 | -44/+0 |
| | |||||
* | grc: fix error message in console when using qtgui blocks | Sebastian Koslowski | 2014-02-26 | 1 | -4/+10 |
| | |||||
* | grc: Fix whitespace issue in grc to use proper spaces | Tim O'Shea | 2013-07-09 | 1 | -405/+405 |
| | | | | Remove all \t's to match the rest of GNU Radio | ||||
* | Merge branch 'master' into next | Tom Rondeau | 2013-03-27 | 1 | -9/+11 |
|\ | |||||
| * | grc: made 'float' an acceptable alias to 'real' in parameter types. | Tom Rondeau | 2013-03-27 | 1 | -9/+11 |
| | | |||||
* | | docs: Modified argument formating in python docstrings in grc. | Ben Reynwar | 2012-08-14 | 1 | -7/+21 |
|/ | |||||
* | Removed whitespace and added dtools/bin/remove-whitespace as a tool to do ↵ | Tom Rondeau | 2012-04-13 | 1 | -1/+1 |
| | | | | | | this in the future. The sed script was provided by Moritz Fischer. | ||||
* | grc: fix bug when displaying string params | Josh Blum | 2011-10-29 | 1 | -0/+1 |
| | | | | | | If the param contents evald successfully but not to a string, it would display None. This patch forces an exception, so the string will get auto-quoted and interpreted correctly. | ||||
* | grc: replaced asserts in base subdirectory | Josh Blum | 2011-04-14 | 1 | -9/+6 |
| | |||||
* | grc: replaced asserts in python subdirectory | Josh Blum | 2011-04-14 | 1 | -41/+37 |
| | |||||
* | grc: work on generator for gui flowgraphs to simplify generation | Josh Blum | 2011-03-01 | 1 | -1/+1 |
| | | | | | | | 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: added tabbed widget in qtgui for grc | Josh Blum | 2011-03-01 | 1 | -1/+24 |
| | | | | | | created gui_hint type to handle tab descriptor + position markup, and to handle the generation of the name of the parent widget. No support python modules required in gr-qtgui. | ||||
* | work on the string representations for parameters (large vectors could be ↵ | Josh Blum | 2010-03-23 | 1 | -12/+20 |
| | | | | too much to render, ie use truncation) | ||||
* | grc bug fix from Dimitris Symeonidis | Josh Blum | 2010-01-23 | 1 | -1/+1 |
| | |||||
* | removed unused import statements, thanks pyflakes | Josh Blum | 2009-12-06 | 1 | -1/+0 |
| | |||||
* | Added window size param to all wxgui wrappers. | Josh Blum | 2009-10-09 | 1 | -11/+17 |
| | | | | Modified type parser to allow blank values in vector types as empty vectors. | ||||
* | Re/evaluate the notebook blocks label because we dont garuntee the ↵ | Josh Blum | 2009-09-18 | 1 | -1/+1 |
| | | | | | | | evaluation priority. Meaning, we cant garuntee that the notebook block will be evaluated before this param, without explicitly calling evaluate on it when the value is needed. | ||||
* | added errors dialog to show all error messages in flow graph | Josh Blum | 2009-09-18 | 1 | -1/+1 |
| | |||||
* | Fixed the usrp and usrp2 probe scripts to work with the new gui param api. | Josh Blum | 2009-09-06 | 1 | -1/+1 |
| | | | | | Also fixed the scripts to work since they were broken by previous changes. Get input in param class now pases a param instance (self) into the object. | ||||
* | propsdialog tweaks | Josh Blum | 2009-09-06 | 1 | -3/+3 |
| | |||||
* | Evaluation fix in param.to_code(). | Josh Blum | 2009-09-02 | 1 | -3/+4 |
| | | | | | | | | Dont force an evaluation in to code unless the type is string or list. Not doing so forces the variables to call evaluate before the namespace was bootstrapped. This fixes a bug that came up when the validate was replaced with rewrite in flowgraph.import_data(). By replacing the validate, evaluate was only called once, and the namespace was not bootstrapped. | ||||
* | Switched the python classes to inherit from the base and gui classes. | Josh Blum | 2009-08-30 | 1 | -9/+9 |
| | | | | | Use only **kwargs so all contructor parameters must be passed with keys. Moved gui input forms classes from base to gui param module. | ||||
* | port and param types from an overloaded method | Josh Blum | 2009-08-30 | 1 | -17/+14 |
| | |||||
* | Replaced TYPES in Port and Param with types parameter. | Josh Blum | 2009-08-29 | 1 | -10/+19 |
| | | | | | Replaced odict in options for storing options with a list. Fix virtual port check in flow graph template. | ||||
* | made is_virtual_xxx a block level function, used by port and param classes | Josh Blum | 2009-08-28 | 1 | -3/+3 |
| | |||||
* | added stream id type and checking in evaluate | Josh Blum | 2009-08-28 | 1 | -4/+21 |
| | |||||
* | short id fix | jblum | 2009-07-08 | 1 | -7/+0 |
| | | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11380 221aa14e-8319-0410-a670-987f0aec2ac5 | ||||
* | Adds short commandline parameter handling in GRC. | jcorgan | 2009-07-08 | 1 | -0/+7 |
| | | | | git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11376 221aa14e-8319-0410-a670-987f0aec2ac5 | ||||
* | Merged r11309:11357 from grc branch. | jblum | 2009-07-06 | 1 | -6/+30 |
| | | | | | | | | Adds notebook cabability to grc and its wxgui windows/controls. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11358 221aa14e-8319-0410-a670-987f0aec2ac5 | ||||
* | Merging r11186:11273 from grc branch. | jblum | 2009-06-23 | 1 | -0/+380 |
Fixes, features, and reorganization for grc. Minor fixes and features for wxgui forms. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11274 221aa14e-8319-0410-a670-987f0aec2ac5 |