Home
last modified time | relevance | path

Searched refs:begx (Results 1 – 25 of 101) sorted by relevance

12345

/dports/editors/vigor/vigor-0.016/curses/
H A Dtoucholap.c54 startx = max(win1->begx, win2->begx);
55 endy = min(win1->maxy + win1->begy, win2->maxy + win2->begx);
56 endx = min(win1->maxx + win1->begx, win2->maxx + win2->begx);
61 win1->begy, win1->begx, win1->begy + win1->maxy,
62 win1->begx + win1->maxx);
64 win2->begy, win2->begx, win2->begy + win2->maxy,
65 win2->begx + win2->maxx);
70 startx -= win2->begx;
72 endx -= win2->begx;
H A Doverwrite.c57 startx = max(win1->begx, win2->begx);
58 endy = min(win1->maxy + win1->begy, win2->maxy + win2->begx);
59 endx = min(win1->maxx + win1->begx, win2->maxx + win2->begx);
69 &win2->lines[y - win2->begy]->line[startx - win2->begx],
70 &win1->lines[y - win1->begy]->line[startx - win1->begx],
72 __touchline(win2, y, startx - win2->begx, endx - win2->begx,
H A Doverlay.c58 startx = max(win1->begx, win2->begx);
59 endy = min(win1->maxy + win1->begy, win2->maxy + win2->begx);
60 endx = min(win1->maxx + win1->begx, win2->maxx + win2->begx);
70 end = &win1->lines[y1]->line[endx - win1->begx];
71 x = startx - win2->begx;
72 for (sp = &win1->lines[y1]->line[startx - win1->begx];
H A Dnewwin.c102 if (by < orig->begy || bx < orig->begx
104 || bx + nc > orig->maxx + orig->begx)
109 nc = orig->maxx + orig->begx - bx;
133 win->ch_off = win->begx - orig->begx;
138 lp->line = &olp->line[win->begx];
219 win->begx = bx;
227 __CTRACE("makenew: win->begx = %d\n", win->begx);
237 if (win->begx + win->maxx == COLS) {
239 if (win->begx == 0 && win->maxy == LINES && win->begy == 0)
H A Dmvwin.c55 dx = bx - win->begx;
61 win->begx += dx;
68 if (bx < orig->begx || win->maxx + dx > orig->maxx)
71 win->begx = bx;
H A Drefresh.c191 lx -= win->begx;
200 win->curx + win->begx);
288 domvcur(ly, lx, y, wx + win->begx);
295 lx = wx + win->begx;
308 win->begx * __LDATASIZE;
320 lx = wx + win->begx;
368 domvcur(ly, wx + win->begx,
370 win->begx + win->maxx - 1);
373 lx = win->begx + win->maxx - 1;
399 lx = wx + win->begx;
[all …]
/dports/devel/ncurses/ncurses-6.3/ncurses/base/
H A Dlib_newwin.c147 begy, begx)); in NCURSES_SP_NAME()
150 || begx < 0 in NCURSES_SP_NAME()
162 num_lines, num_columns, begy, begx, 0); in NCURSES_SP_NAME()
188 num_lines, num_columns, begy, begx); in newwin()
205 begy, begx)); in derwin()
213 || begx + num_columns > orig->_maxx + 1) in derwin()
220 num_columns = orig->_maxx + 1 - begx; in derwin()
227 orig->_begx + begx, flags); in derwin()
232 win->_parx = begx; in derwin()
270 int begx, in NCURSES_SP_NAME()
[all …]
H A Dlib_refresh.c83 int begx; in wnoutrefresh() local
110 begx = win->_begx; in wnoutrefresh()
134 wide = (begx <= 1 && win->_maxx >= (NewScreen(SP_PARM)->_maxx - 1)); in wnoutrefresh()
149 if (limit_x > NewScreen(SP_PARM)->_maxx - begx) in wnoutrefresh()
150 limit_x = NewScreen(SP_PARM)->_maxx - begx; in wnoutrefresh()
165 dst_col = src_col + begx; in wnoutrefresh()
204 int last_dst = begx + ((last_src < win->_maxx) in wnoutrefresh()
/dports/devel/interactive_rebase_tool/git-interactive-rebase-tool-1.2.1/cargo-crates/pdcurses-sys-0.7.0/src/PDCurses/pdcurses/
H A Dwindow.c144 nlines, ncols, begy, begx)); in PDC_makenew()
181 win->_begx = begx; in PDC_makenew()
237 WINDOW *newwin(int nlines, int ncols, int begy, int begx) in newwin() argument
242 nlines, ncols, begy, begx)); in newwin()
247 ncols = COLS - begx; in newwin()
303 int k = begx - orig->_begx; in subwin()
306 nlines, ncols, begy, begx)); in subwin()
312 (begx + ncols) > (orig->_begx + orig->_maxx)) in subwin()
380 int nlines, ncols, begy, begx, i; in dupwin() local
388 begx = win->_begx; in dupwin()
[all …]
H A Dpad.c106 WINDOW *subpad(WINDOW *orig, int nlines, int ncols, int begy, int begx) in subpad() argument
111 int k = begx; in subpad()
114 nlines, ncols, begy, begx)); in subpad()
121 if ((begy < orig->_begy) || (begx < orig->_begx) || in subpad()
123 (begx + ncols) > (orig->_begx + orig->_maxx)) in subpad()
132 if ( !(win = PDC_makenew(nlines, ncols, begy, begx)) ) in subpad()
H A Drefresh.c64 int begy, begx; /* window's place on screen */ in wnoutrefresh() local
73 begx = win->_begx; in wnoutrefresh()
80 chtype *dest = curscr->_y[j] + begx; in wnoutrefresh()
101 first += begx; in wnoutrefresh()
102 last += begx; in wnoutrefresh()
124 curscr->_curx = win->_curx + begx; in wnoutrefresh()
/dports/devel/pdcurses/PDCurses-3.5/pdcurses/
H A Dwindow.c144 nlines, ncols, begy, begx)); in unctrl()
181 win->_begx = begx; in unctrl()
237 WINDOW *newwin(int nlines, int ncols, int begy, int begx)
242 nlines, ncols, begy, begx));
247 ncols = COLS - begx; in PDC_mbstowcs()
303 int k = begx - orig->_begx;
306 nlines, ncols, begy, begx));
312 (begx + ncols) > (orig->_begx + orig->_maxx))
380 int nlines, ncols, begy, begx, i;
388 begx = win->_begx;
[all …]
H A Dpad.c106 WINDOW *subpad(WINDOW *orig, int nlines, int ncols, int begy, int begx) in subpad() argument
112 nlines, ncols, begy, begx)); in subpad()
119 if (begy < 0 || begx < 0 || in subpad()
121 (begx + ncols) > orig->_maxx) in subpad()
128 ncols = orig->_maxx - begx; in subpad()
130 if ( !(win = PDC_makenew(nlines, ncols, begy, begx)) ) in subpad()
143 win->_y[i] = orig->_y[begy + i] + begx; in subpad()
H A Drefresh.c64 int begy, begx; /* window's place on screen */ in wnoutrefresh() local
73 begx = win->_begx; in wnoutrefresh()
80 chtype *dest = curscr->_y[j] + begx; in wnoutrefresh()
101 first += begx; in wnoutrefresh()
102 last += begx; in wnoutrefresh()
124 curscr->_curx = win->_curx + begx; in wnoutrefresh()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/pdcurses-sys-0.7.1/src/PDCurses/pdcurses/
H A Dwindow.c144 nlines, ncols, begy, begx)); in PDC_makenew()
181 win->_begx = begx; in PDC_makenew()
237 WINDOW *newwin(int nlines, int ncols, int begy, int begx) in newwin() argument
242 nlines, ncols, begy, begx)); in newwin()
247 ncols = COLS - begx; in newwin()
303 int k = begx - orig->_begx; in subwin()
306 nlines, ncols, begy, begx)); in subwin()
312 (begx + ncols) > (orig->_begx + orig->_maxx)) in subwin()
380 int nlines, ncols, begy, begx, i; in dupwin() local
388 begx = win->_begx; in dupwin()
[all …]
H A Dpad.c106 WINDOW *subpad(WINDOW *orig, int nlines, int ncols, int begy, int begx) in subpad() argument
111 int k = begx; in subpad()
114 nlines, ncols, begy, begx)); in subpad()
121 if ((begy < orig->_begy) || (begx < orig->_begx) || in subpad()
123 (begx + ncols) > (orig->_begx + orig->_maxx)) in subpad()
132 if ( !(win = PDC_makenew(nlines, ncols, begy, begx)) ) in subpad()
H A Drefresh.c64 int begy, begx; /* window's place on screen */ in wnoutrefresh() local
73 begx = win->_begx; in wnoutrefresh()
80 chtype *dest = curscr->_y[j] + begx; in wnoutrefresh()
101 first += begx; in wnoutrefresh()
102 last += begx; in wnoutrefresh()
124 curscr->_curx = win->_curx + begx; in wnoutrefresh()
/dports/devel/mingw32-pdcurses/PDCurses-3.4/pdcurses/
H A Dwindow.c140 nlines, ncols, begy, begx)); in PDC_makenew()
177 win->_begx = begx; in PDC_makenew()
233 WINDOW *newwin(int nlines, int ncols, int begy, int begx) in newwin() argument
238 nlines, ncols, begy, begx)); in newwin()
243 ncols = COLS - begx; in newwin()
299 int k = begx - orig->_begx; in subwin()
302 nlines, ncols, begy, begx)); in subwin()
308 (begx + ncols) > (orig->_begx + orig->_maxx)) in subwin()
375 int nlines, ncols, begy, begx, i; in dupwin() local
383 begx = win->_begx; in dupwin()
[all …]
H A Drefresh.c61 int begy, begx; /* window's place on screen */ in wnoutrefresh() local
70 begx = win->_begx; in wnoutrefresh()
77 chtype *dest = curscr->_y[j] + begx; in wnoutrefresh()
98 first += begx; in wnoutrefresh()
99 last += begx; in wnoutrefresh()
121 curscr->_curx = win->_curx + begx; in wnoutrefresh()
H A Dpad.c103 WINDOW *subpad(WINDOW *orig, int nlines, int ncols, int begy, int begx) in subpad() argument
108 int k = begx; in subpad()
111 nlines, ncols, begy, begx)); in subpad()
118 if ((begy < orig->_begy) || (begx < orig->_begx) || in subpad()
120 (begx + ncols) > (orig->_begx + orig->_maxx)) in subpad()
129 if ( !(win = PDC_makenew(nlines, ncols, begy, begx)) ) in subpad()
/dports/multimedia/musikcube/musikcube-0.96.7/src/3rdparty/win32_src/pdcurses/
H A Dwindow.c142 nlines, ncols, begy, begx)); in PDC_makenew()
183 win->_begx = begx; in PDC_makenew()
245 nlines, ncols, begy, begx)); in newwin()
250 ncols = COLS - begx; in newwin()
256 win = PDC_makenew(nlines, ncols, begy, begx); in newwin()
311 nlines, ncols, begy, begx)); in subwin()
321 k = begx - orig->_begx; in subwin()
328 win = PDC_makenew(nlines, ncols, begy, begx); in subwin()
389 int nlines, ncols, begy, begx, i; in dupwin() local
397 begx = win->_begx; in dupwin()
[all …]
H A Dpad.c113 WINDOW *subpad(WINDOW *orig, int nlines, int ncols, int begy, int begx) in subpad() argument
119 nlines, ncols, begy, begx)); in subpad()
126 if (begy < 0 || begx < 0 || in subpad()
128 (begx + ncols) > orig->_maxx) in subpad()
135 ncols = orig->_maxx - begx; in subpad()
137 win = PDC_makenew(nlines, ncols, begy, begx); in subpad()
151 win->_y[i] = orig->_y[begy + i] + begx; in subpad()
H A Drefresh.c63 int begy, begx; /* window's place on screen */ in wnoutrefresh() local
72 begx = win->_begx; in wnoutrefresh()
79 chtype *dest = curscr->_y[j] + begx; in wnoutrefresh()
100 first += begx; in wnoutrefresh()
101 last += begx; in wnoutrefresh()
123 curscr->_curx = win->_curx + begx; in wnoutrefresh()
/dports/editors/fileobj/fileobj-0.7.91/src/
H A Dstdout.py71 def newwin(leny, lenx, begy, begx, ref=None): argument
72 scr = _window(leny, lenx, begy, begx, ref)
98 def __init__(self, leny, lenx, begy, begx, ref): argument
100 self.__pos = util.Pair(begy, begx)
/dports/news/mmail/mmail-0.52/interfac/
H A Dletterl.cc231 int begx = list->xstart(), begy = list->ystart(); in extrakeys() local
234 if ((mm_mouse_event.x > (begx + 12)) && in extrakeys()
235 (mm_mouse_event.x < (begx + 27))) in extrakeys()
239 if ((mm_mouse_event.x > (begx + 27)) && in extrakeys()
240 (mm_mouse_event.x < (begx + list_max_x))) in extrakeys()

12345