summaryrefslogtreecommitdiff
path: root/grc/gui/PropsDialog.py
Commit message (Collapse)AuthorAgeFilesLines
* grc: pep8 formattingJosh Morman2021-11-241-5/+10
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* Revert " grc: restore pre-3.8 block id behavior"Josh Morman2021-03-101-1/+1
| | | | | | This reverts commit 1fbf9ba89c643f478024d6af797e0a0dbbdf5ba3. Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* grc: restore pre-3.8 block id behaviorJacob Gilbert2020-12-171-1/+1
| | | | Prior to 3.8 block IDs were shown in the properties dialogue for every block as these are important for function of some GR features. #2795 brought this back as an option for 3.8+, however it forces the 'hide' value to effectively be 'none' instead of 'part' (not visible on the block canvas but visible in the properties dialogue) for all blocks. This changes this back to the pre-3.8 behavior where the ID value is not shown on the canvas but is shown in the properties dialogue.
* grc: add wiki link to properties dialog docs (#3933)Jeff Long2020-11-221-2/+9
| | | So user's don't have to copy/paste the URL
* grc: remove sixClayton Smith2020-10-051-2/+1
|
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-031-1/+0
| | | | | | | | | | | | | | | | All of the removed `from __future__ import` were needed in older versions of Python (mostly 2.5.x and below) but later became mandatory in most versions of Python 3 hence are not necessary anymore. More specifically, according to __future__.py[1]: - unicode_literals is part of Python since versions 2.6.0 and 3.0.0; - print_function is part of Python since versions 2.6.0 and 3.0.0; - absolute_import is part of Python since versions 2.5.0 and 3.0.0; - division is part of Python since versions 2.2.0 and 3.0.0; Get rid of those unnecessary imports to slightly clean up the codebase. [1] https://github.com/python/cpython/blob/master/Lib/__future__.py
* Update license header to SPDX formatdevnulling2020-01-271-13/+2
|
* grc: Display documentation for blocks without category keyVasil Velichkov2020-01-221-1/+1
| | | | | | | | | | | | | Check that the category list is not empty before accessing its first element. Some OOT modules does not have category key and documentation tab is left empty because of this missing check. Traceback (most recent call last): File "/usr/local/lib64/python3.7/site-packages/gnuradio/grc/gui/PropsDialog.py", line 210, in update_gui self._update_docs_page() File "/usr/local/lib64/python3.7/site-packages/gnuradio/grc/gui/PropsDialog.py", line 220, in _update_docs_page if self._block.category[0] == "Core": IndexError: list index out of range
* grc: removed the link to wiki page for the block if its an OOT blockMarc L2019-11-011-5/+6
|
* grc: option toggle the show id on all blocksJosh Morman2019-09-171-0/+4
| | | | | | | | | Addresses the issue of losing access to the block id on many/most blocks though there are scenarios where you may need to see them in GRC Added a menu item tied into the grc prefs that will show the block ids Fixes #2780
* grc: added url to wiki page for each block in docs tabMarc L2019-07-171-0/+7
|
* grc: fix docs parsing without losing docsAndrej Rode2018-07-301-5/+5
|
* Merge branch 'merges/next' into merges/python3Sebastian Koslowski2017-10-261-3/+4
|\
| * Merge branch 'merges/master' into merges/nextSebastian Koslowski2017-10-261-4/+6
| |\
| | * grc: make props dialog dark-theme friendlySebastian Koslowski2017-10-261-2/+2
| | |
| | * Added parent (aka 'transient for') references to most (if not all) dialog ↵Ethan Trewhitt2017-10-251-2/+4
| | | | | | | | | | | | boxes. First attempt at fixing #1494.
* | | grc: added yaml/mako supportSebastian Koslowski2017-06-291-22/+22
| | | | | | | | | | | | Includes basic converter from XML/Cheetah to YAML/Mako based block format.
* | | grc: gtk3: reimplemented custom bg colors for param entry boxesSebastian Koslowski2017-01-111-1/+1
| | |
* | | Merge remote-tracking branch 'upstream/next' into gtk3Sebastian Koslowski2016-11-171-1/+3
|\| |
| * | Merge branch 'master' into nextJohnathan Corgan2016-11-121-1/+3
| |\|
| | * grc: respect display scaling for block positions, canvas size and props dialogSebastian Koslowski2016-10-261-1/+3
| | |
| * | Merge branch 'master' into nextJohnathan Corgan2016-10-251-3/+2
| |\|
| | * Revert "Merge remote-tracking branch 'skoslowski/dpi_fix' into maint"Johnathan Corgan2016-10-251-3/+2
| | | | | | | | | | | | | | | This reverts commit afadc5cb5564cb9b6136db046adccde5856edf57, reversing changes made to 915f1b02408a6a4f2ce2ffb2d9336643745aa939.
| * | Merge branch 'master' into nextJohnathan Corgan2016-10-241-2/+3
| |\|
| | * Merge remote-tracking branch 'skoslowski/dpi_fix' into maintJohnathan Corgan2016-10-241-2/+3
| | |\
| | | * grc: respect display scaling for block positions, canvas size and props dialogSebastian Koslowski2016-10-211-2/+3
| | |/ | |/|
| | * Backport GRC Python code for Python-2.6.6+Ben Hilburn2016-10-171-1/+1
| |/
* | grc: gtk3: fixup dialogsGlenn Richardson2016-08-091-0/+1
| |
* | grc: gtk3: remove deprecated add_with_viewport()Sebastian Koslowski2016-08-081-4/+4
| |
* | grc: refactor: remove get for port and param nameSebastian Koslowski2016-07-291-1/+1
| |
* | grc-refactor: make block.params a dictSebastian Koslowski2016-07-131-13/+27
| |
* | grc-refactor: Block: make more public attribsSebastian Koslowski2016-07-131-3/+3
| |
* | grc-refactor: Block: remove key gettersSebastian Koslowski2016-07-131-1/+1
| |
* | grc-refactor: Block: remove name getterSebastian Koslowski2016-07-131-1/+1
| |
* | grc-refactor: block documentation propSebastian Koslowski2016-07-131-1/+1
| |
* | grc: py3k compat using python-modernizeSebastian Koslowski2016-06-091-2/+4
| |
* | grc: gtk3: remove canvas size and enable zoomingSebastian Koslowski2016-05-311-1/+3
| |
* | grc-refactor: move param input widgets to separate fileSebastian Koslowski2016-05-301-4/+1
| |
* | grc: gtk3: update props dialogSebastian Koslowski2016-05-301-81/+56
| |
* | grc: remove all Cheetah templates from GUISebastian Koslowski2016-05-301-6/+6
| |
* | grc: Main window opens with pygobject and gtk3. Still throws tons of errors.Seth Hitefield2016-05-241-41/+41
|/
* grc: nicer block documentation tooltip and properties dialog tabSebastian Koslowski2016-02-051-2/+36
|
* grc: show epy_blocks and epy_module source in generated code previewSebastian Koslowski2015-12-041-1/+11
|
* grc: update PropsDialog on external param changeSebastian Koslowski2015-11-111-4/+4
|
* grc: add support for dynamic param namesSebastian Koslowski2015-07-171-1/+2
|
* grc: only show code preview tab after user enables itSebastian Koslowski2015-07-171-9/+15
|
* grc: show preview of generated code in each blocks properties dialogSebastian Koslowski2015-07-171-8/+41
|
* grc: fix context menu in props dialog text displaysSebastian Koslowski2015-06-221-3/+3
|
* grc: stop using gtk forall() (#793)Sebastian Koslowski2015-06-101-2/+5
|
* grc: props dialog apply button was enabled unnecessarilySebastian Koslowski2015-04-091-2/+1
|