2008-03-04 20:39:21 +01:00
|
|
|
/*
|
|
|
|
* awesome-menu.c - menu window for awesome
|
|
|
|
*
|
|
|
|
* 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-03-13 15:11:59 +01:00
|
|
|
/* getline(), asprintf() */
|
2008-03-04 20:39:21 +01:00
|
|
|
#define _GNU_SOURCE
|
2008-03-13 15:11:59 +01:00
|
|
|
|
2008-03-04 20:39:21 +01:00
|
|
|
#include <getopt.h>
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2008-03-08 15:15:26 +01:00
|
|
|
#include <dirent.h>
|
2008-03-09 20:32:25 +01:00
|
|
|
#include <pwd.h>
|
2008-03-08 15:15:26 +01:00
|
|
|
#include <sys/types.h>
|
2008-03-13 15:11:59 +01:00
|
|
|
#include <string.h>
|
2008-03-04 20:39:21 +01:00
|
|
|
|
|
|
|
#include <confuse.h>
|
|
|
|
|
|
|
|
#include "common/swindow.h"
|
|
|
|
#include "common/util.h"
|
|
|
|
#include "common/version.h"
|
|
|
|
#include "common/configopts.h"
|
|
|
|
#include "common/xutil.h"
|
2008-03-13 12:06:10 +01:00
|
|
|
#include "common/xscreen.c"
|
2008-03-04 20:39:21 +01:00
|
|
|
|
|
|
|
#define PROGNAME "awesome-menu"
|
|
|
|
|
|
|
|
#define CLEANMASK(mask) (mask & ~(globalconf.numlockmask | LockMask))
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
STOP = 0,
|
|
|
|
RUN = 1,
|
|
|
|
CANCEL = 2
|
|
|
|
} status_t;
|
|
|
|
|
|
|
|
static status_t status = RUN;
|
|
|
|
|
|
|
|
/** Import awesome config file format */
|
|
|
|
extern cfg_opt_t awesome_opts[];
|
|
|
|
|
|
|
|
typedef struct item_t item_t;
|
|
|
|
struct item_t
|
|
|
|
{
|
|
|
|
char *data;
|
2008-03-10 10:37:23 +01:00
|
|
|
item_t *prev, *next;
|
2008-03-04 20:39:21 +01:00
|
|
|
Bool match;
|
|
|
|
};
|
|
|
|
|
2008-03-08 15:15:26 +01:00
|
|
|
static void
|
|
|
|
item_delete(item_t **item)
|
|
|
|
{
|
|
|
|
p_delete(&(*item)->data);
|
|
|
|
p_delete(item);
|
|
|
|
}
|
|
|
|
|
2008-03-13 15:06:14 +01:00
|
|
|
DO_SLIST(item_t, item, item_delete)
|
2008-03-04 20:39:21 +01:00
|
|
|
|
|
|
|
/** awesome-run global configuration structure */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/** Display ref */
|
|
|
|
Display *display;
|
|
|
|
/** The window */
|
|
|
|
SimpleWindow *sw;
|
|
|
|
/** The draw contet */
|
|
|
|
DrawCtx *ctx;
|
|
|
|
/** Font to use */
|
|
|
|
XftFont *font;
|
2008-03-13 14:03:03 +01:00
|
|
|
/** Colors */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
colors_ctx_t normal;
|
|
|
|
colors_ctx_t focus;
|
|
|
|
} colors;
|
2008-03-04 20:39:21 +01:00
|
|
|
/** Numlock mask */
|
|
|
|
unsigned int numlockmask;
|
|
|
|
/** The text */
|
|
|
|
char text[PATH_MAX];
|
|
|
|
/** Item list */
|
|
|
|
item_t *items;
|
|
|
|
/** Selected item */
|
|
|
|
item_t *item_selected;
|
|
|
|
/** What to do with the result text */
|
|
|
|
char *exec;
|
|
|
|
/** Prompt */
|
|
|
|
char *prompt;
|
|
|
|
} AwesomeMenuConf;
|
|
|
|
|
|
|
|
static AwesomeMenuConf globalconf;
|
|
|
|
|
|
|
|
static void __attribute__ ((noreturn))
|
|
|
|
exit_help(int exit_code)
|
|
|
|
{
|
|
|
|
FILE *outfile = (exit_code == EXIT_SUCCESS) ? stdout : stderr;
|
2008-03-09 16:00:14 +01:00
|
|
|
fprintf(outfile, "Usage: %s [-e command] <message>\n",
|
2008-03-04 20:39:21 +01:00
|
|
|
PROGNAME);
|
|
|
|
exit(exit_code);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2008-03-09 16:00:14 +01:00
|
|
|
config_parse(const char *confpatharg, const char *menu_title, Area *geometry)
|
2008-03-04 20:39:21 +01:00
|
|
|
{
|
2008-03-09 16:00:14 +01:00
|
|
|
int ret, i;
|
|
|
|
char *confpath, *opt;
|
|
|
|
cfg_t *cfg, *cfg_menu = NULL, *cfg_screen, *cfg_general,
|
|
|
|
*cfg_colors, *cfg_menu_colors = NULL;
|
2008-03-04 20:39:21 +01:00
|
|
|
|
|
|
|
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)
|
|
|
|
return ret;
|
|
|
|
|
2008-03-09 16:02:21 +01:00
|
|
|
if(menu_title && !(cfg_menu = cfg_gettsec(cfg, "menu", menu_title)))
|
2008-03-09 16:00:14 +01:00
|
|
|
warn("no definition for menu %s in configuration file: using default\n", menu_title);
|
2008-03-04 20:39:21 +01:00
|
|
|
|
2008-03-09 16:00:14 +01:00
|
|
|
/* get global screen section */
|
|
|
|
if(!(cfg_screen = cfg_getsec(cfg, "screen")))
|
2008-03-04 20:39:21 +01:00
|
|
|
eprint("parsing configuration file failed, no screen section found\n");
|
|
|
|
|
|
|
|
/* get colors and general section */
|
2008-03-09 16:00:14 +01:00
|
|
|
if(cfg_menu)
|
|
|
|
cfg_menu_colors = cfg_getsec(cfg_menu, "colors");
|
2008-03-04 20:39:21 +01:00
|
|
|
cfg_general = cfg_getsec(cfg_screen, "general");
|
|
|
|
cfg_colors = cfg_getsec(cfg_screen, "colors");
|
|
|
|
|
|
|
|
/* colors */
|
2008-03-09 16:00:14 +01:00
|
|
|
if(!cfg_menu_colors || !(opt = cfg_getstr(cfg_menu_colors, "normal_fg")))
|
|
|
|
opt = cfg_getstr(cfg_colors, "normal_fg");
|
|
|
|
|
2008-03-04 20:39:21 +01:00
|
|
|
draw_color_new(globalconf.display, DefaultScreen(globalconf.display),
|
2008-03-13 14:03:03 +01:00
|
|
|
opt, &globalconf.colors.normal.fg);
|
2008-03-09 16:00:14 +01:00
|
|
|
|
|
|
|
if(!cfg_menu_colors || !(opt = cfg_getstr(cfg_menu_colors, "normal_bg")))
|
|
|
|
opt = cfg_getstr(cfg_colors, "normal_bg");
|
|
|
|
|
2008-03-04 20:39:21 +01:00
|
|
|
draw_color_new(globalconf.display, DefaultScreen(globalconf.display),
|
2008-03-13 14:03:03 +01:00
|
|
|
opt, &globalconf.colors.normal.bg);
|
2008-03-09 16:00:14 +01:00
|
|
|
|
|
|
|
if(!cfg_menu_colors || !(opt = cfg_getstr(cfg_menu_colors, "focus_fg")))
|
|
|
|
opt = cfg_getstr(cfg_colors, "focus_fg");
|
|
|
|
|
2008-03-04 20:39:21 +01:00
|
|
|
draw_color_new(globalconf.display, DefaultScreen(globalconf.display),
|
2008-03-13 14:03:03 +01:00
|
|
|
opt, &globalconf.colors.focus.fg);
|
2008-03-09 16:00:14 +01:00
|
|
|
|
|
|
|
if(!cfg_menu_colors || !(opt = cfg_getstr(cfg_menu_colors, "focus_bg")))
|
|
|
|
opt = cfg_getstr(cfg_colors, "focus_bg");
|
|
|
|
|
2008-03-04 20:39:21 +01:00
|
|
|
draw_color_new(globalconf.display, DefaultScreen(globalconf.display),
|
2008-03-13 14:03:03 +01:00
|
|
|
opt, &globalconf.colors.focus.bg);
|
2008-03-04 20:39:21 +01:00
|
|
|
|
|
|
|
/* font */
|
2008-03-09 16:00:14 +01:00
|
|
|
if(!cfg_menu || !(opt = cfg_getstr(cfg_menu, "font")))
|
|
|
|
opt = cfg_getstr(cfg_general, "font");
|
|
|
|
|
2008-03-04 20:39:21 +01:00
|
|
|
globalconf.font = XftFontOpenName(globalconf.display, DefaultScreen(globalconf.display),
|
2008-03-09 16:00:14 +01:00
|
|
|
opt);
|
|
|
|
|
2008-03-13 14:03:03 +01:00
|
|
|
globalconf.colors.normal.shadow_offset =
|
|
|
|
globalconf.colors.focus.shadow_offset = cfg_getint(cfg_general, "text_shadow_offset");
|
2008-03-04 20:39:21 +01:00
|
|
|
|
2008-03-09 16:00:14 +01:00
|
|
|
if(cfg_menu)
|
|
|
|
{
|
|
|
|
if((i = cfg_getint(cfg_menu, "x")) != (int) 0xffffffff)
|
|
|
|
geometry->x = i;
|
|
|
|
if((i = cfg_getint(cfg_menu, "y")) != (int) 0xffffffff)
|
|
|
|
geometry->y = i;
|
|
|
|
if((i = cfg_getint(cfg_menu, "width")) > 0)
|
|
|
|
geometry->width = i;
|
|
|
|
if((i = cfg_getint(cfg_menu, "height")) > 0)
|
|
|
|
geometry->height = i;
|
|
|
|
}
|
|
|
|
|
2008-03-04 20:39:21 +01:00
|
|
|
p_delete(&confpath);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-03-08 17:01:45 +01:00
|
|
|
static char *
|
|
|
|
get_last_word(char *text)
|
|
|
|
{
|
|
|
|
char *last_word;
|
|
|
|
|
|
|
|
if((last_word = strrchr(text, ' ')))
|
|
|
|
last_word++;
|
|
|
|
else
|
|
|
|
last_word = text;
|
|
|
|
|
|
|
|
return last_word;
|
|
|
|
}
|
|
|
|
|
2008-03-09 14:35:53 +01:00
|
|
|
static Bool
|
2008-03-09 14:08:15 +01:00
|
|
|
item_list_fill_file(const char *directory)
|
2008-03-08 15:15:26 +01:00
|
|
|
{
|
2008-03-13 15:11:59 +01:00
|
|
|
char *cwd, *home, *user, *filename;
|
2008-03-09 20:32:25 +01:00
|
|
|
const char *file;
|
2008-03-08 15:15:26 +01:00
|
|
|
DIR *dir;
|
|
|
|
struct dirent *dirinfo;
|
|
|
|
item_t *item;
|
2008-03-09 20:48:34 +01:00
|
|
|
ssize_t len, lenfile;
|
2008-03-09 20:32:25 +01:00
|
|
|
struct passwd *passwd = NULL;
|
2008-03-09 20:48:34 +01:00
|
|
|
struct stat st;
|
2008-03-08 15:15:26 +01:00
|
|
|
|
|
|
|
item_list_wipe(&globalconf.items);
|
|
|
|
|
2008-03-10 11:00:38 +01:00
|
|
|
if(!directory)
|
2008-03-13 15:11:59 +01:00
|
|
|
cwd = a_strdup("./");
|
2008-03-10 11:00:38 +01:00
|
|
|
else if(a_strlen(directory) > 1 && directory[0] == '~')
|
2008-03-09 14:35:53 +01:00
|
|
|
{
|
2008-03-09 20:32:25 +01:00
|
|
|
if(directory[1] == '/')
|
2008-03-09 14:44:33 +01:00
|
|
|
{
|
2008-03-13 15:11:59 +01:00
|
|
|
home = getenv("HOME");
|
|
|
|
asprintf(&cwd, "%s%s", (home ? home : ""), directory + 1);
|
2008-03-09 14:44:33 +01:00
|
|
|
}
|
|
|
|
else
|
2008-03-09 20:32:25 +01:00
|
|
|
{
|
|
|
|
if(!(file = strchr(directory, '/')))
|
|
|
|
file = directory + a_strlen(directory);
|
|
|
|
len = (file - directory) + 1;
|
|
|
|
user = p_new(char, len);
|
|
|
|
a_strncpy(user, len, directory + 1, (file - directory) - 1);
|
|
|
|
if((passwd = getpwnam(user)))
|
|
|
|
{
|
2008-03-13 15:11:59 +01:00
|
|
|
asprintf(&cwd, "%s%s", passwd->pw_dir, file);
|
2008-03-09 20:32:25 +01:00
|
|
|
p_delete(&user);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p_delete(&user);
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
}
|
2008-03-09 14:35:53 +01:00
|
|
|
}
|
2008-03-08 16:49:33 +01:00
|
|
|
else
|
2008-03-13 15:11:59 +01:00
|
|
|
cwd = a_strdup(directory);
|
2008-03-08 15:15:26 +01:00
|
|
|
|
2008-03-09 14:44:33 +01:00
|
|
|
if(!(dir = opendir(cwd)))
|
2008-03-13 15:11:59 +01:00
|
|
|
{
|
|
|
|
p_delete(&cwd);
|
2008-03-09 14:35:53 +01:00
|
|
|
return False;
|
2008-03-13 15:11:59 +01:00
|
|
|
}
|
2008-03-08 15:15:26 +01:00
|
|
|
|
|
|
|
while((dirinfo = readdir(dir)))
|
|
|
|
{
|
|
|
|
item = p_new(item_t, 1);
|
2008-03-09 20:48:34 +01:00
|
|
|
|
|
|
|
/* + 1 for \0 + 1 for / if directory */
|
|
|
|
len = a_strlen(directory) + a_strlen(dirinfo->d_name) + 2;
|
|
|
|
|
2008-03-08 16:49:33 +01:00
|
|
|
item->data = p_new(char, len);
|
2008-03-09 20:48:34 +01:00
|
|
|
if(a_strlen(directory))
|
2008-03-09 14:44:33 +01:00
|
|
|
a_strcpy(item->data, len, directory);
|
2008-03-08 16:49:33 +01:00
|
|
|
a_strcat(item->data, len, dirinfo->d_name);
|
2008-03-09 20:48:34 +01:00
|
|
|
|
|
|
|
lenfile = a_strlen(cwd) + a_strlen(dirinfo->d_name) + 2;
|
|
|
|
|
|
|
|
filename = p_new(char, lenfile);
|
|
|
|
a_strcpy(filename, lenfile, cwd);
|
|
|
|
a_strcat(filename, lenfile, dirinfo->d_name);
|
|
|
|
|
|
|
|
if(!stat(filename, &st) && S_ISDIR(st.st_mode))
|
|
|
|
a_strcat(item->data, len, "/");
|
|
|
|
|
|
|
|
p_delete(&filename);
|
|
|
|
|
2008-03-08 15:15:26 +01:00
|
|
|
item_list_push(&globalconf.items, item);
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dir);
|
2008-03-13 15:11:59 +01:00
|
|
|
p_delete(&cwd);
|
2008-03-09 14:35:53 +01:00
|
|
|
|
|
|
|
return True;
|
2008-03-08 15:15:26 +01:00
|
|
|
}
|
|
|
|
|
2008-03-04 20:39:21 +01:00
|
|
|
static void
|
2008-03-07 11:27:27 +01:00
|
|
|
complete(Bool reverse)
|
2008-03-04 20:39:21 +01:00
|
|
|
{
|
2008-03-09 16:15:34 +01:00
|
|
|
char *word;
|
2008-03-09 16:12:18 +01:00
|
|
|
int loop = 2;
|
2008-03-04 20:39:21 +01:00
|
|
|
item_t *item = NULL;
|
2008-03-08 17:02:28 +01:00
|
|
|
item_t *(*item_iter)(item_t **, item_t *) = item_list_next_cycle;
|
2008-03-07 11:27:27 +01:00
|
|
|
|
|
|
|
if(reverse)
|
2008-03-08 17:02:28 +01:00
|
|
|
item_iter = item_list_prev_cycle;
|
2008-03-04 20:39:21 +01:00
|
|
|
|
|
|
|
if(globalconf.item_selected)
|
2008-03-07 11:27:27 +01:00
|
|
|
item = item_iter(&globalconf.items, globalconf.item_selected);
|
2008-03-04 20:39:21 +01:00
|
|
|
else
|
2008-03-09 16:12:18 +01:00
|
|
|
item = globalconf.items;
|
|
|
|
|
|
|
|
for(; item && loop; item = item_iter(&globalconf.items, item))
|
|
|
|
{
|
2008-03-04 20:39:21 +01:00
|
|
|
if(item->match)
|
|
|
|
{
|
2008-03-09 16:15:34 +01:00
|
|
|
word = get_last_word(globalconf.text);
|
|
|
|
a_strcpy(word, sizeof(globalconf.text) - (word - globalconf.text), item->data);
|
2008-03-04 20:39:21 +01:00
|
|
|
globalconf.item_selected = item;
|
|
|
|
return;
|
|
|
|
}
|
2008-03-09 16:12:18 +01:00
|
|
|
/*
|
|
|
|
* Since loop is 2, it will be 1 at first iter, and then 0 if we
|
|
|
|
* get back before matching an item (i.e. no items match) to the
|
|
|
|
* first elem: so it will break the loop, otherwise it loops for
|
|
|
|
* ever
|
|
|
|
*/
|
|
|
|
if(item == globalconf.items)
|
|
|
|
loop--;
|
|
|
|
}
|
2008-03-04 20:39:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-03-09 14:22:05 +01:00
|
|
|
compute_match(const char *word)
|
2008-03-04 20:39:21 +01:00
|
|
|
{
|
2008-03-09 14:22:05 +01:00
|
|
|
ssize_t len = a_strlen(word);
|
2008-03-04 20:39:21 +01:00
|
|
|
item_t *item;
|
|
|
|
|
|
|
|
/* reset the selected item to NULL */
|
|
|
|
globalconf.item_selected = NULL;
|
|
|
|
|
2008-03-09 14:22:05 +01:00
|
|
|
if(len)
|
2008-03-08 16:49:33 +01:00
|
|
|
{
|
2008-03-09 14:22:05 +01:00
|
|
|
if(word[len - 1] == '/'
|
|
|
|
|| word[len - 1] == ' ')
|
|
|
|
item_list_fill_file(word);
|
2008-03-09 14:35:53 +01:00
|
|
|
|
2008-03-08 16:49:33 +01:00
|
|
|
for(item = globalconf.items; item; item = item->next)
|
2008-03-09 14:22:05 +01:00
|
|
|
if(!a_strncmp(word, item->data, a_strlen(word)))
|
2008-03-08 16:49:33 +01:00
|
|
|
item->match = True;
|
|
|
|
else
|
|
|
|
item->match = False;
|
|
|
|
}
|
|
|
|
else
|
2008-03-09 14:22:05 +01:00
|
|
|
{
|
2008-03-09 16:29:42 +01:00
|
|
|
if(a_strlen(globalconf.text))
|
|
|
|
item_list_fill_file(NULL);
|
2008-03-08 16:49:33 +01:00
|
|
|
for(item = globalconf.items; item; item = item->next)
|
2008-03-10 10:37:23 +01:00
|
|
|
item->match = True;
|
2008-03-09 14:22:05 +01:00
|
|
|
}
|
2008-03-04 20:39:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Why not? */
|
|
|
|
#define MARGIN 10
|
|
|
|
|
2008-03-07 16:37:09 +01:00
|
|
|
static void
|
|
|
|
draw_item(item_t *item, Area geometry)
|
|
|
|
{
|
|
|
|
if(item == globalconf.item_selected)
|
|
|
|
draw_text(globalconf.ctx, geometry, AlignLeft,
|
|
|
|
MARGIN / 2, globalconf.font, item->data,
|
2008-03-13 14:03:03 +01:00
|
|
|
globalconf.colors.focus);
|
2008-03-07 16:37:09 +01:00
|
|
|
else
|
|
|
|
draw_text(globalconf.ctx, geometry, AlignLeft,
|
|
|
|
MARGIN / 2, globalconf.font, item->data,
|
2008-03-13 14:03:03 +01:00
|
|
|
globalconf.colors.normal);
|
2008-03-07 16:37:09 +01:00
|
|
|
}
|
|
|
|
|
2008-03-04 20:39:21 +01:00
|
|
|
static void
|
|
|
|
redraw(void)
|
|
|
|
{
|
|
|
|
item_t *item;
|
2008-03-10 10:37:23 +01:00
|
|
|
Area geometry = { 0, 0, 0, 0, NULL, NULL };
|
2008-03-07 11:31:05 +01:00
|
|
|
Bool selected_item_is_drawn = False;
|
2008-03-09 16:36:27 +01:00
|
|
|
int len, prompt_len, x_of_previous_item;
|
2008-03-04 20:39:21 +01:00
|
|
|
|
2008-03-07 16:31:31 +01:00
|
|
|
geometry.width = globalconf.sw->geometry.width;
|
|
|
|
geometry.height = globalconf.sw->geometry.height;
|
|
|
|
|
2008-03-09 16:02:21 +01:00
|
|
|
if(a_strlen(globalconf.prompt))
|
|
|
|
{
|
|
|
|
draw_text(globalconf.ctx, geometry, AlignLeft,
|
|
|
|
MARGIN, globalconf.font, globalconf.prompt,
|
2008-03-13 14:03:03 +01:00
|
|
|
globalconf.colors.focus);
|
2008-03-04 20:39:21 +01:00
|
|
|
|
2008-03-09 16:02:21 +01:00
|
|
|
len = MARGIN * 2 + draw_textwidth(globalconf.display, globalconf.font, globalconf.prompt);
|
|
|
|
geometry.x += len;
|
|
|
|
geometry.width -= len;
|
|
|
|
}
|
2008-03-04 20:39:21 +01:00
|
|
|
|
|
|
|
draw_text(globalconf.ctx, geometry, AlignLeft,
|
2008-03-07 17:40:40 +01:00
|
|
|
MARGIN, globalconf.font, globalconf.text,
|
2008-03-13 14:03:03 +01:00
|
|
|
globalconf.colors.normal);
|
2008-03-04 20:39:21 +01:00
|
|
|
|
|
|
|
len = MARGIN * 2 + MAX(draw_textwidth(globalconf.display, globalconf.font, globalconf.text),
|
|
|
|
geometry.width / 20);
|
|
|
|
geometry.x += len;
|
|
|
|
geometry.width -= len;
|
2008-03-07 11:31:05 +01:00
|
|
|
prompt_len = geometry.x;
|
2008-03-04 20:39:21 +01:00
|
|
|
|
2008-03-09 16:43:02 +01:00
|
|
|
for(item = globalconf.items; item && geometry.width > 0; item = item->next)
|
2008-03-04 20:39:21 +01:00
|
|
|
if(item->match)
|
|
|
|
{
|
2008-03-09 16:36:27 +01:00
|
|
|
len = MARGIN + draw_textwidth(globalconf.display, globalconf.font, item->data);
|
2008-03-08 10:04:20 +01:00
|
|
|
if(item == globalconf.item_selected)
|
2008-03-09 16:36:27 +01:00
|
|
|
{
|
|
|
|
if(len > geometry.width)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
selected_item_is_drawn = True;
|
|
|
|
}
|
2008-03-07 16:37:09 +01:00
|
|
|
draw_item(item, geometry);
|
2008-03-04 20:39:21 +01:00
|
|
|
geometry.x += len;
|
|
|
|
geometry.width -= len;
|
|
|
|
}
|
|
|
|
|
2008-03-07 11:31:05 +01:00
|
|
|
/* we have an item selected but not drawn, so redraw in the other side */
|
|
|
|
if(globalconf.item_selected && !selected_item_is_drawn)
|
|
|
|
{
|
|
|
|
geometry.x = globalconf.sw->geometry.width;
|
|
|
|
|
2008-03-07 16:31:31 +01:00
|
|
|
for(item = globalconf.item_selected; item; item = item_list_prev(&globalconf.items, item))
|
|
|
|
if(item->match)
|
|
|
|
{
|
|
|
|
x_of_previous_item = geometry.x;
|
|
|
|
geometry.width = MARGIN + draw_textwidth(globalconf.display, globalconf.font, item->data);
|
|
|
|
geometry.x -= geometry.width;
|
2008-03-07 11:31:05 +01:00
|
|
|
|
2008-03-07 16:31:31 +01:00
|
|
|
if(geometry.x < prompt_len)
|
|
|
|
break;
|
2008-03-07 11:31:05 +01:00
|
|
|
|
2008-03-07 16:37:09 +01:00
|
|
|
draw_item(item, geometry);
|
2008-03-07 16:31:31 +01:00
|
|
|
}
|
2008-03-07 11:31:05 +01:00
|
|
|
|
|
|
|
if(item)
|
|
|
|
{
|
|
|
|
geometry.x = prompt_len;
|
|
|
|
geometry.width = x_of_previous_item - prompt_len;
|
2008-03-13 14:03:03 +01:00
|
|
|
draw_rectangle(globalconf.ctx, geometry, True, globalconf.colors.normal.bg);
|
2008-03-07 11:31:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(geometry.width)
|
2008-03-13 14:03:03 +01:00
|
|
|
draw_rectangle(globalconf.ctx, geometry, True, globalconf.colors.normal.bg);
|
2008-03-04 20:39:21 +01:00
|
|
|
|
|
|
|
simplewindow_refresh_drawable(globalconf.sw, DefaultScreen(globalconf.display));
|
|
|
|
XSync(globalconf.display, False);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_kpress(XKeyEvent *e)
|
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
KeySym ksym;
|
|
|
|
int num;
|
|
|
|
ssize_t len;
|
|
|
|
|
|
|
|
len = a_strlen(globalconf.text);
|
|
|
|
num = XLookupString(e, buf, sizeof(buf), &ksym, 0);
|
|
|
|
if(e->state & ControlMask)
|
|
|
|
switch(ksym)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
case XK_bracketleft:
|
|
|
|
ksym = XK_Escape;
|
|
|
|
break;
|
|
|
|
case XK_h:
|
|
|
|
case XK_H:
|
|
|
|
ksym = XK_BackSpace;
|
|
|
|
break;
|
|
|
|
case XK_i:
|
|
|
|
case XK_I:
|
|
|
|
ksym = XK_Tab;
|
|
|
|
break;
|
|
|
|
case XK_j:
|
|
|
|
case XK_J:
|
|
|
|
ksym = XK_Return;
|
|
|
|
break;
|
|
|
|
case XK_c:
|
|
|
|
case XK_C:
|
|
|
|
status = CANCEL;
|
|
|
|
break;
|
|
|
|
case XK_w:
|
|
|
|
case XK_W:
|
|
|
|
/* erase word */
|
|
|
|
if(len)
|
|
|
|
{
|
|
|
|
int i = len - 1;
|
|
|
|
while(i >= 0 && globalconf.text[i] == ' ')
|
|
|
|
globalconf.text[i--] = '\0';
|
|
|
|
while(i >= 0 && globalconf.text[i] != ' ')
|
|
|
|
globalconf.text[i--] = '\0';
|
2008-03-09 14:22:05 +01:00
|
|
|
compute_match(get_last_word(globalconf.text));
|
2008-03-04 20:39:21 +01:00
|
|
|
redraw();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if(CLEANMASK(e->state) & Mod1Mask)
|
|
|
|
switch(ksym)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
case XK_h:
|
|
|
|
ksym = XK_Left;
|
|
|
|
break;
|
|
|
|
case XK_l:
|
|
|
|
ksym = XK_Right;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(ksym)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
if(num && !iscntrl((int) buf[0]))
|
|
|
|
{
|
2008-03-10 11:00:38 +01:00
|
|
|
if(buf[0] != '/' || globalconf.text[len - 1] != '/')
|
|
|
|
{
|
|
|
|
buf[num] = '\0';
|
|
|
|
a_strncat(globalconf.text, sizeof(globalconf.text), buf, num);
|
|
|
|
}
|
2008-03-09 14:22:05 +01:00
|
|
|
compute_match(get_last_word(globalconf.text));
|
2008-03-04 20:39:21 +01:00
|
|
|
redraw();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XK_BackSpace:
|
|
|
|
if(len)
|
|
|
|
{
|
|
|
|
globalconf.text[--len] = '\0';
|
2008-03-09 14:22:05 +01:00
|
|
|
compute_match(get_last_word(globalconf.text));
|
2008-03-04 20:39:21 +01:00
|
|
|
redraw();
|
|
|
|
}
|
|
|
|
break;
|
2008-03-09 16:24:44 +01:00
|
|
|
case XK_ISO_Left_Tab:
|
2008-03-07 11:27:27 +01:00
|
|
|
case XK_Left:
|
|
|
|
complete(True);
|
|
|
|
redraw();
|
|
|
|
break;
|
2008-03-04 20:39:21 +01:00
|
|
|
case XK_Right:
|
|
|
|
case XK_Tab:
|
2008-03-07 11:27:27 +01:00
|
|
|
complete(False);
|
2008-03-04 20:39:21 +01:00
|
|
|
redraw();
|
|
|
|
break;
|
|
|
|
case XK_Escape:
|
|
|
|
status= CANCEL;
|
|
|
|
break;
|
|
|
|
case XK_Return:
|
|
|
|
status = STOP;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-08 15:15:26 +01:00
|
|
|
static Bool
|
|
|
|
item_list_fill_stdin(void)
|
2008-03-04 20:39:21 +01:00
|
|
|
{
|
2008-03-13 15:11:59 +01:00
|
|
|
char *buf = NULL;
|
|
|
|
size_t len = 0;
|
|
|
|
ssize_t line_len;
|
|
|
|
|
2008-03-04 20:39:21 +01:00
|
|
|
item_t *newitem;
|
2008-03-08 15:15:26 +01:00
|
|
|
Bool has_entry = False;
|
2008-03-04 20:39:21 +01:00
|
|
|
|
|
|
|
item_list_init(&globalconf.items);
|
|
|
|
|
2008-03-13 15:11:59 +01:00
|
|
|
if((line_len = getline(&buf, &len, stdin)) != -1)
|
2008-03-08 15:15:26 +01:00
|
|
|
has_entry = True;
|
|
|
|
|
|
|
|
if(has_entry)
|
|
|
|
do
|
|
|
|
{
|
2008-03-13 15:11:59 +01:00
|
|
|
buf[line_len - 1] = '\0';
|
2008-03-08 15:15:26 +01:00
|
|
|
newitem = p_new(item_t, 1);
|
|
|
|
newitem->data = a_strdup(buf);
|
|
|
|
newitem->match = True;
|
|
|
|
item_list_append(&globalconf.items, newitem);
|
|
|
|
}
|
2008-03-13 15:11:59 +01:00
|
|
|
while((line_len = getline(&buf, &len, stdin)) != -1);
|
|
|
|
|
|
|
|
if(buf)
|
|
|
|
p_delete(&buf);
|
2008-03-08 15:15:26 +01:00
|
|
|
|
|
|
|
return has_entry;
|
2008-03-04 20:39:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
Display *disp;
|
|
|
|
XEvent ev;
|
2008-03-13 12:06:10 +01:00
|
|
|
int opt, ret, x, y, i;
|
2008-03-04 20:39:21 +01:00
|
|
|
char *configfile = NULL, *cmd;
|
|
|
|
ssize_t len;
|
|
|
|
const char *shell = getenv("SHELL");
|
2008-03-10 10:37:23 +01:00
|
|
|
Area geometry = { 0, 0, 0, 0, NULL, NULL };
|
2008-03-13 12:06:10 +01:00
|
|
|
ScreensInfo *si;
|
|
|
|
unsigned int ui;
|
|
|
|
Window dummy;
|
2008-03-04 20:39:21 +01:00
|
|
|
static struct option long_options[] =
|
|
|
|
{
|
|
|
|
{"help", 0, NULL, 'h'},
|
|
|
|
{"version", 0, NULL, 'v'},
|
|
|
|
{"exec", 0, NULL, 'e'},
|
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!(disp = XOpenDisplay(NULL)))
|
|
|
|
eprint("unable to open display");
|
|
|
|
|
|
|
|
globalconf.display = disp;
|
|
|
|
|
|
|
|
while((opt = getopt_long(argc, argv, "vhf:b:x:y:n:c:e:",
|
|
|
|
long_options, NULL)) != -1)
|
|
|
|
switch(opt)
|
|
|
|
{
|
|
|
|
case 'v':
|
|
|
|
eprint_version(PROGNAME);
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
exit_help(EXIT_SUCCESS);
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
configfile = a_strdup(optarg);
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
globalconf.exec = a_strdup(optarg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(argc - optind >= 1)
|
|
|
|
globalconf.prompt = a_strdup(argv[optind]);
|
|
|
|
|
2008-03-09 16:00:14 +01:00
|
|
|
if((ret = config_parse(configfile, globalconf.prompt, &geometry)))
|
2008-03-04 20:39:21 +01:00
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* Get the numlock mask */
|
|
|
|
globalconf.numlockmask = get_numlockmask(disp);
|
|
|
|
|
|
|
|
/* Init the geometry */
|
2008-03-09 16:00:14 +01:00
|
|
|
if(!geometry.height)
|
|
|
|
geometry.height = globalconf.font->height * 1.5;
|
2008-03-07 16:31:31 +01:00
|
|
|
|
2008-03-13 12:06:10 +01:00
|
|
|
si = screensinfo_new(disp);
|
|
|
|
if(si->xinerama_is_active)
|
2008-03-07 16:31:31 +01:00
|
|
|
{
|
|
|
|
XQueryPointer(disp, RootWindow(disp, DefaultScreen(disp)),
|
|
|
|
&dummy, &dummy, &x, &y, &i, &i, &ui);
|
|
|
|
|
2008-03-13 12:06:10 +01:00
|
|
|
i = screen_get_bycoord(si, 0, x, y);
|
2008-03-07 16:31:31 +01:00
|
|
|
|
2008-03-09 16:00:14 +01:00
|
|
|
if(!geometry.x)
|
2008-03-13 12:06:10 +01:00
|
|
|
geometry.x = si->geometry[i].x;
|
2008-03-09 16:00:14 +01:00
|
|
|
if(!geometry.y)
|
2008-03-13 12:06:10 +01:00
|
|
|
geometry.y = si->geometry[i].y;
|
2008-03-09 16:00:14 +01:00
|
|
|
if(!geometry.width)
|
2008-03-13 12:06:10 +01:00
|
|
|
geometry.width = si->geometry[i].width;
|
2008-03-07 16:31:31 +01:00
|
|
|
}
|
2008-03-09 16:00:14 +01:00
|
|
|
else if(!geometry.width)
|
2008-03-07 16:31:31 +01:00
|
|
|
geometry.width = DisplayWidth(disp, DefaultScreen(disp));
|
2008-03-04 20:39:21 +01:00
|
|
|
|
2008-03-13 12:06:10 +01:00
|
|
|
screensinfo_delete(&si);
|
|
|
|
|
2008-03-04 20:39:21 +01:00
|
|
|
/* Create the window */
|
|
|
|
globalconf.sw = simplewindow_new(disp, DefaultScreen(disp),
|
|
|
|
geometry.x, geometry.y, geometry.width, geometry.height, 0);
|
|
|
|
|
|
|
|
XStoreName(disp, globalconf.sw->window, PROGNAME);
|
|
|
|
XMapRaised(disp, globalconf.sw->window);
|
|
|
|
|
|
|
|
/* Create the drawing context */
|
|
|
|
globalconf.ctx = draw_context_new(disp, DefaultScreen(disp),
|
|
|
|
geometry.width, geometry.height,
|
|
|
|
globalconf.sw->drawable);
|
|
|
|
|
|
|
|
|
2008-03-08 15:15:26 +01:00
|
|
|
if(!item_list_fill_stdin())
|
2008-03-09 20:32:25 +01:00
|
|
|
item_list_fill_file(NULL);
|
2008-03-08 15:15:26 +01:00
|
|
|
|
2008-03-09 14:22:05 +01:00
|
|
|
compute_match(NULL);
|
2008-03-04 20:39:21 +01:00
|
|
|
|
2008-03-09 12:25:20 +01:00
|
|
|
for(opt = 1000; opt; opt--)
|
|
|
|
{
|
|
|
|
if(XGrabKeyboard(disp, DefaultRootWindow(disp), True,
|
|
|
|
GrabModeAsync, GrabModeAsync, CurrentTime) == GrabSuccess)
|
|
|
|
break;
|
|
|
|
usleep(1000);
|
|
|
|
}
|
|
|
|
if(!opt)
|
2008-03-04 20:39:21 +01:00
|
|
|
eprint("cannot grab keyboard");
|
|
|
|
|
|
|
|
redraw();
|
|
|
|
|
|
|
|
while(status == RUN)
|
|
|
|
{
|
|
|
|
XNextEvent(disp, &ev);
|
|
|
|
switch(ev.type)
|
|
|
|
{
|
|
|
|
case ButtonPress:
|
|
|
|
status = CANCEL;
|
|
|
|
break;
|
|
|
|
case KeyPress:
|
|
|
|
handle_kpress(&ev.xkey);
|
|
|
|
break;
|
|
|
|
case Expose:
|
|
|
|
if(!ev.xexpose.count)
|
|
|
|
simplewindow_refresh_drawable(globalconf.sw, DefaultScreen(disp));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(status != CANCEL)
|
|
|
|
{
|
|
|
|
if(!globalconf.exec)
|
|
|
|
printf("%s\n", globalconf.text);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(!shell)
|
|
|
|
shell = a_strdup("/bin/sh");
|
|
|
|
len = a_strlen(globalconf.exec) + a_strlen(globalconf.text) + 1;
|
|
|
|
cmd = p_new(char, len);
|
|
|
|
a_strcpy(cmd, len, globalconf.exec);
|
|
|
|
a_strcat(cmd, len, globalconf.text);
|
|
|
|
execl(shell, shell, "-c", cmd, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-07 11:31:05 +01:00
|
|
|
draw_context_delete(globalconf.ctx);
|
2008-03-04 20:39:21 +01:00
|
|
|
simplewindow_delete(globalconf.sw);
|
|
|
|
XCloseDisplay(disp);
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|