cvsimport

This commit is contained in:
okan 2014-02-08 02:49:30 +00:00
commit 8ddc90665e
7 changed files with 40 additions and 52 deletions

View File

@ -427,6 +427,7 @@ void group_init(struct screen_ctx *);
void group_menu(struct screen_ctx *); void group_menu(struct screen_ctx *);
void group_movetogroup(struct client_ctx *, int); void group_movetogroup(struct client_ctx *, int);
void group_only(struct screen_ctx *, int); void group_only(struct screen_ctx *, int);
void group_set_state(struct screen_ctx *);
void group_sticky(struct client_ctx *); void group_sticky(struct client_ctx *);
void group_sticky_toggle_enter(struct client_ctx *); void group_sticky_toggle_enter(struct client_ctx *);
void group_sticky_toggle_exit(struct client_ctx *); void group_sticky_toggle_exit(struct client_ctx *);

View File

@ -491,6 +491,7 @@ client_unhide(struct client_ctx *cc)
void void
client_urgency(struct client_ctx *cc) client_urgency(struct client_ctx *cc)
{ {
if (!cc->active)
cc->flags |= CLIENT_URGENCY; cc->flags |= CLIENT_URGENCY;
} }

77
group.c
View File

@ -32,8 +32,7 @@
#include "calmwm.h" #include "calmwm.h"
static void group_add(struct group_ctx *, struct client_ctx *); static void group_assign(struct group_ctx *, struct client_ctx *);
static void group_remove(struct client_ctx *);
static void group_hide(struct screen_ctx *, struct group_ctx *); static void group_hide(struct screen_ctx *, struct group_ctx *);
static void group_show(struct screen_ctx *, struct group_ctx *); static void group_show(struct screen_ctx *, struct group_ctx *);
static void group_fix_hidden_state(struct group_ctx *); static void group_fix_hidden_state(struct group_ctx *);
@ -46,11 +45,10 @@ const char *shortcut_to_name[] = {
}; };
static void static void
group_add(struct group_ctx *gc, struct client_ctx *cc) group_assign(struct group_ctx *gc, struct client_ctx *cc)
{ {
if (cc == NULL || gc == NULL) if (gc == NULL)
errx(1, "group_add: a ctx is NULL"); gc = TAILQ_FIRST(&cc->sc->groupq);
if (cc->group == gc) if (cc->group == gc)
return; return;
@ -63,18 +61,6 @@ group_add(struct group_ctx *gc, struct client_ctx *cc)
xu_ewmh_net_wm_desktop(cc); xu_ewmh_net_wm_desktop(cc);
} }
static void
group_remove(struct client_ctx *cc)
{
if (cc == NULL || cc->group == NULL)
errx(1, "group_remove: a ctx is NULL");
TAILQ_REMOVE(&cc->group->clients, cc, group_entry);
cc->group = NULL;
xu_ewmh_net_wm_desktop(cc);
}
static void static void
group_hide(struct screen_ctx *sc, struct group_ctx *gc) group_hide(struct screen_ctx *sc, struct group_ctx *gc)
{ {
@ -162,6 +148,15 @@ group_init(struct screen_ctx *sc)
group_setactive(sc, 1); group_setactive(sc, 1);
} }
void
group_set_state(struct screen_ctx *sc)
{
struct group_ctx *gc;
TAILQ_FOREACH(gc, &sc->groupq, entry)
group_fix_hidden_state(gc);
}
static void static void
group_setactive(struct screen_ctx *sc, long idx) group_setactive(struct screen_ctx *sc, long idx)
{ {
@ -186,7 +181,7 @@ group_movetogroup(struct client_ctx *cc, int idx)
client_hide(cc); client_hide(cc);
gc->nhidden++; gc->nhidden++;
} }
group_add(gc, cc); group_assign(gc, cc);
} }
/* /*
@ -199,10 +194,10 @@ group_sticky_toggle_enter(struct client_ctx *cc)
struct group_ctx *gc = sc->group_active; struct group_ctx *gc = sc->group_active;
if (gc == cc->group) { if (gc == cc->group) {
group_remove(cc); group_assign(NULL, cc);
cc->flags |= CLIENT_UNGROUP; cc->flags |= CLIENT_UNGROUP;
} else { } else {
group_add(gc, cc); group_assign(gc, cc);
cc->flags |= CLIENT_GROUP; cc->flags |= CLIENT_GROUP;
} }
@ -258,16 +253,16 @@ group_hidetoggle(struct screen_ctx *sc, int idx)
void void
group_only(struct screen_ctx *sc, int idx) group_only(struct screen_ctx *sc, int idx)
{ {
int i; struct group_ctx *gc;
if (idx < 0 || idx >= CALMWM_NGROUPS) if (idx < 0 || idx >= CALMWM_NGROUPS)
errx(1, "group_only: index out of range (%d)", idx); errx(1, "group_only: index out of range (%d)", idx);
for (i = 0; i < CALMWM_NGROUPS; i++) { TAILQ_FOREACH(gc, &sc->groupq, entry) {
if (i == idx) if (gc->shortcut == idx)
group_show(sc, &sc->groups[i]); group_show(sc, gc);
else else
group_hide(sc, &sc->groups[i]); group_hide(sc, gc);
} }
} }
@ -314,18 +309,15 @@ group_menu(struct screen_ctx *sc)
struct group_ctx *gc; struct group_ctx *gc;
struct menu *mi; struct menu *mi;
struct menu_q menuq; struct menu_q menuq;
int i;
TAILQ_INIT(&menuq); TAILQ_INIT(&menuq);
for (i = 0; i < CALMWM_NGROUPS; i++) { TAILQ_FOREACH(gc, &sc->groupq, entry) {
gc = &sc->groups[i];
if (TAILQ_EMPTY(&gc->clients)) if (TAILQ_EMPTY(&gc->clients))
continue; continue;
menuq_add(&menuq, gc, gc->hidden ? "%d: [%s]" : "%d: %s", menuq_add(&menuq, gc, gc->hidden ? "%d: [%s]" : "%d: %s",
gc->shortcut, sc->group_names[i]); gc->shortcut, sc->group_names[gc->shortcut]);
} }
if (TAILQ_EMPTY(&menuq)) if (TAILQ_EMPTY(&menuq))
@ -343,16 +335,15 @@ group_menu(struct screen_ctx *sc)
void void
group_alltoggle(struct screen_ctx *sc) group_alltoggle(struct screen_ctx *sc)
{ {
int i; struct group_ctx *gc;
for (i = 0; i < CALMWM_NGROUPS; i++) { TAILQ_FOREACH(gc, &sc->groupq, entry) {
if (sc->group_hideall) if (sc->group_hideall)
group_show(sc, &sc->groups[i]); group_show(sc, gc);
else else
group_hide(sc, &sc->groups[i]); group_hide(sc, gc);
} }
sc->group_hideall = !sc->group_hideall;
sc->group_hideall = (!sc->group_hideall);
} }
void void
@ -369,7 +360,7 @@ group_autogroup(struct client_ctx *cc)
if (xu_getprop(cc->win, ewmh[_NET_WM_DESKTOP], if (xu_getprop(cc->win, ewmh[_NET_WM_DESKTOP],
XA_CARDINAL, 1, (unsigned char **)&grpno) > 0) { XA_CARDINAL, 1, (unsigned char **)&grpno) > 0) {
if (*grpno == 0xffffffff) if (*grpno == -1)
no = 0; no = 0;
else if (*grpno > CALMWM_NGROUPS || *grpno < 0) else if (*grpno > CALMWM_NGROUPS || *grpno < 0)
no = CALMWM_NGROUPS - 1; no = CALMWM_NGROUPS - 1;
@ -389,19 +380,17 @@ group_autogroup(struct client_ctx *cc)
} }
} }
/* no group please */
if (no == 0)
return;
TAILQ_FOREACH(gc, &sc->groupq, entry) { TAILQ_FOREACH(gc, &sc->groupq, entry) {
if (gc->shortcut == no) { if (gc->shortcut == no) {
group_add(gc, cc); group_assign(gc, cc);
return; return;
} }
} }
if (Conf.flags & CONF_STICKY_GROUPS) if (Conf.flags & CONF_STICKY_GROUPS)
group_add(sc->group_active, cc); group_assign(sc->group_active, cc);
else
group_assign(NULL, cc);
} }
void void

