2008-01-03 12:39:28 +01:00
|
|
|
/*
|
|
|
|
* tasklist.c - task list widget
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "widget.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "focus.h"
|
|
|
|
#include "screen.h"
|
|
|
|
#include "event.h"
|
2008-01-03 19:21:36 +01:00
|
|
|
#include "ewmh.h"
|
2008-01-07 11:20:24 +01:00
|
|
|
#include "tag.h"
|
2008-03-19 12:05:36 +01:00
|
|
|
#include "common/configopts.h"
|
2008-01-03 12:39:28 +01:00
|
|
|
|
2008-05-24 08:59:27 +02:00
|
|
|
extern awesome_t globalconf;
|
2008-01-03 12:39:28 +01:00
|
|
|
|
2008-02-06 20:03:18 +01:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
ShowFocus,
|
|
|
|
ShowTags,
|
|
|
|
ShowAll,
|
2008-04-28 15:29:21 +02:00
|
|
|
} showclient_t;
|
2008-02-06 20:03:18 +01:00
|
|
|
|
2008-01-03 12:39:28 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
2008-04-28 15:29:21 +02:00
|
|
|
showclient_t show;
|
2008-03-21 16:50:17 +01:00
|
|
|
bool show_icons;
|
2008-04-28 12:23:10 +02:00
|
|
|
char *text_normal, *text_urgent, *text_focus;
|
2008-01-03 12:39:28 +01:00
|
|
|
} Data;
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
static inline bool
|
2008-04-28 15:29:21 +02:00
|
|
|
tasklist_isvisible(client_t *c, int screen, showclient_t show)
|
2008-02-06 20:03:18 +01:00
|
|
|
{
|
2008-02-12 10:29:41 +01:00
|
|
|
if(c->skip || c->skiptb)
|
2008-03-21 16:50:17 +01:00
|
|
|
return false;
|
2008-02-06 20:03:18 +01:00
|
|
|
|
|
|
|
switch(show)
|
|
|
|
{
|
|
|
|
case ShowAll:
|
2008-04-07 20:34:42 +02:00
|
|
|
return (c->screen == screen);
|
2008-02-06 20:03:18 +01:00
|
|
|
case ShowTags:
|
2008-04-07 20:34:42 +02:00
|
|
|
return client_isvisible(c, screen);
|
2008-02-06 20:03:18 +01:00
|
|
|
case ShowFocus:
|
2008-04-07 20:34:42 +02:00
|
|
|
return (c == focus_get_current_client(screen));
|
2008-02-06 20:03:18 +01:00
|
|
|
}
|
2008-03-21 16:50:17 +01:00
|
|
|
return false;
|
2008-02-06 20:03:18 +01:00
|
|
|
}
|
|
|
|
|
2008-01-03 12:39:28 +01:00
|
|
|
static int
|
2008-06-02 12:18:17 +02:00
|
|
|
tasklist_draw(draw_context_t *ctx, int screen,
|
2008-06-03 16:08:33 +02:00
|
|
|
widget_node_t *w,
|
2008-06-02 12:18:17 +02:00
|
|
|
int offset, int used, void *p __attribute__ ((unused)))
|
2008-01-03 12:39:28 +01:00
|
|
|
{
|
2008-04-11 11:35:11 +02:00
|
|
|
client_t *c;
|
2008-05-20 15:39:47 +02:00
|
|
|
Data *d = w->widget->data;
|
2008-03-14 09:37:25 +01:00
|
|
|
area_t area;
|
2008-04-28 12:23:10 +02:00
|
|
|
char *text;
|
2008-01-20 16:25:06 +01:00
|
|
|
int n = 0, i = 0, box_width = 0, icon_width = 0, box_width_rest = 0;
|
2008-01-03 19:21:36 +01:00
|
|
|
NetWMIcon *icon;
|
2008-01-03 12:39:28 +01:00
|
|
|
|
2008-06-03 16:08:33 +02:00
|
|
|
if(used >= ctx->width)
|
2008-05-20 15:39:47 +02:00
|
|
|
return (w->area.width = 0);
|
2008-01-22 17:52:12 +01:00
|
|
|
|
2008-01-03 12:39:28 +01:00
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
2008-06-02 12:18:17 +02:00
|
|
|
if(tasklist_isvisible(c, screen, d->show))
|
2008-01-03 12:39:28 +01:00
|
|
|
n++;
|
2008-02-13 06:53:08 +01:00
|
|
|
|
2008-01-03 12:39:28 +01:00
|
|
|
if(!n)
|
2008-05-20 15:39:47 +02:00
|
|
|
return (w->area.width = 0);
|
2008-01-03 12:39:28 +01:00
|
|
|
|
2008-06-03 16:08:33 +02:00
|
|
|
box_width = (ctx->width - used) / n;
|
2008-01-20 16:25:06 +01:00
|
|
|
/* compute how many pixel we left empty */
|
2008-06-03 16:08:33 +02:00
|
|
|
box_width_rest = (ctx->width - used) % n;
|
2008-01-03 12:39:28 +01:00
|
|
|
|
2008-06-03 16:08:33 +02:00
|
|
|
w->area.x = widget_calculate_offset(ctx->width,
|
2008-05-20 15:39:47 +02:00
|
|
|
0, offset, w->widget->align);
|
2008-01-04 22:05:52 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
w->area.y = 0;
|
2008-01-03 12:39:28 +01:00
|
|
|
|
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
2008-06-02 12:18:17 +02:00
|
|
|
if(tasklist_isvisible(c, screen, d->show))
|
2008-01-03 12:39:28 +01:00
|
|
|
{
|
2008-01-03 19:21:36 +01:00
|
|
|
icon_width = 0;
|
|
|
|
|
2008-04-29 11:42:16 +02:00
|
|
|
if(globalconf.focus->client == c)
|
2008-04-28 12:23:10 +02:00
|
|
|
text = d->text_focus;
|
2008-04-29 11:42:16 +02:00
|
|
|
else if(c->isurgent)
|
|
|
|
text = d->text_urgent;
|
2008-03-18 09:13:43 +01:00
|
|
|
else
|
2008-04-28 12:23:10 +02:00
|
|
|
text = d->text_normal;
|
|
|
|
|
|
|
|
text = client_markup_parse(c, text, a_strlen(text));
|
2008-03-14 08:35:06 +01:00
|
|
|
|
2008-01-03 19:21:36 +01:00
|
|
|
if(d->show_icons)
|
|
|
|
{
|
2008-01-17 15:47:08 +01:00
|
|
|
/* draw a background for icons */
|
2008-05-20 15:39:47 +02:00
|
|
|
area.x = w->area.x + box_width * i;
|
|
|
|
area.y = w->area.y;
|
2008-06-03 16:08:33 +02:00
|
|
|
area.height = ctx->height;
|
2008-01-17 15:47:08 +01:00
|
|
|
area.width = box_width;
|
2008-03-14 08:35:06 +01:00
|
|
|
|
2008-05-20 22:37:08 +02:00
|
|
|
if(c->icon_path)
|
2008-01-12 22:59:13 +01:00
|
|
|
{
|
2008-05-20 22:37:08 +02:00
|
|
|
area = draw_get_image_size(c->icon_path);
|
2008-01-23 19:13:49 +01:00
|
|
|
if(area.width > 0 && area.height > 0)
|
|
|
|
{
|
2008-06-03 16:08:33 +02:00
|
|
|
icon_width = ((double) ctx->height / (double) area.height) * area.width;
|
2008-06-03 20:28:38 +02:00
|
|
|
draw_image_from_file(ctx,
|
|
|
|
w->area.x + box_width * i,
|
|
|
|
w->area.y,
|
|
|
|
ctx->height,
|
|
|
|
c->icon_path);
|
2008-01-23 19:13:49 +01:00
|
|
|
}
|
2008-01-12 22:59:13 +01:00
|
|
|
}
|
2008-01-03 19:21:36 +01:00
|
|
|
|
|
|
|
if(!icon_width && (icon = ewmh_get_window_icon(c->win)))
|
|
|
|
{
|
2008-06-03 16:08:33 +02:00
|
|
|
icon_width = ((double) ctx->height / (double) icon->height)
|
2008-01-03 19:21:36 +01:00
|
|
|
* icon->width;
|
2008-06-02 12:18:17 +02:00
|
|
|
draw_image_from_argb_data(ctx,
|
2008-05-20 15:39:47 +02:00
|
|
|
w->area.x + box_width * i,
|
|
|
|
w->area.y,
|
2008-01-03 19:21:36 +01:00
|
|
|
icon->width, icon->height,
|
2008-06-03 16:08:33 +02:00
|
|
|
ctx->height, icon->image);
|
2008-01-04 15:59:17 +01:00
|
|
|
p_delete(&icon->image);
|
2008-01-03 19:21:36 +01:00
|
|
|
p_delete(&icon);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
area.x = w->area.x + icon_width + box_width * i;
|
|
|
|
area.y = w->area.y;
|
2008-01-12 23:47:03 +01:00
|
|
|
area.width = box_width - icon_width;
|
2008-06-03 16:08:33 +02:00
|
|
|
area.height = ctx->height;
|
2008-01-20 16:25:06 +01:00
|
|
|
|
|
|
|
/* if we're on last elem, it has the last pixels left */
|
|
|
|
if(i == n - 1)
|
|
|
|
area.width += box_width_rest;
|
|
|
|
|
2008-06-02 12:18:17 +02:00
|
|
|
draw_text(ctx, globalconf.font,
|
2008-05-20 15:39:47 +02:00
|
|
|
area, text);
|
2008-01-12 23:47:03 +01:00
|
|
|
|
2008-04-28 12:23:10 +02:00
|
|
|
p_delete(&text);
|
|
|
|
|
2008-05-25 17:42:20 +02:00
|
|
|
if(c->isfloating || c->ismax)
|
2008-06-02 12:18:17 +02:00
|
|
|
draw_circle(ctx, w->area.x + icon_width + box_width * i,
|
2008-05-20 15:39:47 +02:00
|
|
|
w->area.y,
|
|
|
|
(globalconf.font->height + 2) / 4,
|
2008-06-02 12:18:17 +02:00
|
|
|
c->ismax, ctx->fg);
|
2008-01-03 12:39:28 +01:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2008-06-03 16:08:33 +02:00
|
|
|
w->area.width = ctx->width - used;
|
|
|
|
w->area.height = ctx->height;
|
2008-01-03 12:39:28 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
return w->area.width;
|
2008-01-03 12:39:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-06-03 11:40:50 +02:00
|
|
|
tasklist_button_press(widget_node_t *w,
|
|
|
|
xcb_button_press_event_t *ev,
|
|
|
|
int screen,
|
|
|
|
void *p __attribute__ ((unused)))
|
2008-01-03 12:39:28 +01:00
|
|
|
{
|
2008-05-23 13:35:46 +02:00
|
|
|
button_t *b;
|
2008-05-26 16:17:57 +02:00
|
|
|
client_t *c;
|
2008-05-20 15:39:47 +02:00
|
|
|
Data *d = w->widget->data;
|
2008-01-18 09:49:04 +01:00
|
|
|
int n = 0, box_width = 0, i, ci = 0;
|
2008-01-03 12:39:28 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
2008-06-03 11:40:50 +02:00
|
|
|
if(tasklist_isvisible(c, screen, d->show))
|
2008-05-20 15:39:47 +02:00
|
|
|
n++;
|
2008-02-13 06:53:08 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
if(!n)
|
|
|
|
return;
|
2008-01-03 12:39:28 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
box_width = w->area.width / n;
|
2008-01-03 12:39:28 +01:00
|
|
|
|
2008-06-03 11:40:50 +02:00
|
|
|
ci = (ev->event_x - w->area.x) / box_width;
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
/* found first visible client */
|
|
|
|
for(c = globalconf.clients;
|
2008-06-03 11:40:50 +02:00
|
|
|
c && !tasklist_isvisible(c, screen, d->show);
|
2008-05-20 15:39:47 +02:00
|
|
|
c = c->next);
|
|
|
|
/* found ci-th visible client */
|
|
|
|
for(i = 0; c ; c = c->next)
|
2008-06-03 11:40:50 +02:00
|
|
|
if(tasklist_isvisible(c, screen, d->show))
|
2008-05-20 15:39:47 +02:00
|
|
|
if(i++ >= ci)
|
2008-01-04 19:12:07 +01:00
|
|
|
break;
|
2008-05-20 15:39:47 +02:00
|
|
|
|
|
|
|
if(c)
|
|
|
|
for(b = w->widget->buttons; b; b = b->next)
|
|
|
|
if(ev->detail == b->button && CLEANMASK(ev->state) == b->mod && b->fct)
|
2008-01-10 07:04:51 +01:00
|
|
|
{
|
2008-05-23 22:49:39 +02:00
|
|
|
luaA_client_userdata_new(c);
|
2008-05-20 15:39:47 +02:00
|
|
|
luaA_dofunction(globalconf.L, b->fct, 1);
|
2008-01-10 07:04:51 +01:00
|
|
|
}
|
2008-05-20 15:39:47 +02:00
|
|
|
}
|
2008-01-07 11:20:24 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
static widget_tell_status_t
|
|
|
|
tasklist_tell(widget_t *widget, const char *property, const char *new_value)
|
|
|
|
{
|
|
|
|
Data *d = widget->data;
|
|
|
|
|
|
|
|
if(!a_strcmp(property, "text_normal"))
|
|
|
|
{
|
|
|
|
p_delete(&d->text_normal);
|
|
|
|
d->text_normal = a_strdup(new_value);
|
2008-01-03 12:39:28 +01:00
|
|
|
}
|
2008-05-20 15:39:47 +02:00
|
|
|
else if(!a_strcmp(property, "text_focus"))
|
|
|
|
{
|
|
|
|
p_delete(&d->text_focus);
|
|
|
|
d->text_focus = a_strdup(new_value);
|
|
|
|
}
|
|
|
|
else if(!a_strcmp(property, "text_urgent"))
|
|
|
|
{
|
|
|
|
p_delete(&d->text_urgent);
|
|
|
|
d->text_urgent = a_strdup(new_value);
|
|
|
|
}
|
2008-06-02 14:24:57 +02:00
|
|
|
else if(!a_strcmp(property, "show_icons"))
|
|
|
|
d->show_icons = a_strtobool(new_value);
|
2008-06-02 14:26:49 +02:00
|
|
|
else if(!a_strcmp(property, "show"))
|
|
|
|
{
|
2008-06-04 01:02:57 +02:00
|
|
|
if(!a_strcmp(new_value, "tags"))
|
2008-06-02 14:26:49 +02:00
|
|
|
d->show = ShowTags;
|
2008-06-04 01:02:57 +02:00
|
|
|
else if(!a_strcmp(new_value, "focus"))
|
2008-06-02 14:26:49 +02:00
|
|
|
d->show = ShowFocus;
|
2008-06-04 01:02:57 +02:00
|
|
|
else if(!a_strcmp(new_value, "all"))
|
2008-06-02 14:26:49 +02:00
|
|
|
d->show = ShowAll;
|
|
|
|
else
|
|
|
|
return WIDGET_ERROR;
|
|
|
|
}
|
2008-05-20 15:39:47 +02:00
|
|
|
else
|
|
|
|
return WIDGET_ERROR;
|
2008-01-03 12:39:28 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
return WIDGET_NOERROR;
|
2008-01-03 12:39:28 +01:00
|
|
|
}
|
|
|
|
|
2008-04-11 11:26:37 +02:00
|
|
|
widget_t *
|
2008-05-20 15:39:47 +02:00
|
|
|
tasklist_new(alignment_t align __attribute__ ((unused)))
|
2008-01-03 12:39:28 +01:00
|
|
|
{
|
2008-04-11 11:26:37 +02:00
|
|
|
widget_t *w;
|
2008-01-03 12:39:28 +01:00
|
|
|
Data *d;
|
|
|
|
|
2008-04-11 11:26:37 +02:00
|
|
|
w = p_new(widget_t, 1);
|
2008-05-20 15:39:47 +02:00
|
|
|
widget_common_new(w);
|
2008-01-03 12:39:28 +01:00
|
|
|
w->draw = tasklist_draw;
|
|
|
|
w->button_press = tasklist_button_press;
|
2008-05-20 15:39:47 +02:00
|
|
|
w->align = AlignFlex;
|
2008-01-03 12:39:28 +01:00
|
|
|
w->data = d = p_new(Data, 1);
|
2008-05-20 15:39:47 +02:00
|
|
|
w->tell = tasklist_tell;
|
2008-01-03 12:39:28 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
d->text_normal = a_strdup(" <title/> ");
|
|
|
|
d->text_focus = a_strdup(" <title/> ");
|
|
|
|
d->text_urgent = a_strdup(" <title/> ");
|
|
|
|
d->show_icons = true;
|
|
|
|
d->show = ShowTags;
|
2008-01-03 16:05:39 +01:00
|
|
|
|
2008-01-07 18:12:38 +01:00
|
|
|
/* Set cache property */
|
2008-05-13 16:48:33 +02:00
|
|
|
w->cache_flags = WIDGET_CACHE_CLIENTS;
|
2008-01-07 18:12:38 +01:00
|
|
|
|
2008-01-03 12:39:28 +01:00
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|