Moves a window or subwindow to the specified coordinates.
Curses Library (libcurses.a)
#include <curses.h> int mvwin (WINDOW *win, int y, int x);
The mvwin subroutine moves the specified window so that its origin is at position (y, x). If the move causes any portion of the window to extend past any edge of the screen, the function fails and the window is not moved.
*win | |
x | |
y |
Upon successful completion, the mvwin subroutine returns OK. Otherwise, it returns ERR.
WINDOW *my_window; mvwin(my_window, 0, 0);
WINDOW *my_window; mvwin(my_window, 20, 10);
The derwin (derwin, newwin, or subwin Subroutine) subroutine, doupdate (doupdate, refresh, wnoutrefresh, or wrefresh Subroutines) subroutine, is_linetouched (is_linetouched, is_wintouched, touchline, touchwin, untouchwin, or wtouchin Subroutine) subroutine.
Curses Overview for Programming in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.
List of Curses Subroutines in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.
Manipulating Window Data with Curses in AIX 5L Version 5.2 General Programming Concepts: Writing and Debugging Programs.