X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=st.c;h=a5cca1710cdc17da5fd79d4bd9393f5b5cc43674;hb=cfe897554d4467fdf4c002429370fc7716e419bc;hp=4a898767fecc3d1f2dde3480402e98b505111289;hpb=ee858b4805aec3e12bff48cf27433ebcd3f6ac34;p=st.git diff --git a/st.c b/st.c index 4a89876..a5cca17 100644 --- a/st.c +++ b/st.c @@ -125,11 +125,12 @@ typedef struct { GC gc; } DC; +/* TODO: use better name for vars... */ typedef struct { int mode; int bx, by; int ex, ey; - int b[2], e[2]; + struct {int x, y;} b, e; char *clip; } Selection; @@ -185,9 +186,9 @@ static char* kmap(KeySym); static void kpress(XEvent *); static void resize(XEvent *); static void focus(XEvent *); -static void brelease(XEvent *e); -static void bpress(XEvent *e); -static void bmotion(XEvent *e); +static void brelease(XEvent *); +static void bpress(XEvent *); +static void bmotion(XEvent *); static void (*handler[LASTEvent])(XEvent *) = { @@ -210,16 +211,21 @@ static int cmdfd; static pid_t pid; static Selection sel; -/* TODO: use X11 clipboard */ +void +selinit(void) { + sel.mode = 0; + sel.bx = -1; + sel.clip = NULL; +} static inline int selected(int x, int y) { - if ((sel.ey==y && sel.by==y)) { + if(sel.ey == y && sel.by == y) { int bx = MIN(sel.bx, sel.ex); int ex = MAX(sel.bx, sel.ex); - return (x>=bx && x<=ex); + return BETWEEN(x, bx, ex); } - return (((y>sel.b[1] && y=sel.b[0] && (x<=sel.e[0] || sel.b[1]!=sel.e[1]))); + return ((sel.b.y < y&&y < sel.e.y) || (y==sel.e.y && x<=sel.e.x)) + || (y==sel.b.y && x>=sel.b.x && (x<=sel.e.x || sel.b.y!=sel.e.y)); } static void getbuttoninfo(XEvent *e, int *b, int *x, int *y) { @@ -227,10 +233,10 @@ static void getbuttoninfo(XEvent *e, int *b, int *x, int *y) { *b=*b==4096?5:*b==2048?4:*b==1024?3:*b==512?2:*b==256?1:-1; *x = e->xbutton.x/xw.cw; *y = e->xbutton.y/xw.ch; - sel.b[0] = sel.by