1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
from tests import TestCase
from quodlibet.qltk.views import AllTreeView, BaseView, TreeViewColumn, \
DragScroll, MultiDragTreeView, RCMTreeView, DragIconTreeView
import quodlibet.config
from quodlibet.util import is_windows
from gi.repository import Gtk, Gdk
from . import skipIf
from .helper import send_key_click, visible, send_button_click, realized
def _fill_view(view):
"""Adds a model with 100 text rows and a column to display them.
Returns the model.
"""
model = Gtk.ListStore(str)
column = Gtk.TreeViewColumn("foo")
title = Gtk.CellRendererText()
column.pack_start(title, True)
column.add_attribute(title, "text", 0)
view.append_column(column)
for x in range(100):
model.append(row=["foo"])
view.set_model(model)
return model
class THintedTreeView(TestCase):
def setUp(self):
quodlibet.config.init()
self.c = AllTreeView()
def test_exists(self):
self.failUnless(self.c)
def tearDown(self):
self.c.destroy()
quodlibet.config.quit()
class TBaseView(TestCase):
def setUp(self):
self.m = Gtk.ListStore(str)
self.c = BaseView(model=self.m)
def test_selection_changed(self):
events = []
def on_selection_changed(*args):
events.append(args)
self.c.connect("selection-changed", on_selection_changed)
self.m.append(row=["foo"])
self.c.get_selection().set_mode(Gtk.SelectionMode.MULTIPLE)
self.c.get_selection().select_all()
self.assertTrue(events)
def test_remove(self):
self.m.append(row=["foo"])
self.c.remove_iters([self.m[0].iter])
self.failIf(len(self.m))
self.m.append(row=["foo"])
self.c.remove_iters([])
self.failUnless(len(self.m))
self.c.remove_paths([self.m[0].path])
self.failIf(len(self.m))
def test_key_events(self):
with visible(self.c):
send_key_click(self.c, "<Primary>Right")
send_key_click(self.c, "<Primary>Left")
def test_select_func(self):
self.m.append(row=["foo"])
self.m.append(row=["bar"])
self.failUnless(self.c.select_by_func(lambda r: True))
self.failIf(self.c.select_by_func(lambda r: False))
self.c.select_by_func(lambda r: False, scroll=False, one=True)
def test_iter_select_func(self):
# empty
self.assertFalse(self.c.iter_select_by_func(lambda r: False))
self.assertFalse(self.c.iter_select_by_func(lambda r: True))
self.m.append(row=["foo"])
self.m.append(row=["bar"])
self.m.append(row=["foo"])
self.c.remove_selection()
self.assertTrue(self.c.iter_select_by_func(lambda r: r[0] == "foo"))
selection = self.c.get_selection()
model, iter_ = selection.get_selected()
self.assertEqual(model.get_path(iter_)[:], [0])
self.assertTrue(self.c.iter_select_by_func(lambda r: r[0] == "foo"))
model, iter_ = selection.get_selected()
self.assertEqual(model.get_path(iter_)[:], [2])
self.assertTrue(self.c.iter_select_by_func(lambda r: r[0] == "foo"))
model, iter_ = selection.get_selected()
self.assertEqual(model.get_path(iter_)[:], [0])
self.assertTrue(self.c.iter_select_by_func(lambda r: r[0] == "bar"))
model, iter_ = selection.get_selected()
self.assertEqual(model.get_path(iter_)[:], [1])
self.assertFalse(self.c.iter_select_by_func(lambda r: r[0] == "bar"))
def test_remove_select_single(self):
# empty
self.c.remove_selection()
model = _fill_view(self.c)
# select first and remove
selection = self.c.get_selection()
length = len(model)
selection.select_path(model[0].path)
self.c.remove_selection()
self.assertEqual(len(model), length - 1)
model, iter_ = selection.get_selected()
# afterwards the first is selected
self.assertEqual(model[iter_].path, model[0].path)
def test_remove_select_multiple(self):
selection = self.c.get_selection()
selection.set_mode(Gtk.SelectionMode.MULTIPLE)
# empty
self.c.remove_selection()
model = _fill_view(self.c)
# select first two and remove
selection = self.c.get_selection()
length = len(model)
selection.select_range(model[0].path, model[1].path)
self.c.remove_selection()
self.assertEqual(len(model), length - 2)
# afterwards the first is selected
model, paths = selection.get_selected_rows()
self.assertEqual(paths, [model[0].path])
def test_without_model(self):
column = TreeViewColumn()
self.c.append_column(column)
column = self.c.get_columns()[0]
column.set_sort_indicator(True)
self.c.set_search_column(0)
with self.c.without_model() as model:
self.assertEqual(model, self.m)
self.assertTrue(self.c.get_model() is None)
self.assertEqual(self.c.get_search_column(), 0)
column = self.c.get_columns()[0]
self.assertTrue(column.get_sort_indicator())
def test_set_drag_dest(self):
x, y = self.c.convert_bin_window_to_widget_coords(0, 0)
# empty model
self.c.unset_rows_drag_dest()
self.c.set_drag_dest(x, y)
path, pos = self.c.get_drag_dest_row()
self.assertTrue(path is None)
# filled model but not realized, fall back to last path
model = _fill_view(self.c)
self.c.set_drag_dest(x, y)
path, pos = self.c.get_drag_dest_row()
self.assertEqual(model[-1].path, path)
# realized now, so the first path
with realized(self.c):
x, y = self.c.convert_bin_window_to_widget_coords(0, 0)
self.c.unset_rows_drag_dest()
self.c.set_drag_dest(x, y, into_only=False)
path, pos = self.c.get_drag_dest_row()
self.assertEqual(model[0].path, path)
self.assertEqual(pos, Gtk.TreeViewDropPosition.BEFORE)
self.c.unset_rows_drag_dest()
self.c.set_drag_dest(x, y, into_only=True)
path, pos = self.c.get_drag_dest_row()
self.assertEqual(model[0].path, path)
self.assertEqual(pos, Gtk.TreeViewDropPosition.INTO_OR_BEFORE)
def tearDown(self):
self.c.destroy()
class TMultiDragTreeView(TestCase):
def setUp(self):
self.c = MultiDragTreeView()
_fill_view(self.c)
def test_click(self):
with visible(self.c):
send_button_click(self.c, Gdk.BUTTON_PRIMARY)
send_button_click(self.c, Gdk.BUTTON_PRIMARY, primary=True)
class TRCMTreeView(TestCase):
def setUp(self):
self.c = RCMTreeView()
_fill_view(self.c)
def test_right_click(self):
with visible(self.c):
send_button_click(self.c, Gdk.BUTTON_SECONDARY)
send_button_click(self.c, Gdk.BUTTON_SECONDARY, primary=True)
def test_popup(self):
menu = Gtk.Menu()
selection = self.c.get_selection()
selection.set_mode(Gtk.SelectionMode.MULTIPLE)
with visible(self.c):
# the popup only shows if the underlying row is selected,
# so select all first
selection.select_all()
self.assertTrue(self.c.popup_menu(menu, Gdk.BUTTON_SECONDARY, 0))
class TDragIconTreeView(TestCase):
def setUp(self):
self.c = DragIconTreeView()
_fill_view(self.c)
def test_create_drag_icon(self):
model = self.c.get_model()
all_paths = [row.path for row in model]
self.assertFalse(self.c.create_multi_row_drag_icon(all_paths, 1))
with visible(self.c):
self.assertTrue(self.c.create_multi_row_drag_icon(all_paths, 1))
self.assertFalse(self.c.create_multi_row_drag_icon([], 1))
self.assertTrue(
self.c.create_multi_row_drag_icon([all_paths[0]], 10))
class TDragScroll(TestCase):
def setUp(self):
class ScrollClass(BaseView, DragScroll):
pass
self.c = ScrollClass()
_fill_view(self.c)
@skipIf(is_windows(), "fixme")
def test_basic(self):
self.c.scroll_motion(0, 0)
self.c.scroll_motion(42, 42)
self.c.scroll_motion(999, 999)
self.c.scroll_disable()
class TTreeViewColumn(TestCase):
def test_main(self):
TreeViewColumn(title="foo")
area = Gtk.CellAreaBox()
tvc = TreeViewColumn(cell_area=area)
self.assertEqual(tvc.get_area(), area)
|