'\" te .\" Copyright 1989 AT&T .\" Portions Copyright (c) 1996, Sun Microsystems, Inc. All Rights Reserved. .TH curs_alecompat 3CURSES "31 Dec 1996" "SunOS 5.11" "Curses Library Functions" .SH NAME curs_alecompat, movenextch, wmovenextch, moveprevch, wmoveprevch, adjcurspos, wadjcurspos \- these functions are added to ALE curses library for moving the cursor by character. .SH SYNOPSIS .LP .nf \fBcc\fR [ \fIflag\fR ... ] \fIfile\fR ... \fB-lcurses\fR [ \fIlibrary\fR .. ] #include \fBint\fR \fBmovenextch\fR(\fBvoid\fR); .fi .LP .nf \fBint\fR \fBwmovenextch\fR(\fBWINDOW *\fR\fIwin\fR); .fi .LP .nf \fBint\fR \fBmoveprevch\fR(\fBvoid\fR); .fi .LP .nf \fBint\fR \fBwmoveprevch\fR(\fBWINDOW *\fR\fIwin\fR); .fi .LP .nf \fBint\fR \fBadjcurspos\fR(\fBvoid\fR); .fi .LP .nf \fBint\fR \fBwadjcurspos\fR(\fBWINDOW *\fR\fIwin\fR); .fi .SH DESCRIPTION .sp .LP \fBmovenextch()\fR and \fBwmovenextch()\fR move the cursor to the next character to the right. If the next character is a multicolumn character, the cursor is positioned on the first (left-most) column of that character. The new cursor position will be on the next character, even if the cursor was originally positioned on the left-most column of a multicolumn character. Note that the simple cursor increment (\fB++x\fR) does not guarantee movement to the next character, if the cursor was originally positioned on a multicolumn character. \fBgetyx\fR(3CURSES) can be used to find the new position. .sp .LP \fBmoveprevc()\fR and \fBwmoveprevch()\fR routines are the opposite of \fBmovenextch()\fR and \fBwmovenextch()\fR, moving the cursor to the left-most column of the previous character. .sp .LP \fBadjcurspos()\fR and \fBwadjcurspos()\fR move the cursor to the first(left-most) column of the multicolumn character that the cursor is presently on. If the cursor is already on the first column, or if the cursor is on a single-column character, these routines will have no effect. .SH RETURN VALUE .sp .LP All routines return the integer \fBERR\fR upon failure and an integer value other than \fBERR\fR upon successful completion. .SH ATTRIBUTES .sp .LP See \fBattributes\fR(5) for descriptions of the following attributes: .sp .sp .TS tab() box; cw(2.75i) |cw(2.75i) lw(2.75i) |lw(2.75i) . ATTRIBUTE TYPEATTRIBUTE VALUE _ MT-LevelUnsafe .TE .SH SEE ALSO .sp .LP \fBcurses\fR(3CURSES), \fBgetyx\fR(3CURSES), \fBattributes\fR(5) .SH NOTES .sp .LP The header file \fB\fR automatically includes the header files \fB\fR , \fB\fR and \fB\fR\&. .sp .LP Note that \fBmovenextch()\fR,\fB moveprevch()\fR, and \fBadjcurspos()\fR may be macros.