about summary refs log tree commit diff stats
path: root/widgets
Commit message (Expand)AuthorAgeFilesLines
...
* Message list: implement index-format optionYash Srivastav2019-06-072-24/+11
* Move ANSI stripping from filters to GoDrew DeVault2019-06-071-4/+20
* Remove unnecessary branchDrew DeVault2019-06-071-3/+0
* Execute the editor with the shellDrew DeVault2019-06-071-1/+1
* Add binding to toggle headersDrew DeVault2019-06-071-1/+1
* implements ability to view headers in message viewYash Srivastav2019-06-071-53/+91
* Skip rendering dirlist if sidebar width is 0Lucas F. Souza2019-06-071-1/+3
* Use SetAddressList for From headerDrew DeVault2019-06-051-2/+10
* Introduce :new-account -tJanUlrich2019-06-051-14/+22
* Add date to message viewerDrew DeVault2019-06-022-5/+11
* widget: Add ProvidesMessage interfaceKevin Kuehler2019-06-023-1/+41
* Only add message to store if store existsKevin Kuehler2019-06-021-8/+12
* Enumerate Cc and Bcc lists in composerDrew DeVault2019-06-021-1/+20
* Simplify layout of message viewer gridDrew DeVault2019-06-021-17/+3
* Use forked version of tcellDrew DeVault2019-06-011-1/+1
* widgets/terminal: Don't segfault on resizeKevin Kuehler2019-06-011-10/+15
* Add :save and :pipe commands to viewerGalen Abell2019-05-272-0/+23
* Update terminal color handling per vterm changesDrew DeVault2019-05-261-43/+22
* Update to the latest go-libvtermDrew DeVault2019-05-261-1/+1
* Implement :edit in compose screenDrew DeVault2019-05-261-27/+51
* msgviewer: copy stderr into pagerDrew DeVault2019-05-261-1/+17
* Fix special characters in address.PersonalNameDrew DeVault2019-05-251-6/+9
* Show account wizard if no accounts configuredDrew DeVault2019-05-222-5/+8
* Implement opening tutorial after account wizardDrew DeVault2019-05-221-1/+21
* Write new accounts to config and open tabDrew DeVault2019-05-221-7/+139
* Fix always showing last account tabDrew DeVault2019-05-221-2/+2
* Remove excess padding from incoming config pageDrew DeVault2019-05-211-1/+1
* New account wizard, part oneDrew DeVault2019-05-212-0/+627
* Load IMAP worker for imap+insecureDrew DeVault2019-05-201-1/+5
* Show unsupported mimetype message in redDrew DeVault2019-05-201-1/+1
* Show attachment names in multipart viewDrew DeVault2019-05-201-1/+5
* Implement :next-part, :prev-partDrew DeVault2019-05-201-2/+31
* Flesh out multipart switcherDrew DeVault2019-05-201-65/+141
* Refactor message part into dedicated widgetDrew DeVault2019-05-201-86/+148
* Verify TLS certificatesDrew DeVault2019-05-201-7/+1
* Advance cursor after :delete and :moveDrew DeVault2019-05-191-4/+5
* Reset message list cursor when switching storesDrew DeVault2019-05-191-1/+1
* Advance message list cursor when messages arriveDrew DeVault2019-05-191-0/+13
* Update internal state and draw from the same goroutineSimon Ser2019-05-193-28/+22
* widgets/terminal: fix damage race conditionSimon Ser2019-05-191-1/+12
* s/aerc2/aerc/gDrew DeVault2019-05-1710-27/+27
* Remove unimplemented color configurationDrew DeVault2019-05-172-3/+3
* Implement ui.empty-message config optionDrew DeVault2019-05-171-1/+1
* Fix date header on outgoing emailsDrew DeVault2019-05-171-1/+1
* Decode email when reading it for quotingDrew DeVault2019-05-161-0/+1
* Implement :reply -q and :reply -aDrew DeVault2019-05-161-0/+9
* Implement (basic form) of :replyDrew DeVault2019-05-162-7/+19
* Let caller pass in custom headers to composeDrew DeVault2019-05-161-6/+32
* Copy sent emails to the Sent folderDrew DeVault2019-05-151-1/+9
* Force INBOX to be included in dirlistDrew DeVault2019-05-141-0/+11
n class="w"> Window *wins, d1, d2; XWindowAttributes wa; if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) { for(i = 0; i < num; i++) { if(!XGetWindowAttributes(dpy, wins[i], &wa)) continue; if(wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1)) continue; if(wa.map_state == IsViewable) manage(wins[i], &wa); } } if(wins) XFree(wins); } static int win_property(Window w, Atom a, Atom t, long l, unsigned char **prop) { int status, format; unsigned long res, extra; Atom real; status = XGetWindowProperty(dpy, w, a, 0L, l, False, t, &real, &format, &res, &extra, prop); if(status != Success || *prop == 0) { return 0; } if(res == 0) { free((void *) *prop); } return res; } /* * Startup Error handler to check if another window manager * is already running. */ static int xerrorstart(Display *dsply, XErrorEvent *ee) { otherwm = True; return -1; } /* extern */ char stext[1024]; int tsel = DEFTAG; int screen, sx, sy, sw, sh, bx, by, bw, bh, mw; unsigned int ntags; Atom wmatom[WMLast], netatom[NetLast]; Bool running = True; Bool issel = True; Client *clients = NULL; Client *sel = NULL; Cursor cursor[CurLast]; Display *dpy; DC dc = {0}; Window root, barwin; int getproto(Window w) { int protos = 0; int i; long res; Atom *protocols; res = win_property(w, wmatom[WMProtocols], XA_ATOM, 20L, ((unsigned char **)&protocols)); if(res <= 0) { return protos; } for(i = 0; i < res; i++) { if(protocols[i] == wmatom[WMDelete]) protos |= PROTODELWIN; } free((char *) protocols); return protos; } void sendevent(Window w, Atom a, long value) { XEvent e; e.type = ClientMessage; e.xclient.window = w; e.xclient.message_type = a; e.xclient.format = 32; e.xclient.data.l[0] = value; e.xclient.data.l[1] = CurrentTime; XSendEvent(dpy, w, False, NoEventMask, &e); XSync(dpy, False); } void quit(Arg *arg) { running = False; } /* * There's no way to check accesses to destroyed windows, thus those cases are * ignored (especially on UnmapNotify's). Other types of errors call Xlibs * default error handler, which calls exit(). */ int xerror(Display *dpy, XErrorEvent *ee) { if(ee->error_code == BadWindow || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch) || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable) || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable) || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable) || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch) || (ee->request_code == X_GrabKey && ee->error_code == BadAccess)) return 0; fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n", ee->request_code, ee->error_code); return xerrorxlib(dpy, ee); /* may call exit() */ } int main(int argc, char *argv[]) { int i; unsigned int mask; fd_set rd; Bool readin = True; Window w; XEvent ev; XSetWindowAttributes wa; if(argc == 2 && !strncmp("-v", argv[1], 3)) { fputs("dwm-"VERSION", (C)opyright MMVI Anselm R. Garbe\n", stdout); exit(EXIT_SUCCESS); } else if(argc != 1) eprint("usage: dwm [-v]\n"); dpy = XOpenDisplay(0); if(!dpy) eprint("dwm: cannot open display\n"); screen = DefaultScreen(dpy); root = RootWindow(dpy, screen); otherwm = False; XSetErrorHandler(xerrorstart); /* this causes an error if some other window manager is running */ XSelectInput(dpy, root, SubstructureRedirectMask); XSync(dpy, False); if(otherwm) eprint("dwm: another window manager is already running\n"); XSetErrorHandler(NULL); xerrorxlib = XSetErrorHandler(xerror); /* init atoms */ wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False); wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False); netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False); netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False); netatom[NetActiveWindow] = XInternAtom(dpy, "_NET_ACTIVE_WINDOW", False); XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32, PropModeReplace, (unsigned char *) netatom, NetLast); /* init cursors */ cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr); cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing); cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur); grabkeys(); initrregs(); for(ntags = 0; tags[ntags]; ntags++); /* style */ dc.bg = getcolor(BGCOLOR); dc.fg = getcolor(FGCOLOR); dc.border = getcolor(BORDERCOLOR); setfont(FONT); sx = sy = 0; sw = DisplayWidth(dpy, screen); sh = DisplayHeight(dpy, screen); mw = (sw * MASTERW) / 100; wa.override_redirect = 1; wa.background_pixmap = ParentRelative; wa.event_mask = ButtonPressMask | ExposureMask; bx = by = 0; bw = sw; dc.h = bh = dc.font.height + 4; barwin = XCreateWindow(dpy, root, bx, by, bw, bh, 0, DefaultDepth(dpy, screen), CopyFromParent, DefaultVisual(dpy, screen), CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa); XDefineCursor(dpy, barwin, cursor[CurNormal]); XMapRaised(dpy, barwin); dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen)); dc.gc = XCreateGC(dpy, root, 0, 0); strcpy(stext, "dwm-"VERSION); drawstatus(); issel = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask); wa.event_mask = SubstructureRedirectMask | EnterWindowMask | LeaveWindowMask; wa.cursor = cursor[CurNormal]; XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa); scan(); /* main event loop, also reads status text from stdin */ while(running) { FD_ZERO(&rd); if(readin) FD_SET(STDIN_FILENO, &rd); FD_SET(ConnectionNumber(dpy), &rd); i = select(ConnectionNumber(dpy) + 1, &rd, 0, 0, 0); if(i == -1 && errno == EINTR) continue; if(i < 0) eprint("select failed\n"); else if(i > 0) { if(FD_ISSET(ConnectionNumber(dpy), &rd)) { while(XPending(dpy)) { XNextEvent(dpy, &ev); if(handler[ev.type]) (handler[ev.type])(&ev); /* call handler */ } } if(readin && FD_ISSET(STDIN_FILENO, &rd)) { readin = NULL != fgets(stext, sizeof(stext), stdin); if(readin) stext[strlen(stext) - 1] = 0; else strcpy(stext, "broken pipe"); drawstatus(); } } } cleanup(); XCloseDisplay(dpy); return 0; }