summaryrefslogtreecommitdiff
path: root/gr-qtgui/src
Commit message (Collapse)AuthorAgeFilesLines
* gr-qtgui: moving Python files to new structure; get rid of src directory.Tom Rondeau2011-03-2716-2375/+0
|
* gr-qtgui: moving gitignore to new location.Tom Rondeau2011-03-271-16/+0
|
* gr-qtgui: restructuring qtgui directory to new layout.Tom Rondeau2011-03-2728-6444/+0
|
* gr-qtgui: adding QA code for qtgui; remarked out until a fix for the ↵Tom Rondeau2011-03-264-7/+71
| | | | segfault can be found.
* qtgui use gruel thread mutex:Josh Blum2011-02-275-28/+23
| | | | | Replace pthread mutex usage with gruel thread mutex to make the code portable on systems without pthreads.
* Merge branch 'mergeme/qtgui/use_boost_posix_time' into nextTom Rondeau2011-01-232-19/+21
|\
| * Removing YYYY-mmm-DD from time displayed on Waterfall plot.Tom Rondeau2011-01-231-0/+10
| |
| * qtgui: use the posix time to_simple_string to simplify label textJosh Blum2011-01-221-15/+5
| |
| * qtgui boost use posix time:Josh Blum2011-01-172-6/+8
| | | | | | | | | | Replace calls to gmtime_r with boost::posix_time to make the code portable on systems without gmtime_r.
* | Merge branch 'mergeme/qtgui/plots_static_const_fix' into nextTom Rondeau2011-01-224-15/+11
|\ \
| * | qtgui plots static const fixes:Josh Blum2011-01-174-15/+11
| |/ | | | | | | | | | | | | | | | | Initialize static data members in the cpp file: http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.12 For the WaterfallDisplayPlot, rather than bringing the initialization into the cpp file, the numbers seemed far more fitting as an enum given that they are by nature. This removed the symbol declaration from the cpp file, so its actually simpler.
* | Merge branch 'mergeme/qtgui/plot_waterfall_fix' into nextTom Rondeau2011-01-221-1/+1
|\ \
| * | qtgui plot waterfall fixJosh Blum2011-01-171-1/+1
| |/ | | | | | | | | | | Removed QWT_EXPORT from PlotWaterfall. PlotWaterfall is not part of libqwt, this is likely a copy/paste typo. Its very wrong and specifies incorrect linkage. Affects MSVC.
* / qtgui missing stdint include fix:Josh Blum2011-01-173-0/+3
|/ | | | These files use stdint types but did not include the header stdint.h
* Use load-extension-global instead of load-extensionEric Blossom2010-12-101-1/+1
|
* Regenerated Makefile.swig.gen'sEric Blossom2010-12-031-5/+5
|
* Rename libguile- to libguile-gnuradio- to match guile library naming convention.Eric Blossom2010-12-031-1/+1
| | | | | The stuff in gnuradio-core ends up with funky names, but that could be fixed by renaming gnuradio_core_filter.i -> core_filter.i etc.
* Update .gitignore'sEric Blossom2010-11-241-0/+3
|
* Major Makefile.am housecleaning. Passes distcheck.Eric Blossom2010-11-242-18/+8
| | | | | | | | | 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.
* Removed link to missing .png in an attempt to keep doxygen from crashingEric Blossom2010-11-241-2/+0
|
* regeneratedRob Savoye2010-11-191-11/+23
|
* regeneratedEric Blossom2010-11-161-1/+1
|
* regeneratedEric Blossom2010-11-101-2/+2
|
* regeneratedRob Savoye2010-11-101-27/+10
|
* regeneratedRob Savoye2010-11-101-8/+7
|
* Remove swig generated python code from C++-only librariesEric Blossom2010-11-101-2/+1
|
* additional regenerated filesEric Blossom2010-11-101-2/+5
|
* add load-extension supportRob Savoye2010-11-101-0/+9
|
* regenerateEric Blossom2010-11-101-6/+6
|
* Rengenerate Makefile.swig.gen'sEric Blossom2010-11-101-2/+3
|
* add python/*.cc to SOURCES so dependencies work properly.Rob Savoye2010-11-101-1/+2
|
* regeneratedRob Savoye2010-11-101-216/+25
|
* Update generated filesEric Blossom2010-11-101-28/+65
|
* regenerated after changes to .i filesRob Savoye2010-11-101-22/+31
|
* regenerated after changes to the templateRob Savoye2010-11-101-10/+26
|
* regenerated from templateRob Savoye2010-11-101-9/+26
|
* rearrange includes to always be: internal GR, external, with GR.Michael Dickens2010-10-091-2/+2
|
* Merge branch 'maint'Johnathan Corgan2010-10-0619-1233/+93
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | * maint: Fixed setting of USB_LIBS for *win* Fix so that non-Darwin OSs use USB_LIBS correctly for linking New way of checking for various LIBUSB names; for legacy version, make sure the symbol 'usb_debug' exists (so-as to not use the 'compat' version). Finally, the simple fix for the qtgui issues; also, changed the naming scheme output from _moc to .moc files because I think this looks cleaner. Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal with and the plotting is not that stable even when it does work. This does not change the API. Fixed gitignore to reflect changes in moc/ui file naming. Fixes a lot of warnings by cleaning up namespace issues. Finally, the simple fix for the qtgui issues; also, changed the naming scheme output from _moc to .moc files because I think this looks cleaner. Removing qwtplot3d dependency and fixing a missed include in waterfallGlobalData.h. Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal with and the plotting is not that stable even when it does work. This does not change the API.
| * Finally, the simple fix for the qtgui issues; also, changed the naming ↵Tom Rondeau2010-10-051-2/+0
| | | | | | | | scheme output from _moc to .moc files because I think this looks cleaner.
| * Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal ↵Tom Rondeau2010-10-051-0/+1
| | | | | | | | with and the plotting is not that stable even when it does work. This does not change the API.
| * Fixed gitignore to reflect changes in moc/ui file naming.Tom Rondeau2010-10-051-7/+7
| |
| * Fixes a lot of warnings by cleaning up namespace issues.Tom Rondeau2010-10-058-619/+7
| |
| * Finally, the simple fix for the qtgui issues; also, changed the naming ↵Tom Rondeau2010-10-052-10/+14
| | | | | | | | scheme output from _moc to .moc files because I think this looks cleaner.
| * Removing qwtplot3d dependency and fixing a missed include in ↵Tom Rondeau2010-10-051-1/+0
| | | | | | | | waterfallGlobalData.h.
| * Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal ↵Tom Rondeau2010-10-0512-596/+66
| | | | | | | | with and the plotting is not that stable even when it does work. This does not change the API.
* | Merge branch 'maint'Johnathan Corgan2010-08-032-4/+4
|\|
| * Modify all block factories to use gnuradio::get_initial_sptr.Eric Blossom2010-08-032-4/+4
| |
* | Merge remote branch 'trondeau/qtclock'Johnathan Corgan2010-07-211-38/+147
|\ \ | |/ |/| | | | | | | | | * trondeau/qtclock: From my reading, we should never need to define the timespec struct (so we will wait until this bites me). Checking for clock_gettime and timespec defined; use gettimeofday if not, but put it into a timespec structure. Reformatting highResTimeFunction.h for better readibility.
| * From my reading, we should never need to define the timespec struct (so we ↵Tom Rondeau2010-06-291-10/+1
| | | | | | | | will wait until this bites me).
| * Checking for clock_gettime and timespec defined; use gettimeofday if not, ↵Tom Rondeau2010-06-271-0/+26
| | | | | | | | but put it into a timespec structure.