summaryrefslogtreecommitdiff
path: root/grc/gui/Utils.py
Commit message (Collapse)AuthorAgeFilesLines
* grc: pep8 formattingJosh Morman2021-11-241-5/+9
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* grc: remove sixClayton Smith2020-10-051-11/+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
* grc: use cmake --build instead of makejapm482020-04-261-0/+19
| | | | | This allows the use of other toolchains (ninja, MSVC, etc.). Also, use all available CPU cores (equivalent of "make -j$(nproc)").
* gnuradio-companion: add Meta modifier key for macOSDavide Gerhard2020-04-191-0/+22
| | | | | implements support for the Meta key on macOS. Others platforms continue to use Ctrl.
* Update license header to SPDX formatdevnulling2020-01-271-13/+2
|
* grc: move some of the param checkers to separate fileSebastian Koslowski2017-11-091-1/+3
|
* grc: gtk3: fix #1290Sebastian Koslowski2017-08-301-0/+3
|
* grc: gtk3: Converted actions to Gio.Action instead of Gtk.ActionSeth Hitefield2017-05-031-1/+5
|
* grc: gtk3: curved connectionsSebastian Koslowski2017-01-111-2/+3
|
* grc: gtk3: fix block layout sizes when zoomingSebastian Koslowski2017-01-111-1/+1
|
* grc: gtk3: fix canvas extent after zoomingSebastian Koslowski2017-01-061-1/+1
|
* Merge remote-tracking branch 'upstream/next' into gtk3Sebastian Koslowski2016-11-171-0/+10
|\
| * Merge branch 'master' into nextJohnathan Corgan2016-11-121-0/+4
| |\
| | * grc: fix column widths on dpi scalings != 1Sebastian Müller2016-11-021-0/+4
| | |
| * | Merge branch 'master' into nextJohnathan Corgan2016-11-121-1/+6
| |\|
| | * grc: respect display scaling for block positions, canvas size and props dialogSebastian Koslowski2016-10-261-1/+6
| | |
| * | Merge branch 'master' into nextJohnathan Corgan2016-10-251-6/+1
| |\|
| | * Revert "Merge remote-tracking branch 'skoslowski/dpi_fix' into maint"Johnathan Corgan2016-10-251-6/+1
| | | | | | | | | | | | | | | This reverts commit afadc5cb5564cb9b6136db046adccde5856edf57, reversing changes made to 915f1b02408a6a4f2ce2ffb2d9336643745aa939.
| * | Merge branch 'master' into nextJohnathan Corgan2016-10-241-1/+6
| |\|
| | * Merge remote-tracking branch 'skoslowski/dpi_fix' into maintJohnathan Corgan2016-10-241-1/+6
| | |\
| | | * grc: respect display scaling for block positions, canvas size and props dialogSebastian Koslowski2016-10-211-1/+6
| | |/ | |/|
| | * Backport GRC Python code for Python-2.6.6+Ben Hilburn2016-10-171-1/+1
| |/
* | grc: gtk3: make screnshots as png, pdf and svgSebastian Koslowski2016-09-121-4/+40
| |
* | grc: refactor: Port, Param, Options init clean-upSebastian Koslowski2016-07-291-11/+34
| |
* | grc: refactor: minor clean-up and fixesSebastian Koslowski2016-07-141-1/+1
| |
* | grc: gtk3: update main and checksSebastian Koslowski2016-07-131-2/+0
| |
* | grc: py3k compat using python-modernizeSebastian Koslowski2016-06-091-2/+6
| |
* | grc: gtk3: remove canvas size and enable zoomingSebastian Koslowski2016-05-311-29/+1
| |
* | grc: remove all Cheetah templates from GUISebastian Koslowski2016-05-301-24/+0
| |
* | grc: Main window opens with pygobject and gtk3. Still throws tons of errors.Seth Hitefield2016-05-241-8/+11
|/
* grc: minor fixes/clean-upsSebastian Koslowski2016-05-181-4/+5
|
* grc: cache compiled Cheetah templatesSebastian Koslowski2015-12-101-13/+20
|
* grc: replace non-printable characters instead of ignoring themSeth Hitefield2015-07-271-1/+1
|
* grc: ensure only valid utf-8 is passed to markup_escape_text (fixes #813)Sebastian Koslowski2015-07-211-7/+12
|
* grc: clean-up gui/Utils.pySebastian Koslowski2015-07-211-18/+20
|
* grc: snap-to-grid (WIP)Sebastian Koslowski2014-08-191-1/+9
|
* Removing trailing/extra whitespaces before release.Tom Rondeau2014-07-071-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: Fix whitespace issue in grc to use proper spacesTim O'Shea2013-07-091-77/+77
| | | | Remove all \t's to match the rest of GNU Radio
* grc: add bus portsNicholas McCarthy2013-07-081-0/+6
| | | | | Bus ports allow ganging together of block input or output ports into a single display item for connection to other bus ports.
* docs: Modified argument formating in python docstrings in grc.Ben Reynwar2012-08-141-12/+26
|
* grc: replaced asserts in gui subdirectoryJosh Blum2011-04-141-2/+3
|
* Created a pixmap rotation routine in Utils for handling those rotated labels.Josh Blum2009-12-051-0/+23
| | | | | | | The rotation is now performed by the gtk pixbuf class and not manually in python. In addition, the block and port classes now draw from pixmaps and not from images. Pixmaps are server-side objects, where images are client-side (meaning: possible speed-up).
* Move key press extraction logic into actions module.Josh Blum2009-09-131-18/+2
| | | | | | Replaced xml encode with gtk escape text. Added templates for category and docs tool tips. Other various code tweaks in gui modules.
* Merging r11186:11273 from grc branch.jblum2009-06-231-0/+82
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