herbe/herbe.c

156 lines
3.6 KiB
C
Raw Normal View History

2020-07-24 13:51:07 +02:00
#include <X11/Xlib.h>
#include <X11/Xft/Xft.h>
2020-07-20 15:41:19 +02:00
#include <stdio.h>
#include <stdlib.h>
2020-07-30 14:41:01 +02:00
#include <signal.h>
#include <unistd.h>
2020-07-20 15:41:19 +02:00
2020-07-24 13:51:07 +02:00
#include "config.h"
2020-07-30 14:41:01 +02:00
Display *display;
Window window;
void expire()
2020-07-20 15:41:19 +02:00
{
2020-07-24 13:51:07 +02:00
XEvent event;
2020-07-30 14:41:01 +02:00
event.type = ButtonPress;
XSendEvent(display, window, 0, 0, &event);
XFlush(display);
}
int main(int argc, char *argv[])
{
2020-07-31 10:59:07 +02:00
if (argc != 2)
{
fprintf(stderr, "Usage: herbe message\n");
exit(EXIT_FAILURE);
}
2020-07-31 18:58:35 +02:00
char *body = argv[1];
2020-07-30 14:41:01 +02:00
signal(SIGALRM, expire);
alarm(duration);
display = XOpenDisplay(NULL);
2020-07-24 13:51:07 +02:00
if (display == NULL)
{
fprintf(stderr, "Cannot open display\n");
2020-07-20 15:41:19 +02:00
exit(EXIT_FAILURE);
}
2020-07-24 13:51:07 +02:00
int screen = DefaultScreen(display);
2020-07-31 10:59:07 +02:00
Visual *visual = DefaultVisual(display, screen);
Colormap colormap = DefaultColormap(display, screen);
2020-07-20 15:41:19 +02:00
2020-08-01 21:00:20 +02:00
int screen_width = DisplayWidth(display, screen);
int screen_height = DisplayHeight(display, screen);
2020-07-29 15:09:34 +02:00
XftColor color;
2020-07-20 15:41:19 +02:00
2020-07-24 13:51:07 +02:00
XSetWindowAttributes attributes;
attributes.override_redirect = True;
2020-07-31 10:59:07 +02:00
XftColorAllocName(display, visual, colormap, background_color, &color);
2020-07-29 15:09:34 +02:00
attributes.background_pixel = color.pixel;
2020-07-31 10:59:07 +02:00
XftColorAllocName(display, visual, colormap, border_color, &color);
2020-07-29 15:09:34 +02:00
attributes.border_pixel = color.pixel;
2020-07-20 15:41:19 +02:00
2020-07-31 10:59:07 +02:00
XftFont *font = XftFontOpenName(display, screen, font_pattern);
2020-07-20 15:41:19 +02:00
2020-08-01 21:00:20 +02:00
int max_text_width = width - 2 * padding;
int eols_size = 5;
int *eols = malloc(eols_size * sizeof(int));
eols[0] = 0;
int remainder = strlen(body);
int num_of_lines = 1;
while (1)
{
XGlyphInfo info;
info.width = 0;
int eol = max_text_width / font->max_advance_width;
while (info.width < max_text_width)
{
eol++;
XftTextExtentsUtf8(display, font, body, eol, &info);
}
--eol;
if (eol >= remainder)
{
if (eols_size < num_of_lines + 1)
{
eols_size += 5;
eols = realloc(eols, eols_size * sizeof(int));
}
eols[num_of_lines] = eols[num_of_lines - 1] + remainder;
num_of_lines++;
break;
}
2020-08-01 21:34:48 +02:00
while (body[eols[num_of_lines - 1] + eol] != ' ')
--eol;
eol++;
2020-08-01 21:00:20 +02:00
remainder -= eol;
if (eols_size < num_of_lines + 1)
{
eols_size += 5;
eols = realloc(eols, eols_size * sizeof(int));
}
eols[num_of_lines] = eols[num_of_lines - 1] + eol;
num_of_lines++;
}
2020-07-31 14:59:52 +02:00
unsigned int x = pos_x;
unsigned int y = pos_y;
2020-08-01 21:00:20 +02:00
unsigned int text_height = font->ascent - font->descent;
unsigned int height = (num_of_lines - 2) * line_spacing + (num_of_lines - 1) * text_height + 2 * padding;
2020-07-31 10:59:07 +02:00
2020-07-30 14:41:01 +02:00
switch (corner)
{
2020-07-31 10:59:07 +02:00
case BOTTOM_RIGHT:
2020-08-01 21:00:20 +02:00
y = screen_height - height - border_size * 2 - pos_y;
2020-07-31 10:59:07 +02:00
case TOP_RIGHT:
2020-08-01 21:00:20 +02:00
x = screen_width - width - border_size * 2 - pos_x;
2020-07-31 10:59:07 +02:00
break;
case BOTTOM_LEFT:
2020-08-01 21:00:20 +02:00
y = screen_height - height - border_size * 2 - pos_y;
2020-07-29 15:09:34 +02:00
}
2020-08-01 21:00:20 +02:00
window = XCreateWindow(display, RootWindow(display, screen), x, y, width, height, border_size, DefaultDepth(display, screen), CopyFromParent, visual,
CWOverrideRedirect | CWBackPixel | CWBorderPixel, &attributes);
2020-07-20 15:41:19 +02:00
2020-07-31 10:59:07 +02:00
XftDraw *draw = XftDrawCreate(display, window, visual, colormap);
XftColorAllocName(display, visual, colormap, font_color, &color);
2020-07-20 15:41:19 +02:00
2020-07-30 11:21:27 +02:00
XSelectInput(display, window, ExposureMask | ButtonPress);
2020-07-20 15:41:19 +02:00
2020-07-30 11:21:27 +02:00
XMapWindow(display, window);
2020-07-29 19:39:15 +02:00
2020-07-30 14:41:01 +02:00
XEvent event;
2020-07-30 11:21:27 +02:00
while (1)
{
XNextEvent(display, &event);
2020-07-20 15:41:19 +02:00
2020-07-30 11:21:27 +02:00
if (event.type == Expose)
{
2020-07-30 12:41:37 +02:00
XClearWindow(display, window);
2020-08-01 21:00:20 +02:00
for (int i = 1; i < num_of_lines; i++)
XftDrawStringUtf8(draw, &color, font, padding, line_spacing * (i - 1) + text_height * i + padding, body + eols[i - 1], eols[i] - eols[i - 1]);
2020-07-30 11:21:27 +02:00
}
if (event.type == ButtonPress)
break;
}
2020-07-29 15:09:34 +02:00
2020-08-01 21:00:20 +02:00
free(eols);
XftDrawDestroy(draw);
2020-07-31 10:59:07 +02:00
XftColorFree(display, visual, colormap, &color);
XftFontClose(display, font);
2020-07-29 15:09:34 +02:00
XCloseDisplay(display);
2020-07-31 10:59:07 +02:00
return EXIT_SUCCESS;
2020-07-31 18:58:35 +02:00
}