Home
last modified time | relevance | path

Searched refs:get_cursor_coords (Results 1 – 19 of 19) sorted by relevance

/dports/devel/py-urwid/urwid-2.1.2/urwid/tests/
H A Dtest_decoration.py82 self.assertEqual(p.get_cursor_coords((10,)), None)
84 self.assertEqual(p.get_cursor_coords((4,)), None)
88 self.assertEqual(p.get_cursor_coords((10,)), (4, 0))
90 self.assertEqual(p.get_cursor_coords((4,)), None)
H A Dtest_widget.py103 get_cursor = w.get_cursor_coords((4,))
H A Dtest_container.py257 c.get_cursor_coords((10,))
282 'right', 1, 'bottom', 1).get_cursor_coords((2,2)), (1,1))
326 gcc = w.get_cursor_coords((cols,))
H A Dtest_listbox.py114 cursor=focus_widget.get_cursor_coords((4,))
/dports/devel/py-urwid/urwid-2.1.2/docs/manual/
H A Dwcur1.py18 cursor = self.get_cursor_coords(size)
21 def get_cursor_coords(self, size): member in CursorPudding
H A Dwidgets.rst722 :meth:`Widget.get_cursor_coords` method.
725 :class:`ListBox` widget in particular uses get_cursor_coords to
733 is in focus. The get_cursor_coords method must always return the same cursor
/dports/devel/py-urwid/urwid-2.1.2/urwid/
H A Dwimp.py73 c.cursor = self.get_cursor_coords(size)
76 def get_cursor_coords(self, size): member in SelectableIcon
643 def get_cursor_coords(self, size): member in PopUpTarget
645 return self._current_widget.get_cursor_coords(size)
H A Dwidget.py1258 return self.get_cursor_coords((maxcol,))[0]
1507 x,y = self.get_cursor_coords((maxcol,))
1541 x,y = self.get_cursor_coords((maxcol,))
1633 canv.cursor = self.get_cursor_coords((maxcol,))
1661 def get_cursor_coords(self, size): member in Edit
1765 get_cursor_coords = property( variable in delegate_to_widget_mixin.DelegateToWidgetMixin
1766 lambda self:get_delegate(self).get_cursor_coords)
H A Ddecoration.py372 def get_cursor_coords(self, size): member in BoxAdapter
376 return self._original_widget.get_cursor_coords((maxcol, self.height))
624 def get_cursor_coords(self,size): member in Padding
633 coords = self._original_widget.get_cursor_coords(maxvals)
842 def get_cursor_coords(self, size): member in Filler
850 coords = self._original_widget.get_cursor_coords((maxcol,))
852 coords = self._original_widget.get_cursor_coords(
H A Dcontainer.py423 def get_cursor_coords(self, size): member in GridFlow
426 return self.__super.get_cursor_coords(size)
714 def get_cursor_coords(self, size): member in Overlay
721 x, y = self.top_w.get_cursor_coords(
1178 def get_cursor_coords(self, size): member in Frame
1191 coords = self.header.get_cursor_coords((maxcol,))
1197 coords = self.footer.get_cursor_coords((maxcol,))
1578 def get_cursor_coords(self, size): member in Pile
1598 coords = self.focus_item.get_cursor_coords((maxcol,))
2145 def get_cursor_coords(self, size): member in Columns
[all …]
H A Dlistbox.py340 cursor = focus_widget.get_cursor_coords((maxcol,))
498 def get_cursor_coords(self, size): member in ListBox
782 coords = widget.get_cursor_coords((maxcol,))
931 cursor = focus_widget.get_cursor_coords((maxcol,))
H A Dvterm.py1393 def get_cursor_coords(self, size): member in Terminal
/dports/devel/py-urwid-readline/urwid_readline-0.13/urwid_readline/
H A Dreadline_edit.py212 x, y = self.get_cursor_coords(self.size)
216 x, y = self.get_cursor_coords(self.size)
315 x, y = self.get_cursor_coords(self.size)
338 x, y = self.get_cursor_coords(self.size)
341 x, y = self.get_cursor_coords(self.size)
/dports/www/mitmproxy/mitmproxy-7.0.4/mitmproxy/tools/console/commander/
H A Dcommander.py245 canv.cursor = self.get_cursor_coords((maxcol,))
248 def get_cursor_coords(self, size) -> typing.Tuple[int, int]: member in CommandEdit
/dports/devel/bpython/bpython-0.22.1/bpython/
H A Durwid.py359 def get_cursor_coords(self, *args, **kwargs): member in BPythonEdit
363 return super().get_cursor_coords(*args, **kwargs)
483 def get_cursor_coords(self, size): member in Tooltip
484 return self.bottom_w.get_cursor_coords(size)
/dports/devel/py-urwid/urwid-2.1.2/docs/
H A Dchangelog.rst162 * Implement get_cursor_coords for Frame widget (by Philip Matura)
403 * Fix for Overlay.get_cursor_coords()
480 * Fixes for a Columns.get_cursor_coords() regression and a
481 SelectableIcon.get_cursor_coords() bug
497 * Fix for Overlay.get_cursor_coords()
591 * ListBox now includes a get_cursor_coords() method, allowing
639 * Fix for an Overlay get_cursor_coords(), and Text top-widget bug
915 * Fixed a bug in Filler.get_cursor_coords() that causes a crash if the
916 contained widget's get_cursor_coords() function returns None.
1086 different location than that reported by Edit.get_cursor_coords() in
/dports/deskutils/py-khal/khal-0.10.4/khal/ui/
H A D__init__.py90 def get_cursor_coords(self, size): member in SelectableText
180 def get_cursor_coords(self, size): member in U_Event
H A Dcalendarwidget.py62 def get_cursor_coords(self, size): member in DatePart
/dports/audio/py-fmoo-audiotools/audiotools-3.0/audiotools/
H A Dui.py2129 def get_cursor_coords(self, size): member in VolumeControl
2145 c.cursor = self.get_cursor_coords(size)