I'm very pleased to announce the release of our new website and documentation using the new toolchain with Hugo and AsciiDoctor. To get more information about the new toolchain please read the FreeBSD Documentation Project Primer[1], Hugo docs[2] and AsciiDoctor docs[3]. Acknowledgment: Benedict Reuschling <bcr@> Glen Barber <gjb@> Hiroki Sato <hrs@> Li-Wen Hsu <lwhsu@> Sean Chittenden <seanc@> The FreeBSD Foundation [1] https://docs.FreeBSD.org/en/books/fdp-primer/ [2] https://gohugo.io/documentation/ [3] https://docs.asciidoctor.org/home/ Approved by: doceng, core
30 lines
887 B
Groff
30 lines
887 B
Groff
.\" $FreeBSD$
|
|
.TH curs_move 3 ""
|
|
.SH 名称
|
|
\fBmove\fR, \fBwmove\fR - move \fBncurses\fR window cursor
|
|
.SH 書式
|
|
\fB#include <ncurses.h>\fR
|
|
|
|
\fBint move(int y, int x);\fR
|
|
.br
|
|
\fBint wmove(WINDOW *win, int y, int x);\fR
|
|
.br
|
|
.SH 解説
|
|
これらのルーチンは、ウィンドウと関連付けられたカーソルを、行 \fIy\fR および列 \fIx\fR
|
|
に移動します。このルーチンは、\fBrefresh\fR が呼び出されるまで、端末の物理
|
|
カーソルを移動しません。指定された位置は、ウィンドウの左上コーナー(これは
|
|
(0,0)です)に相対的に指定されます。
|
|
.SH 戻り値
|
|
これらのルーチンは、処理失敗すると整数 \fBERR\fR を返してきます。処理が正常に
|
|
完了した場合は、\fBERR\fR 以外の整数値を返します。
|
|
.SH 注釈
|
|
\fBmove\fR はマクロである可能性があることに注意してください。
|
|
.SH 関連項目
|
|
\fBncurses\fR(3), \fBcurs_refresh\fR(3)
|
|
.\"#
|
|
.\"# The following sets edit modes for GNU EMACS
|
|
.\"# Local Variables:
|
|
.\"# mode:nroff
|
|
.\"# fill-column:79
|
|
.\"# End:
|
|
|