curx()
A getter for the current column (X coord) of the window
static VALUE window_curx(VALUE obj) { struct windata *winp; int x, y; GetWINDOW(obj, winp); getyx(winp->window, y, x); return INT2FIX(x); }