View File

@ -203,7 +203,7 @@ mousefunc_menu_unhide(struct client_ctx *cc, union arg *arg)
continue; continue;
menuq_add(&menuq, cc, "(%d) %s", menuq_add(&menuq, cc, "(%d) %s",
cc->group ? cc->group->shortcut : 0, wname); cc->group->shortcut, wname);
} }
if (TAILQ_EMPTY(&menuq)) if (TAILQ_EMPTY(&menuq))

View File

@ -69,6 +69,7 @@ screen_init(int which)
XFree(wins); XFree(wins);
} }
screen_updatestackingorder(sc); screen_updatestackingorder(sc);
group_set_state(sc);
if (HasRandr) if (HasRandr)
XRRSelectInput(X_Dpy, sc->rootwin, RRScreenChangeNotifyMask); XRRSelectInput(X_Dpy, sc->rootwin, RRScreenChangeNotifyMask);

View File

@ -143,7 +143,7 @@ search_print_client(struct menu *mi, int list)
cc->matchname = cc->name; cc->matchname = cc->name;
(void)snprintf(mi->print, sizeof(mi->print), "(%d) %c%s", (void)snprintf(mi->print, sizeof(mi->print), "(%d) %c%s",
cc->group ? cc->group->shortcut : 0, flag, cc->matchname); cc->group->shortcut, flag, cc->matchname);
if (!list && cc->matchname != cc->name && if (!list && cc->matchname != cc->name &&
strlen(mi->print) < sizeof(mi->print) - 1) { strlen(mi->print) < sizeof(mi->print) - 1) {

View File

@ -291,11 +291,7 @@ xu_ewmh_net_desktop_names(struct screen_ctx *sc, char *data, int n)
void void
xu_ewmh_net_wm_desktop(struct client_ctx *cc) xu_ewmh_net_wm_desktop(struct client_ctx *cc)
{ {
struct group_ctx *gc = cc->group; int no = cc->group->shortcut;
long no = 0xffffffff;
if (gc)
no = gc->shortcut;
XChangeProperty(X_Dpy, cc->win, ewmh[_NET_WM_DESKTOP], XChangeProperty(X_Dpy, cc->win, ewmh[_NET_WM_DESKTOP],
XA_CARDINAL, 32, PropModeReplace, (unsigned char *)&no, 1); XA_CARDINAL, 32, PropModeReplace, (unsigned char *)&no, 1);