[pygtk] examples: gtk/treeview_dnd.py: comment the testing code specific to bug 637214
- From: Dieter Verfaillie <dieterv src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pygtk] examples: gtk/treeview_dnd.py: comment the testing code specific to bug 637214
- Date: Fri, 18 Feb 2011 19:58:31 +0000 (UTC)
commit 36f9d44b994567923a6ea73c2da37b095e3dcd1e
Author: Dieter Verfaillie <dieterv optionexplicit be>
Date: Thu Feb 17 09:34:50 2011 +0100
examples: gtk/treeview_dnd.py: comment the testing code specific to bug 637214
examples/gtk/treeview_dnd.py | 21 +++++++++------------
1 files changed, 9 insertions(+), 12 deletions(-)
---
diff --git a/examples/gtk/treeview_dnd.py b/examples/gtk/treeview_dnd.py
index 0df1650..ba4d3a4 100644
--- a/examples/gtk/treeview_dnd.py
+++ b/examples/gtk/treeview_dnd.py
@@ -2,7 +2,6 @@
# This file is based on http://code.google.com/p/quodlibet/source/browse/junk/dndtest.py
-# For this test case, we're interested in the _drag_motion method of the TestTreeView class.
import gobject
@@ -11,7 +10,7 @@ import gtk
class TestTreeView(gtk.TreeView):
__gtype_name__ = 'TestTreeView'
-
+
def __init__(self, name):
gtk.TreeView.__init__(self)
@@ -47,17 +46,18 @@ class TestTreeView(gtk.TreeView):
self.__iters = []
def _drag_motion(self, view, ctx, x, y, time):
- #try:
- # self.set_drag_dest_row(*self.get_dest_row_at_pos(x, y))
- #except TypeError:
- # self.set_drag_dest_row(len(self.get_model()) - 1, gtk.TREE_VIEW_DROP_AFTER)
try:
- print 'Testing set_drag_dest_row(None, pos)'
- (path, pos) = self.get_dest_row_at_pos(x, y)
- self.set_drag_dest_row(None, pos)
+ self.set_drag_dest_row(*self.get_dest_row_at_pos(x, y))
except TypeError:
self.set_drag_dest_row(len(self.get_model()) - 1, gtk.TREE_VIEW_DROP_AFTER)
+ # You can also pass None as the first parameter to set_drag_dest_row
+ #try:
+ # print 'Testing set_drag_dest_row(None, pos)'
+ # (path, pos) = self.get_dest_row_at_pos(x, y)
+ # self.set_drag_dest_row(None, pos)
+ #except TypeError:
+ # self.set_drag_dest_row(len(self.get_model()) - 1, gtk.TREE_VIEW_DROP_AFTER)
if ctx.get_source_widget() == self:
kind = gtk.gdk.ACTION_MOVE
@@ -119,6 +119,3 @@ if __name__ == '__main__':
w.child.pack_start(TestTreeView('Test 2'))
w.show_all()
gtk.main()
-
-
-
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]