A Simple X Image Viewer
 
 
 
 
 
 

535 lines
14 KiB

  1. /* Copyright 2011-2013 Bert Muennich
  2. *
  3. * This file is part of sxiv.
  4. *
  5. * sxiv is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published
  7. * by the Free Software Foundation; either version 2 of the License,
  8. * or (at your option) any later version.
  9. *
  10. * sxiv is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with sxiv. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include "sxiv.h"
  19. #define _WINDOW_CONFIG
  20. #include "config.h"
  21. #include "icon/data.h"
  22. #include "utf8.h"
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include <locale.h>
  26. #include <X11/cursorfont.h>
  27. #include <X11/Xatom.h>
  28. #include <X11/Xresource.h>
  29. #define RES_CLASS "Sxiv"
  30. enum {
  31. H_TEXT_PAD = 5,
  32. V_TEXT_PAD = 1
  33. };
  34. static struct {
  35. int name;
  36. Cursor icon;
  37. } cursors[CURSOR_COUNT] = {
  38. { XC_left_ptr }, { XC_dotbox }, { XC_watch },
  39. { XC_sb_left_arrow }, { XC_sb_right_arrow }
  40. };
  41. static GC gc;
  42. static XftFont *font;
  43. static int fontheight;
  44. static double fontsize;
  45. static int barheight;
  46. Atom atoms[ATOM_COUNT];
  47. static Bool fs_support;
  48. static Bool fs_warned;
  49. void win_init_font(const win_env_t *e, const char *fontstr)
  50. {
  51. if ((font = XftFontOpenName(e->dpy, e->scr, fontstr)) == NULL)
  52. error(EXIT_FAILURE, 0, "Error loading font '%s'", fontstr);
  53. fontheight = font->ascent + font->descent;
  54. FcPatternGetDouble(font->pattern, FC_SIZE, 0, &fontsize);
  55. barheight = fontheight + 2 * V_TEXT_PAD;
  56. }
  57. void win_alloc_color(const win_env_t *e, const char *name, XftColor *col)
  58. {
  59. if (!XftColorAllocName(e->dpy, DefaultVisual(e->dpy, e->scr),
  60. DefaultColormap(e->dpy, e->scr), name, col))
  61. {
  62. error(EXIT_FAILURE, 0, "Error allocating color '%s'", name);
  63. }
  64. }
  65. void win_check_wm_support(Display *dpy, Window root)
  66. {
  67. int format;
  68. long offset = 0, length = 16;
  69. Atom *data, type;
  70. unsigned long i, nitems, bytes_left;
  71. Bool found = False;
  72. while (!found && length > 0) {
  73. if (XGetWindowProperty(dpy, root, atoms[ATOM__NET_SUPPORTED],
  74. offset, length, False, XA_ATOM, &type, &format,
  75. &nitems, &bytes_left, (unsigned char**) &data))
  76. {
  77. break;
  78. }
  79. if (type == XA_ATOM && format == 32) {
  80. for (i = 0; i < nitems; i++) {
  81. if (data[i] == atoms[ATOM__NET_WM_STATE_FULLSCREEN]) {
  82. found = True;
  83. fs_support = True;
  84. break;
  85. }
  86. }
  87. }
  88. XFree(data);
  89. offset += nitems;
  90. length = MIN(length, bytes_left / 4);
  91. }
  92. }
  93. const char* win_res(Display *dpy, const char *name, const char *def)
  94. {
  95. char *type;
  96. XrmValue ret;
  97. XrmDatabase db;
  98. char *res_man;
  99. XrmInitialize();
  100. if ((res_man = XResourceManagerString(dpy)) != NULL &&
  101. (db = XrmGetStringDatabase(res_man)) != NULL &&
  102. XrmGetResource(db, name, name, &type, &ret) && STREQ(type, "String"))
  103. {
  104. return ret.addr;
  105. } else {
  106. return def;
  107. }
  108. }
  109. unsigned int win_luminance(const XftColor *col)
  110. {
  111. return (col->color.red + col->color.green + col->color.blue) / 3;
  112. }
  113. #define INIT_ATOM_(atom) \
  114. atoms[ATOM_##atom] = XInternAtom(e->dpy, #atom, False);
  115. void win_init(win_t *win)
  116. {
  117. win_env_t *e;
  118. const char *bg, *fg, *f;
  119. memset(win, 0, sizeof(win_t));
  120. e = &win->env;
  121. if ((e->dpy = XOpenDisplay(NULL)) == NULL)
  122. error(EXIT_FAILURE, 0, "Error opening X display");
  123. e->scr = DefaultScreen(e->dpy);
  124. e->scrw = DisplayWidth(e->dpy, e->scr);
  125. e->scrh = DisplayHeight(e->dpy, e->scr);
  126. e->vis = DefaultVisual(e->dpy, e->scr);
  127. e->cmap = DefaultColormap(e->dpy, e->scr);
  128. e->depth = DefaultDepth(e->dpy, e->scr);
  129. if (setlocale(LC_CTYPE, "") == NULL || XSupportsLocale() == 0)
  130. error(0, 0, "No locale support");
  131. f = win_res(e->dpy, RES_CLASS ".font", BAR_FONT);
  132. win_init_font(e, f);
  133. bg = win_res(e->dpy, RES_CLASS ".background", BG_COLOR);
  134. fg = win_res(e->dpy, RES_CLASS ".foreground", FG_COLOR);
  135. win_alloc_color(e, bg, &win->bg);
  136. win_alloc_color(e, fg, &win->fg);
  137. win_alloc_color(e, "black", &win->black);
  138. win->light = win_luminance(&win->bg) > win_luminance(&win->fg);
  139. win->bar.l.size = BAR_L_LEN;
  140. win->bar.r.size = BAR_R_LEN;
  141. /* 3 padding bytes needed by utf8_decode */
  142. win->bar.l.buf = emalloc(win->bar.l.size + 3);
  143. win->bar.l.buf[0] = '\0';
  144. win->bar.r.buf = emalloc(win->bar.r.size + 3);
  145. win->bar.r.buf[0] = '\0';
  146. win->bar.h = options->hide_bar ? 0 : barheight;
  147. INIT_ATOM_(WM_DELETE_WINDOW);
  148. INIT_ATOM_(_NET_WM_NAME);
  149. INIT_ATOM_(_NET_WM_ICON_NAME);
  150. INIT_ATOM_(_NET_WM_ICON);
  151. INIT_ATOM_(_NET_WM_STATE);
  152. INIT_ATOM_(_NET_WM_STATE_FULLSCREEN);
  153. INIT_ATOM_(_NET_SUPPORTED);
  154. win_check_wm_support(e->dpy, RootWindow(e->dpy, e->scr));
  155. }
  156. void win_open(win_t *win)
  157. {
  158. int c, i, j, n;
  159. long parent;
  160. win_env_t *e;
  161. XClassHint classhint;
  162. unsigned long *icon_data;
  163. XColor col;
  164. Cursor *cnone = &cursors[CURSOR_NONE].icon;
  165. char none_data[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
  166. Pixmap none;
  167. int gmask;
  168. XSizeHints sizehints;
  169. Bool fullscreen = options->fullscreen && fs_support;
  170. e = &win->env;
  171. parent = options->embed != 0 ? options->embed : RootWindow(e->dpy, e->scr);
  172. sizehints.flags = PWinGravity;
  173. sizehints.win_gravity = NorthWestGravity;
  174. /* determine window offsets, width & height */
  175. if (options->geometry == NULL)
  176. gmask = 0;
  177. else
  178. gmask = XParseGeometry(options->geometry, &win->x, &win->y,
  179. &win->w, &win->h);
  180. if ((gmask & WidthValue) != 0)
  181. sizehints.flags |= USSize;
  182. else
  183. win->w = WIN_WIDTH;
  184. if ((gmask & HeightValue) != 0)
  185. sizehints.flags |= USSize;
  186. else
  187. win->h = WIN_HEIGHT;
  188. if ((gmask & XValue) != 0) {
  189. if ((gmask & XNegative) != 0) {
  190. win->x += e->scrw - win->w;
  191. sizehints.win_gravity = NorthEastGravity;
  192. }
  193. sizehints.flags |= USPosition;
  194. } else {
  195. win->x = 0;
  196. }
  197. if ((gmask & YValue) != 0) {
  198. if ((gmask & YNegative) != 0) {
  199. win->y += e->scrh - win->h;
  200. sizehints.win_gravity = sizehints.win_gravity == NorthEastGravity
  201. ? SouthEastGravity : SouthWestGravity;
  202. }
  203. sizehints.flags |= USPosition;
  204. } else {
  205. win->y = 0;
  206. }
  207. win->xwin = XCreateWindow(e->dpy, parent,
  208. win->x, win->y, win->w, win->h, 0,
  209. e->depth, InputOutput, e->vis, 0, NULL);
  210. if (win->xwin == None)
  211. error(EXIT_FAILURE, 0, "Error creating X window");
  212. XSelectInput(e->dpy, win->xwin,
  213. ButtonReleaseMask | ButtonPressMask | KeyPressMask |
  214. PointerMotionMask | StructureNotifyMask);
  215. for (i = 0; i < ARRLEN(cursors); i++) {
  216. if (i != CURSOR_NONE)
  217. cursors[i].icon = XCreateFontCursor(e->dpy, cursors[i].name);
  218. }
  219. if (XAllocNamedColor(e->dpy, DefaultColormap(e->dpy, e->scr), "black",
  220. &col, &col) == 0)
  221. {
  222. error(EXIT_FAILURE, 0, "Error allocating color 'black'");
  223. }
  224. none = XCreateBitmapFromData(e->dpy, win->xwin, none_data, 8, 8);
  225. *cnone = XCreatePixmapCursor(e->dpy, none, none, &col, &col, 0, 0);
  226. gc = XCreateGC(e->dpy, win->xwin, 0, None);
  227. n = icons[ARRLEN(icons)-1].size;
  228. icon_data = emalloc((n * n + 2) * sizeof(*icon_data));
  229. for (i = 0; i < ARRLEN(icons); i++) {
  230. n = 0;
  231. icon_data[n++] = icons[i].size;
  232. icon_data[n++] = icons[i].size;
  233. for (j = 0; j < icons[i].cnt; j++) {
  234. for (c = icons[i].data[j] >> 4; c >= 0; c--)
  235. icon_data[n++] = icon_colors[icons[i].data[j] & 0x0F];
  236. }
  237. XChangeProperty(e->dpy, win->xwin,
  238. atoms[ATOM__NET_WM_ICON], XA_CARDINAL, 32,
  239. i == 0 ? PropModeReplace : PropModeAppend,
  240. (unsigned char *) icon_data, n);
  241. }
  242. free(icon_data);
  243. win_set_title(win, "sxiv");
  244. classhint.res_class = RES_CLASS;
  245. classhint.res_name = options->res_name != NULL ? options->res_name : "sxiv";
  246. XSetClassHint(e->dpy, win->xwin, &classhint);
  247. XSetWMProtocols(e->dpy, win->xwin, &atoms[ATOM_WM_DELETE_WINDOW], 1);
  248. sizehints.width = win->w;
  249. sizehints.height = win->h;
  250. sizehints.x = win->x;
  251. sizehints.y = win->y;
  252. XSetWMNormalHints(win->env.dpy, win->xwin, &sizehints);
  253. win->h -= win->bar.h;
  254. win->buf.w = e->scrw;
  255. win->buf.h = e->scrh;
  256. win->buf.pm = XCreatePixmap(e->dpy, win->xwin,
  257. win->buf.w, win->buf.h, e->depth);
  258. XSetForeground(e->dpy, gc, fullscreen ? win->black.pixel : win->bg.pixel);
  259. XFillRectangle(e->dpy, win->buf.pm, gc, 0, 0, win->buf.w, win->buf.h);
  260. XSetWindowBackgroundPixmap(e->dpy, win->xwin, win->buf.pm);
  261. XMapWindow(e->dpy, win->xwin);
  262. XFlush(e->dpy);
  263. if (fullscreen)
  264. win_toggle_fullscreen(win);
  265. }
  266. CLEANUP void win_close(win_t *win)
  267. {
  268. int i;
  269. for (i = 0; i < ARRLEN(cursors); i++)
  270. XFreeCursor(win->env.dpy, cursors[i].icon);
  271. XFreeGC(win->env.dpy, gc);
  272. XDestroyWindow(win->env.dpy, win->xwin);
  273. XCloseDisplay(win->env.dpy);
  274. }
  275. bool win_configure(win_t *win, XConfigureEvent *c)
  276. {
  277. bool changed;
  278. changed = win->w != c->width || win->h + win->bar.h != c->height;
  279. win->x = c->x;
  280. win->y = c->y;
  281. win->w = c->width;
  282. win->h = c->height - win->bar.h;
  283. win->bw = c->border_width;
  284. return changed;
  285. }
  286. void win_toggle_fullscreen(win_t *win)
  287. {
  288. XEvent ev;
  289. XClientMessageEvent *cm;
  290. if (!fs_support) {
  291. if (!fs_warned) {
  292. error(0, 0, "No fullscreen support");
  293. fs_warned = True;
  294. }
  295. return;
  296. }
  297. win->fullscreen = !win->fullscreen;
  298. memset(&ev, 0, sizeof(ev));
  299. ev.type = ClientMessage;
  300. cm = &ev.xclient;
  301. cm->window = win->xwin;
  302. cm->message_type = atoms[ATOM__NET_WM_STATE];
  303. cm->format = 32;
  304. cm->data.l[0] = win->fullscreen;
  305. cm->data.l[1] = atoms[ATOM__NET_WM_STATE_FULLSCREEN];
  306. cm->data.l[2] = cm->data.l[3] = 0;
  307. XSendEvent(win->env.dpy, DefaultRootWindow(win->env.dpy), False,
  308. SubstructureNotifyMask | SubstructureRedirectMask, &ev);
  309. }
  310. void win_toggle_bar(win_t *win)
  311. {
  312. if (win->bar.h != 0) {
  313. win->h += win->bar.h;
  314. win->bar.h = 0;
  315. } else {
  316. win->bar.h = barheight;
  317. win->h -= win->bar.h;
  318. }
  319. }
  320. void win_clear(win_t *win)
  321. {
  322. win_env_t *e;
  323. e = &win->env;
  324. if (win->w > win->buf.w || win->h + win->bar.h > win->buf.h) {
  325. XFreePixmap(e->dpy, win->buf.pm);
  326. win->buf.w = MAX(win->buf.w, win->w);
  327. win->buf.h = MAX(win->buf.h, win->h + win->bar.h);
  328. win->buf.pm = XCreatePixmap(e->dpy, win->xwin,
  329. win->buf.w, win->buf.h, e->depth);
  330. }
  331. XSetForeground(e->dpy, gc, win->fullscreen ? win->black.pixel : win->bg.pixel);
  332. XFillRectangle(e->dpy, win->buf.pm, gc, 0, 0, win->buf.w, win->buf.h);
  333. }
  334. #define TEXTWIDTH(win, text, len) \
  335. win_draw_text(win, NULL, NULL, 0, 0, text, len, 0)
  336. int win_draw_text(win_t *win, XftDraw *d, const XftColor *color, int x, int y,
  337. char *text, int len, int w)
  338. {
  339. int err, tw = 0;
  340. char *t, *next;
  341. uint32_t rune;
  342. XftFont *f;
  343. FcCharSet *fccharset;
  344. XGlyphInfo ext;
  345. for (t = text; t - text < len; t = next) {
  346. next = utf8_decode(t, &rune, &err);
  347. if (XftCharExists(win->env.dpy, font, rune)) {
  348. f = font;
  349. } else { /* fallback font */
  350. fccharset = FcCharSetCreate();
  351. FcCharSetAddChar(fccharset, rune);
  352. f = XftFontOpen(win->env.dpy, win->env.scr, FC_CHARSET, FcTypeCharSet,
  353. fccharset, FC_SCALABLE, FcTypeBool, FcTrue,
  354. FC_SIZE, FcTypeDouble, fontsize, NULL);
  355. FcCharSetDestroy(fccharset);
  356. }
  357. XftTextExtentsUtf8(win->env.dpy, f, (XftChar8*)t, next - t, &ext);
  358. tw += ext.xOff;
  359. if (tw <= w) {
  360. XftDrawStringUtf8(d, color, f, x, y, (XftChar8*)t, next - t);
  361. x += ext.xOff;
  362. }
  363. if (f != font)
  364. XftFontClose(win->env.dpy, f);
  365. }
  366. return tw;
  367. }
  368. void win_draw_bar(win_t *win)
  369. {
  370. int len, x, y, w, tw;
  371. win_env_t *e;
  372. win_bar_t *l, *r;
  373. XftDraw *d;
  374. const XftColor *bg, *fg;
  375. if ((l = &win->bar.l)->buf == NULL || (r = &win->bar.r)->buf == NULL)
  376. return;
  377. e = &win->env;
  378. y = win->h + font->ascent + V_TEXT_PAD;
  379. w = win->w - 2*H_TEXT_PAD;
  380. d = XftDrawCreate(e->dpy, win->buf.pm, DefaultVisual(e->dpy, e->scr),
  381. DefaultColormap(e->dpy, e->scr));
  382. if (win->fullscreen && !win->light)
  383. bg = &win->bg, fg = &win->fg;
  384. else
  385. bg = &win->fg, fg = &win->bg;
  386. XSetForeground(e->dpy, gc, bg->pixel);
  387. XFillRectangle(e->dpy, win->buf.pm, gc, 0, win->h, win->w, win->bar.h);
  388. XSetForeground(e->dpy, gc, fg->pixel);
  389. XSetBackground(e->dpy, gc, bg->pixel);
  390. if ((len = strlen(r->buf)) > 0) {
  391. if ((tw = TEXTWIDTH(win, r->buf, len)) > w)
  392. return;
  393. x = win->w - tw - H_TEXT_PAD;
  394. w -= tw;
  395. win_draw_text(win, d, fg, x, y, r->buf, len, tw);
  396. }
  397. if ((len = strlen(l->buf)) > 0) {
  398. x = H_TEXT_PAD;
  399. w -= 2 * H_TEXT_PAD; /* gap between left and right parts */
  400. win_draw_text(win, d, fg, x, y, l->buf, len, w);
  401. }
  402. XftDrawDestroy(d);
  403. }
  404. void win_draw(win_t *win)
  405. {
  406. if (win->bar.h > 0)
  407. win_draw_bar(win);
  408. XSetWindowBackgroundPixmap(win->env.dpy, win->xwin, win->buf.pm);
  409. XClearWindow(win->env.dpy, win->xwin);
  410. XFlush(win->env.dpy);
  411. }
  412. void win_draw_rect(win_t *win, int x, int y, int w, int h, bool fill, int lw,
  413. unsigned long col)
  414. {
  415. XGCValues gcval;
  416. gcval.line_width = lw;
  417. gcval.foreground = col;
  418. XChangeGC(win->env.dpy, gc, GCForeground | GCLineWidth, &gcval);
  419. if (fill)
  420. XFillRectangle(win->env.dpy, win->buf.pm, gc, x, y, w, h);
  421. else
  422. XDrawRectangle(win->env.dpy, win->buf.pm, gc, x, y, w, h);
  423. }
  424. void win_set_title(win_t *win, const char *title)
  425. {
  426. XStoreName(win->env.dpy, win->xwin, title);
  427. XSetIconName(win->env.dpy, win->xwin, title);
  428. XChangeProperty(win->env.dpy, win->xwin, atoms[ATOM__NET_WM_NAME],
  429. XInternAtom(win->env.dpy, "UTF8_STRING", False), 8,
  430. PropModeReplace, (unsigned char *) title, strlen(title));
  431. XChangeProperty(win->env.dpy, win->xwin, atoms[ATOM__NET_WM_ICON_NAME],
  432. XInternAtom(win->env.dpy, "UTF8_STRING", False), 8,
  433. PropModeReplace, (unsigned char *) title, strlen(title));
  434. }
  435. void win_set_cursor(win_t *win, cursor_t cursor)
  436. {
  437. if (cursor >= 0 && cursor < ARRLEN(cursors)) {
  438. XDefineCursor(win->env.dpy, win->xwin, cursors[cursor].icon);
  439. XFlush(win->env.dpy);
  440. }
  441. }
  442. void win_cursor_pos(win_t *win, int *x, int *y)
  443. {
  444. int i;
  445. unsigned int ui;
  446. Window w;
  447. if (!XQueryPointer(win->env.dpy, win->xwin, &w, &w, &i, &i, x, y, &ui))
  448. *x = *y = 0;
  449. }