2008-01-26 21:41:34 +01:00
|
|
|
/*
|
2008-01-27 19:10:43 +01:00
|
|
|
* awesome-message.c - message window for awesome
|
2008-01-26 21:41:34 +01:00
|
|
|
*
|
|
|
|
* Copyright © 2008 Julien Danjou <julien@danjou.info>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-01-27 01:34:37 +01:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <getopt.h>
|
2008-01-31 18:34:59 +01:00
|
|
|
|
2008-02-08 11:51:12 +01:00
|
|
|
#include <signal.h>
|
2008-01-26 21:41:34 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2008-01-31 17:32:05 +01:00
|
|
|
|
|
|
|
#include <confuse.h>
|
|
|
|
|
2008-01-26 21:41:34 +01:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
|
|
|
#include "common/swindow.h"
|
|
|
|
#include "common/util.h"
|
2008-02-27 09:04:17 +01:00
|
|
|
#include "common/version.h"
|
2008-01-31 17:32:05 +01:00
|
|
|
#include "common/configopts.h"
|
2008-01-26 21:41:34 +01:00
|
|
|
|
2008-01-29 17:24:58 +01:00
|
|
|
#define PROGNAME "awesome-message"
|
|
|
|
|
2008-02-08 11:51:12 +01:00
|
|
|
static Bool running = True;
|
|
|
|
|
2008-01-31 17:32:05 +01:00
|
|
|
/** Import awesome config file format */
|
|
|
|
extern cfg_opt_t awesome_opts[];
|
|
|
|
|
|
|
|
/** awesome-run global configuration structure */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/** Display ref */
|
|
|
|
Display *display;
|
|
|
|
/** Font to use */
|
|
|
|
XftFont *font;
|
|
|
|
/** Foreground color */
|
|
|
|
XColor fg;
|
|
|
|
/** Background color */
|
|
|
|
XColor bg;
|
2008-03-07 17:40:40 +01:00
|
|
|
/** Draw shadow_offset under text */
|
|
|
|
Bool shadow_offset;
|
2008-01-31 17:32:05 +01:00
|
|
|
} AwesomeMsgConf;
|
|
|
|
|
|
|
|
static AwesomeMsgConf globalconf;
|
|
|
|
|
2008-01-26 21:41:34 +01:00
|
|
|
static void __attribute__ ((noreturn))
|
|
|
|
exit_help(int exit_code)
|
|
|
|
{
|
|
|
|
FILE *outfile = (exit_code == EXIT_SUCCESS) ? stdout : stderr;
|
2008-02-08 11:51:12 +01:00
|
|
|
fprintf(outfile, "Usage: %s [-x xcoord] [-y ycoord] [-d delay] <message> <icon>\n",
|
2008-01-29 17:24:58 +01:00
|
|
|
PROGNAME);
|
2008-01-26 21:41:34 +01:00
|
|
|
exit(exit_code);
|
|
|
|
}
|
|
|
|
|
2008-03-04 20:40:37 +01:00
|
|
|
static int
|
2008-01-31 17:32:05 +01:00
|
|
|
config_parse(const char *confpatharg)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
char *confpath;
|
|
|
|
cfg_t *cfg, *cfg_screen, *cfg_general, *cfg_colors;
|
|
|
|
|
|
|
|
if(!confpatharg)
|
|
|
|
confpath = config_file();
|
|
|
|
else
|
|
|
|
confpath = a_strdup(confpatharg);
|
|
|
|
|
|
|
|
cfg = cfg_init(awesome_opts, CFGF_NONE);
|
|
|
|
|
|
|
|
switch((ret = cfg_parse(cfg, confpath)))
|
|
|
|
{
|
|
|
|
case CFG_FILE_ERROR:
|
|
|
|
perror("awesome-message: parsing configuration file failed");
|
|
|
|
break;
|
|
|
|
case CFG_PARSE_ERROR:
|
|
|
|
cfg_error(cfg, "awesome: parsing configuration file %s failed.\n", confpath);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ret)
|
2008-03-04 20:40:37 +01:00
|
|
|
return ret;
|
2008-01-31 17:32:05 +01:00
|
|
|
|
|
|
|
/* get global screen section */
|
|
|
|
cfg_screen = cfg_getsec(cfg, "screen");
|
|
|
|
|
|
|
|
if(!cfg_screen)
|
|
|
|
eprint("parsing configuration file failed, no screen section found\n");
|
|
|
|
|
|
|
|
/* get colors and general section */
|
|
|
|
cfg_general = cfg_getsec(cfg_screen, "general");
|
|
|
|
cfg_colors = cfg_getsec(cfg_screen, "colors");
|
|
|
|
|
|
|
|
/* colors */
|
2008-02-13 08:58:21 +01:00
|
|
|
draw_color_new(globalconf.display, DefaultScreen(globalconf.display),
|
|
|
|
cfg_getstr(cfg_colors, "normal_fg"),
|
|
|
|
&globalconf.fg);
|
|
|
|
draw_color_new(globalconf.display, DefaultScreen(globalconf.display),
|
|
|
|
cfg_getstr(cfg_colors, "normal_bg"),
|
|
|
|
&globalconf.bg);
|
2008-01-31 17:32:05 +01:00
|
|
|
|
2008-03-07 17:40:40 +01:00
|
|
|
globalconf.shadow_offset = cfg_getint(cfg_general, "text_shadow_offset");
|
|
|
|
|
2008-01-31 17:32:05 +01:00
|
|
|
/* font */
|
|
|
|
globalconf.font = XftFontOpenName(globalconf.display, DefaultScreen(globalconf.display),
|
|
|
|
cfg_getstr(cfg_general, "font"));
|
|
|
|
|
|
|
|
p_delete(&confpath);
|
2008-03-04 20:40:37 +01:00
|
|
|
|
|
|
|
return ret;
|
2008-01-31 17:32:05 +01:00
|
|
|
}
|
|
|
|
|
2008-02-08 11:51:12 +01:00
|
|
|
static void
|
|
|
|
exit_on_signal(int sig __attribute__ ((unused)))
|
|
|
|
{
|
|
|
|
running = False;
|
|
|
|
}
|
|
|
|
|
2008-01-26 21:41:34 +01:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
Display *disp;
|
|
|
|
SimpleWindow *sw;
|
|
|
|
DrawCtx *ctx;
|
|
|
|
XEvent ev;
|
2008-03-10 10:37:23 +01:00
|
|
|
Area geometry = { 0, 0, 200, 50, NULL, NULL },
|
|
|
|
icon_geometry = { -1, -1, -1, -1, NULL, NULL };
|
2008-03-04 20:40:37 +01:00
|
|
|
int opt, ret;
|
2008-02-08 11:51:12 +01:00
|
|
|
int delay = 0;
|
2008-01-31 17:32:05 +01:00
|
|
|
char *configfile = NULL;
|
|
|
|
static struct option long_options[] =
|
|
|
|
{
|
2008-01-29 17:20:32 +01:00
|
|
|
{"help", 0, NULL, 'h'},
|
|
|
|
{"version", 0, NULL, 'v'},
|
|
|
|
{NULL, 0, NULL, 0}
|
2008-01-27 01:34:37 +01:00
|
|
|
};
|
2008-01-26 21:41:34 +01:00
|
|
|
|
|
|
|
if(!(disp = XOpenDisplay(NULL)))
|
|
|
|
eprint("unable to open display");
|
|
|
|
|
2008-01-31 17:32:05 +01:00
|
|
|
globalconf.display = disp;
|
|
|
|
|
2008-02-08 11:51:12 +01:00
|
|
|
while((opt = getopt_long(argc, argv, "vhf:b:x:y:n:c:d:",
|
2008-01-31 18:34:59 +01:00
|
|
|
long_options, NULL)) != -1)
|
2008-01-26 21:41:34 +01:00
|
|
|
switch(opt)
|
|
|
|
{
|
2008-02-08 11:51:12 +01:00
|
|
|
case 'd':
|
|
|
|
delay = atoi(optarg);
|
|
|
|
break;
|
2008-01-26 21:41:34 +01:00
|
|
|
case 'v':
|
2008-01-29 17:24:58 +01:00
|
|
|
eprint_version(PROGNAME);
|
2008-01-26 21:41:34 +01:00
|
|
|
break;
|
|
|
|
case 'x':
|
|
|
|
geometry.x = atoi(optarg);
|
|
|
|
break;
|
|
|
|
case 'y':
|
|
|
|
geometry.y = atoi(optarg);
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
exit_help(EXIT_SUCCESS);
|
|
|
|
break;
|
2008-01-31 17:32:05 +01:00
|
|
|
case 'c':
|
|
|
|
configfile = a_strdup(optarg);
|
2008-01-26 21:41:34 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(argc - optind < 1)
|
|
|
|
exit_help(EXIT_FAILURE);
|
|
|
|
|
2008-03-04 20:40:37 +01:00
|
|
|
if((ret = config_parse(configfile)))
|
|
|
|
return ret;
|
2008-01-26 21:41:34 +01:00
|
|
|
|
2008-01-31 17:32:05 +01:00
|
|
|
geometry.width = draw_textwidth(disp, globalconf.font, argv[optind]);
|
|
|
|
geometry.height = globalconf.font->height * 1.5;
|
2008-01-27 01:34:37 +01:00
|
|
|
|
2008-01-26 21:41:34 +01:00
|
|
|
if(argc - optind >= 2)
|
|
|
|
{
|
|
|
|
icon_geometry = draw_get_image_size(argv[optind + 1]);
|
|
|
|
if(icon_geometry.width <= 0 || icon_geometry.height <= 0)
|
|
|
|
eprint("invalid image\n");
|
|
|
|
else
|
2008-01-31 17:32:05 +01:00
|
|
|
geometry.width += icon_geometry.width
|
|
|
|
* ((double) globalconf.font->height / (double) icon_geometry.height);
|
2008-01-26 21:41:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sw = simplewindow_new(disp, DefaultScreen(disp),
|
|
|
|
geometry.x, geometry.y, geometry.width, geometry.height, 0);
|
|
|
|
|
2008-02-08 11:51:40 +01:00
|
|
|
XStoreName(disp, sw->window, PROGNAME);
|
2008-01-26 21:41:34 +01:00
|
|
|
|
2008-01-27 19:02:08 +01:00
|
|
|
ctx = draw_context_new(disp, DefaultScreen(disp),
|
2008-01-26 21:41:34 +01:00
|
|
|
geometry.width, geometry.height, sw->drawable);
|
|
|
|
|
|
|
|
geometry.x = geometry.y = 0;
|
|
|
|
draw_text(ctx, geometry, AlignRight,
|
2008-03-07 17:40:40 +01:00
|
|
|
0, globalconf.font, argv[optind],
|
|
|
|
globalconf.shadow_offset, globalconf.fg, globalconf.bg);
|
2008-01-26 21:41:34 +01:00
|
|
|
|
|
|
|
if(icon_geometry.width > 0 && icon_geometry.height > 0)
|
2008-01-31 17:32:05 +01:00
|
|
|
draw_image(ctx, 0, (geometry.height / 2) - (globalconf.font->height / 2),
|
|
|
|
globalconf.font->height,
|
2008-01-26 21:41:34 +01:00
|
|
|
argv[optind + 1]);
|
|
|
|
|
|
|
|
p_delete(&ctx);
|
|
|
|
|
|
|
|
simplewindow_refresh_drawable(sw, DefaultScreen(disp));
|
|
|
|
|
|
|
|
XMapRaised(disp, sw->window);
|
|
|
|
XSync(disp, False);
|
|
|
|
|
2008-02-08 11:51:12 +01:00
|
|
|
signal(SIGALRM, &exit_on_signal);
|
|
|
|
alarm(delay);
|
|
|
|
|
|
|
|
while(running)
|
2008-01-26 21:41:34 +01:00
|
|
|
{
|
2008-02-08 11:51:12 +01:00
|
|
|
if(XPending(disp))
|
2008-01-26 21:41:34 +01:00
|
|
|
{
|
2008-02-08 11:51:12 +01:00
|
|
|
XNextEvent(disp, &ev);
|
|
|
|
switch(ev.type)
|
|
|
|
{
|
|
|
|
case ButtonPress:
|
|
|
|
case KeyPress:
|
|
|
|
running = False;
|
|
|
|
case Expose:
|
|
|
|
simplewindow_refresh_drawable(sw, DefaultScreen(disp));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2008-01-26 21:41:34 +01:00
|
|
|
}
|
2008-03-20 18:30:28 +01:00
|
|
|
usleep(100000);
|
2008-01-26 21:41:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
simplewindow_delete(sw);
|
|
|
|
XCloseDisplay(disp);
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|