summaryrefslogtreecommitdiff
path: root/grc
AgeCommit message (Collapse)Author
2009-09-14fixed issue where entry boxes lost focus (mishandling of hide changing)Josh Blum
2009-09-13tweaked key handling callbacksJosh Blum
2009-09-13fix for uniformity convention with gtk signal name stringsJosh Blum
2009-09-13Simply Actions module imports, using module prefix.Josh Blum
2009-09-13Reworked actions api and actions objects:Josh Blum
Created standardized Action object for all gui actions. Actions module constants are actual Action objects (not strings). Keypresses, labels, tooltips, stock icons, etc all associate in the Action constructor. Usage of the action's signaling call () eliminated the need for a reference to handle_states.
2009-09-13Move key press extraction logic into actions module.Josh Blum
Replaced xml encode with gtk escape text. Added templates for category and docs tool tips. Other various code tweaks in gui modules.
2009-09-10rename variable, use keysyms in props dialogJosh Blum
2009-09-10use the keymap's translate_keyboard_state, use the key value rather than nameJosh Blum
2009-09-10ignore irrelevant modifiers and events pendingJosh Blum
2009-09-09properties dialog with ok/cancel buttonsJosh Blum
2009-09-08use show signal to perform initial gui updateJosh Blum
2009-09-06Fixed the usrp and usrp2 probe scripts to work with the new gui param api.Josh Blum
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.
2009-09-06propsdialog tweaksJosh Blum
2009-09-05more code cleanup for properties dialogJosh Blum
2009-09-05Rework the params/properties dialog and param gui class:Josh Blum
Better handles dynamic changes and subsequent code cleanup.
2009-09-05renamed params dialog to props dialogJosh Blum
2009-09-05remove unused imports, copyright date update, tweakJosh Blum
2009-09-05Created recursive create labels and shapes method for gui element.Josh Blum
Replaces update methods in the gui classes and simplifies calls. The master update method in flow graph calls create labels and shapes.
2009-09-05replaced dict[rot] storage of areas and lines with a single list for the ↵Josh Blum
current rotation
2009-09-05standardized the Element inheritance __init__ usage in guiJosh Blum
2009-09-05better error msg for empty statementsJosh Blum
2009-09-05Implement a recursive validation api in the base Element class.Josh Blum
The rewrite and validate methods will invoke themselves on the child elements. The error messages are now a super-list of element and child error messages. As a side-effect, this cleans up code in base Block and Flowgraph class.
2009-09-04Merge branch 'grc' from http://gnuradio.org/git/jblum.git into masterJohnathan Corgan
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 ...
2009-09-03we dont use test() -> remove itJosh Blum
2009-09-03Made the window for the pass band filters integers (take firdes.WIN_XXX).Josh Blum
Now a window can be controlled by a variable such as a chooser.
2009-09-02Evaluation fix in param.to_code().Josh Blum
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.
2009-09-02Modifications to usrp2 source and sink so that set center freq is called ↵Josh Blum
afer set lo offset.
2009-09-02Removed the flagging api and usage from the base classes.Josh Blum
Far better to flag the namespace for renewing once in the flowgraph.py
2009-09-02added ref scale param to fft and waterfallJosh Blum
2009-09-02Modifications to the usrp blocks and wrapper so that the lo offset is set ↵Josh Blum
with the lo frequency.
2009-08-30Switched the python classes to inherit from the base and gui classes.Josh Blum
Use only **kwargs so all contructor parameters must be passed with keys. Moved gui input forms classes from base to gui param module.
2009-08-30port and param types from an overloaded methodJosh Blum
2009-08-29todoJosh Blum
2009-08-29Replaced TYPES in Port and Param with types parameter.Josh Blum
Replaced odict in options for storing options with a list. Fix virtual port check in flow graph template.
2009-08-28made is_virtual_xxx a block level function, used by port and param classesJosh Blum
2009-08-28added stream id type and checking in evaluateJosh Blum
2009-08-28avoid loopsJosh Blum
2009-08-28Recursive resolution of virtual sources.Josh Blum
Flow graph generation code working. Also, mod to fft window to use clean/nice Db/div.
2009-08-28added virtual source and added stream ids, logic to clone in portJosh Blum
2009-08-26added rewrite methods to element to separate from validation logicJosh Blum
2009-08-26Added virtual sink and logic to clone port.Josh Blum
Tweaks to the base validation routines. Validate twice in the update until rewrite functions are implemented.
2009-08-25removed repurposing of padsJosh Blum
2009-08-25Work on command line options for generated code.Josh Blum
Simplified eng_option eng_float to reuse str_to_num code.
2009-08-24Merge branch 'master' of http://gnuradio.org/git/gnuradio into grcJosh Blum
2009-08-24renamed the colors dialog to typesJosh Blum
2009-08-23use pkgpythondirJosh Blum
2009-08-23Added blks2.pfb_arb_resampler_ccf to GRC block listJohnathan Corgan
* New block XML file * Added set_taps callback to blks2 hier block * GRC example showing pre- and post-resampling swept spectrum
2009-08-20added continuation mode for pad source and sinksJosh Blum
2009-08-17Removed Source and Sink classes as Port subclasses.Josh Blum
A port can be a source or a sink based on the dir parameter.
2009-08-15Merged branch 'msgq' from http://gnuradio.org/git/jblum.gitJohnathan Corgan
This adds the ability to GRC to gave blocks with message ports. Signed-off-by: Johnathan Corgan <jcorgan@corganenterprises.com>