gstreamer/debug-viewer
2016-03-25 18:58:49 +01:00
..
data Modernize menus a little 2014-09-11 20:51:47 +02:00
GstDebugViewer GstDebugViewer: basic port to gtk3 and python gobject 2016-03-25 18:58:49 +01:00
pixmaps New import (the old repo got busted, just had 4 revs anyways) 2014-09-11 20:51:36 +02:00
po Add dummy po directory and add MANIFEST.in 2014-09-11 20:51:38 +02:00
tests GstDebugViewer: basic port to gtk3 and python gobject 2016-03-25 18:58:49 +01:00
.gitignore Migrate .bzrignore -> .gitignore 2014-09-11 20:51:45 +02:00
gst-debug-viewer Switch to new try..except syntax 2014-09-11 20:51:47 +02:00
gst-debug-viewer.desktop.in Copy over distutils setup from gst-inspector 2014-09-11 20:51:38 +02:00
MANIFEST.in Add dummy po directory and add MANIFEST.in 2014-09-11 20:51:38 +02:00
README GstDebugViewer: basic port to gtk3 and python gobject 2016-03-25 18:58:49 +01:00
setup.cfg Copy over distutils setup from gst-inspector 2014-09-11 20:51:38 +02:00
setup.py setup: fix build 2014-09-11 20:51:47 +02:00

# how to build #

./setup.py build; sudo ./setup.py install --prefix=/usr
sudo chmod a+r /usr/share/gst-debug-viewer/*.ui

# porting issues #

http://stackoverflow.com/questions/11025700/generictreemodel-with-pygobject-introspection-gtk-3

# tips #

OLD: prev_action.connect_proxy(prev_button)
NEW: prev_button.set_related_action (prev_action)

OLD: box.pack_start (widget)
NEW: box.pack_start (widget, True, True, 0)

OLD: column.pack_start (cell)
NEW: column.pack_start (cell, True)

OLD: view_column.get_cell_renderers ()
NEW: column.get_cells ()

GenericTreeModel
http://cgit.freedesktop.org/gstreamer/gst-devtools/tree/debug-viewer/GstDebugViewer/GUI/models.py
https://gist.github.com/andialbrecht/4463278
http://mailman.daa.com.au/cgi-bin/pipermail/pygtk/2012-December/020510.html
https://github.com/GNOME/pygobject/blob/master/pygtkcompat/generictreemodel.py