Moves the current window by its lower-left corner.
FORTRAN (libfgl.a)
void winmove(Int32 originx, Int32 originy)
SUBROUTINE WINMOV(originx, originy) INTEGER*4 originx, originy
The winmove subroutine moves the current window so that its origin, the lower-left corner, is at the screen coordinates specified in pixels by the originx and originy parameters. The winmove subroutine removes the current size constraint. After the winmove subroutine is started, the user can interactively change the position and size of the window.
The winmove subroutine does not remove the other window constraints, such as the minimum and maximum size constraints, the aspect ratio, or the stepunit.
To keep the window size constrained, use the prefposition or the prefsize subroutines to move and resize a window.
Note: This subroutine cannot be used to add to a display list.
This subroutine is part of GL in the AIXwindows Environment/6000 Version 1, Release 2 with AIXwindows/3D Feature.
/usr/include/gl/gl.h | Contains C language constant and variable type definitions for GL. |
/usr/include/gl/fgl.h | Contains FORTRAN constant and variable type definitions for GL. |
Binding window constraints to the current window with the winconstraints subroutine.
Raising the current window on top of all other windows with the winpop subroutine.
Changing the current location and size of a window with the winposition subroutine.
Lowering the current window beneath all other windows with the winpush subroutine.
Creating and Managing Windows.