├── .flake8 ├── .gitignore ├── .pre-commit-config.yaml ├── Makefile ├── NOTES ├── README.md ├── gdb-gui.py.in ├── gui ├── __init__.py ├── adapt.py ├── bpcache.py ├── commands.py ├── display.py ├── dprintf.py ├── events.py ├── framecache.py ├── gdbutil.py ├── icons │ ├── README │ ├── arrow-down.svg │ ├── arrow-right.svg │ ├── arrow-up.svg │ ├── breakpoint-disabled-marker.png │ ├── breakpoint-marker.png │ ├── corner-right-down.svg │ ├── corner-right-up.svg │ ├── face-raspberry-symbolic.svg │ ├── fast-forward.svg │ ├── line-pointer.png │ ├── ok.png │ ├── ok.xcf │ └── pause.svg ├── invoker.py ├── logwindow.py ├── logwindow.xml ├── notify.py ├── params.py ├── source.py ├── sourcewindow.xml ├── stack.py ├── stackwindow.xml ├── startup.py ├── storage.py ├── toplevel.py └── updatewindow.py └── pyproject.toml /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/Makefile -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/NOTES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/README.md -------------------------------------------------------------------------------- /gdb-gui.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gdb-gui.py.in -------------------------------------------------------------------------------- /gui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/__init__.py -------------------------------------------------------------------------------- /gui/adapt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/adapt.py -------------------------------------------------------------------------------- /gui/bpcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/bpcache.py -------------------------------------------------------------------------------- /gui/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/commands.py -------------------------------------------------------------------------------- /gui/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/display.py -------------------------------------------------------------------------------- /gui/dprintf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/dprintf.py -------------------------------------------------------------------------------- /gui/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/events.py -------------------------------------------------------------------------------- /gui/framecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/framecache.py -------------------------------------------------------------------------------- /gui/gdbutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/gdbutil.py -------------------------------------------------------------------------------- /gui/icons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/README -------------------------------------------------------------------------------- /gui/icons/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/arrow-down.svg -------------------------------------------------------------------------------- /gui/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/arrow-right.svg -------------------------------------------------------------------------------- /gui/icons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/arrow-up.svg -------------------------------------------------------------------------------- /gui/icons/breakpoint-disabled-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/breakpoint-disabled-marker.png -------------------------------------------------------------------------------- /gui/icons/breakpoint-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/breakpoint-marker.png -------------------------------------------------------------------------------- /gui/icons/corner-right-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/corner-right-down.svg -------------------------------------------------------------------------------- /gui/icons/corner-right-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/corner-right-up.svg -------------------------------------------------------------------------------- /gui/icons/face-raspberry-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/face-raspberry-symbolic.svg -------------------------------------------------------------------------------- /gui/icons/fast-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/fast-forward.svg -------------------------------------------------------------------------------- /gui/icons/line-pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/line-pointer.png -------------------------------------------------------------------------------- /gui/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/ok.png -------------------------------------------------------------------------------- /gui/icons/ok.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/ok.xcf -------------------------------------------------------------------------------- /gui/icons/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/icons/pause.svg -------------------------------------------------------------------------------- /gui/invoker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/invoker.py -------------------------------------------------------------------------------- /gui/logwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/logwindow.py -------------------------------------------------------------------------------- /gui/logwindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/logwindow.xml -------------------------------------------------------------------------------- /gui/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/notify.py -------------------------------------------------------------------------------- /gui/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/params.py -------------------------------------------------------------------------------- /gui/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/source.py -------------------------------------------------------------------------------- /gui/sourcewindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/sourcewindow.xml -------------------------------------------------------------------------------- /gui/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/stack.py -------------------------------------------------------------------------------- /gui/stackwindow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/stackwindow.xml -------------------------------------------------------------------------------- /gui/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/startup.py -------------------------------------------------------------------------------- /gui/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/storage.py -------------------------------------------------------------------------------- /gui/toplevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/toplevel.py -------------------------------------------------------------------------------- /gui/updatewindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/gui/updatewindow.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tromey/gdb-gui/HEAD/pyproject.toml --------------------------------------------------------------------------------