Lines Matching defs:self
27 _curses_window_addch_impl(PyCursesWindowObject *self, int group_left_1,
32 _curses_window_addch(PyCursesWindowObject *self, PyObject *args)
71 return_value = _curses_window_addch_impl(self, group_left_1, y, x, ch, group_right_1, attr);
99 _curses_window_addstr_impl(PyCursesWindowObject *self, int group_left_1,
104 _curses_window_addstr(PyCursesWindowObject *self, PyObject *args)
143 return_value = _curses_window_addstr_impl(self, group_left_1, y, x, str, group_right_1, attr);
173 _curses_window_addnstr_impl(PyCursesWindowObject *self, int group_left_1,
178 _curses_window_addnstr(PyCursesWindowObject *self, PyObject *args)
218 return_value = _curses_window_addnstr_impl(self, group_left_1, y, x, str, n, group_right_1, attr);
225 "bkgd($self, ch, attr=_curses.A_NORMAL, /)\n"
239 _curses_window_bkgd_impl(PyCursesWindowObject *self, PyObject *ch, long attr);
242 _curses_window_bkgd(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)
260 return_value = _curses_window_bkgd_impl(self, ch, attr);
267 "attroff($self, attr, /)\n"
276 _curses_window_attroff_impl(PyCursesWindowObject *self, long attr);
279 _curses_window_attroff(PyCursesWindowObject *self, PyObject *arg)
288 return_value = _curses_window_attroff_impl(self, attr);
295 "attron($self, attr, /)\n"
304 _curses_window_attron_impl(PyCursesWindowObject *self, long attr);
307 _curses_window_attron(PyCursesWindowObject *self, PyObject *arg)
316 return_value = _curses_window_attron_impl(self, attr);
323 "attrset($self, attr, /)\n"
332 _curses_window_attrset_impl(PyCursesWindowObject *self, long attr);
335 _curses_window_attrset(PyCursesWindowObject *self, PyObject *arg)
344 return_value = _curses_window_attrset_impl(self, attr);
351 "bkgdset($self, ch, attr=_curses.A_NORMAL, /)\n"
365 _curses_window_bkgdset_impl(PyCursesWindowObject *self, PyObject *ch,
369 _curses_window_bkgdset(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)
387 return_value = _curses_window_bkgdset_impl(self, ch, attr);
394 "border($self, ls=_curses.ACS_VLINE, rs=_curses.ACS_VLINE,\n"
428 _curses_window_border_impl(PyCursesWindowObject *self, PyObject *ls,
434 _curses_window_border(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)
482 return_value = _curses_window_border_impl(self, ls, rs, ts, bs, tl, tr, bl, br);
504 _curses_window_box_impl(PyCursesWindowObject *self, int group_right_1,
508 _curses_window_box(PyCursesWindowObject *self, PyObject *args)
528 return_value = _curses_window_box_impl(self, group_right_1, verch, horch);
547 _curses_window_delch_impl(PyCursesWindowObject *self, int group_right_1,
551 _curses_window_delch(PyCursesWindowObject *self, PyObject *args)
571 return_value = _curses_window_delch_impl(self, group_right_1, y, x);
598 _curses_window_derwin_impl(PyCursesWindowObject *self, int group_left_1,
602 _curses_window_derwin(PyCursesWindowObject *self, PyObject *args)
627 return_value = _curses_window_derwin_impl(self, group_left_1, nlines, ncols, begin_y, begin_x);
634 "echochar($self, ch, attr=_curses.A_NORMAL, /)\n"
648 _curses_window_echochar_impl(PyCursesWindowObject *self, PyObject *ch,
652 _curses_window_echochar(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)
670 return_value = _curses_window_echochar_impl(self, ch, attr);
679 "enclose($self, y, x, /)\n"
693 _curses_window_enclose_impl(PyCursesWindowObject *self, int y, int x);
696 _curses_window_enclose(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)
713 return_value = _curses_window_enclose_impl(self, y, x);
722 "getbkgd($self, /)\n"
731 _curses_window_getbkgd_impl(PyCursesWindowObject *self);
734 _curses_window_getbkgd(PyCursesWindowObject *self, PyObject *Py_UNUSED(ignored))
739 _return_value = _curses_window_getbkgd_impl(self);
766 _curses_window_getch_impl(PyCursesWindowObject *self, int group_right_1,
770 _curses_window_getch(PyCursesWindowObject *self, PyObject *args)
791 _return_value = _curses_window_getch_impl(self, group_right_1, y, x);
818 _curses_window_getkey_impl(PyCursesWindowObject *self, int group_right_1,
822 _curses_window_getkey(PyCursesWindowObject *self, PyObject *args)
842 return_value = _curses_window_getkey_impl(self, group_right_1, y, x);
866 _curses_window_get_wch_impl(PyCursesWindowObject *self, int group_right_1,
870 _curses_window_get_wch(PyCursesWindowObject *self, PyObject *args)
890 return_value = _curses_window_get_wch_impl(self, group_right_1, y, x);
917 _curses_window_hline_impl(PyCursesWindowObject *self, int group_left_1,
922 _curses_window_hline(PyCursesWindowObject *self, PyObject *args)
962 return_value = _curses_window_hline_impl(self, group_left_1, y, x, ch, n, group_right_1, attr);
988 _curses_window_insch_impl(PyCursesWindowObject *self, int group_left_1,
993 _curses_window_insch(PyCursesWindowObject *self, PyObject *args)
1032 return_value = _curses_window_insch_impl(self, group_left_1, y, x, ch, group_right_1, attr);
1053 _curses_window_inch_impl(PyCursesWindowObject *self, int group_right_1,
1057 _curses_window_inch(PyCursesWindowObject *self, PyObject *args)
1078 _return_value = _curses_window_inch_impl(self, group_right_1, y, x);
1111 _curses_window_insstr_impl(PyCursesWindowObject *self, int group_left_1,
1116 _curses_window_insstr(PyCursesWindowObject *self, PyObject *args)
1155 return_value = _curses_window_insstr_impl(self, group_left_1, y, x, str, group_right_1, attr);
1187 _curses_window_insnstr_impl(PyCursesWindowObject *self, int group_left_1,
1192 _curses_window_insnstr(PyCursesWindowObject *self, PyObject *args)
1232 return_value = _curses_window_insnstr_impl(self, group_left_1, y, x, str, n, group_right_1, attr);
1239 "is_linetouched($self, line, /)\n"
1253 _curses_window_is_linetouched_impl(PyCursesWindowObject *self, int line);
1256 _curses_window_is_linetouched(PyCursesWindowObject *self, PyObject *arg)
1265 return_value = _curses_window_is_linetouched_impl(self, line);
1285 _curses_window_noutrefresh_impl(PyCursesWindowObject *self,
1291 _curses_window_noutrefresh(PyCursesWindowObject *self, PyObject *args)
1315 return_value = _curses_window_noutrefresh_impl(self, group_right_1, pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol);
1326 "noutrefresh($self, /)\n"
1339 _curses_window_noutrefresh_impl(PyCursesWindowObject *self);
1342 _curses_window_noutrefresh(PyCursesWindowObject *self, PyObject *Py_UNUSED(ignored))
1344 return _curses_window_noutrefresh_impl(self);
1366 _curses_window_overlay_impl(PyCursesWindowObject *self,
1372 _curses_window_overlay(PyCursesWindowObject *self, PyObject *args)
1400 return_value = _curses_window_overlay_impl(self, destwin, group_right_1, sminrow, smincol, dminrow, dmincol, dmaxrow, dmaxcol);
1424 _curses_window_overwrite_impl(PyCursesWindowObject *self,
1431 _curses_window_overwrite(PyCursesWindowObject *self, PyObject *args)
1459 return_value = _curses_window_overwrite_impl(self, destwin, group_right_1, sminrow, smincol, dminrow, dmincol, dmaxrow, dmaxcol);
1466 "putwin($self, file, /)\n"
1477 "redrawln($self, beg, num, /)\n"
1493 _curses_window_redrawln_impl(PyCursesWindowObject *self, int beg, int num);
1496 _curses_window_redrawln(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)
1513 return_value = _curses_window_redrawln_impl(self, beg, num);
1539 _curses_window_refresh_impl(PyCursesWindowObject *self, int group_right_1,
1544 _curses_window_refresh(PyCursesWindowObject *self, PyObject *args)
1568 return_value = _curses_window_refresh_impl(self, group_right_1, pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol);
1575 "setscrreg($self, top, bottom, /)\n"
1591 _curses_window_setscrreg_impl(PyCursesWindowObject *self, int top,
1595 _curses_window_setscrreg(PyCursesWindowObject *self, PyObject *const *args, Py_ssize_t nargs)
1612 return_value = _curses_window_setscrreg_impl(self, top, bottom);
1638 _curses_window_subwin_impl(PyCursesWindowObject *self, int group_left_1,
1642 _curses_window_subwin(PyCursesWindowObject *self, PyObject *args)
1667 return_value = _curses_window_subwin_impl(self, group_left_1, nlines, ncols, begin_y, begin_x);
1686 _curses_window_scroll_impl(PyCursesWindowObject *self, int group_right_1,
1690 _curses_window_scroll(PyCursesWindowObject *self, PyObject *args)
1709 return_value = _curses_window_scroll_impl(self, group_right_1, lines);
1726 _curses_window_touchline_impl(PyCursesWindowObject *self, int start,
1730 _curses_window_touchline(PyCursesWindowObject *self, PyObject *args)
1754 return_value = _curses_window_touchline_impl(self, start, count, group_right_1, changed);
1779 _curses_window_vline_impl(PyCursesWindowObject *self, int group_left_1,
1784 _curses_window_vline(PyCursesWindowObject *self, PyObject *args)
1824 return_value = _curses_window_vline_impl(self, group_left_1, y, x, ch, n, group_right_1, attr);