summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnno Boland (tox) <tox@s01.de>2009-10-27 13:13:15 +0100
committerEnno Boland (tox) <tox@s01.de>2009-10-27 13:13:15 +0100
commita3cfb8ac3e2c6b54d16f264edc844b8f60dd0105 (patch)
tree4a656280edc0585be6e561c8f843077626d0f314
parent0c4e90c9d4b8e02de61db4f48c49d2cf87d93fbe (diff)
fixing focus/activation of embedded clients.
-rw-r--r--tabbed.c31
1 files changed, 19 insertions, 12 deletions
diff --git a/tabbed.c b/tabbed.c
index 6cc18dc..cc1d340 100644
--- a/tabbed.c
+++ b/tabbed.c
@@ -116,6 +116,7 @@ static void resize(Client *c, int w, int h);
static void rotate(const Arg *arg);
static void run(void);
static void setup(void);
+static void sendxembed(Client *c, long msg, long detail, long d1, long d2);
static void sigchld(int unused);
static void spawn(const Arg *arg);
static int textnw(const char *text, unsigned int len);
@@ -367,8 +368,6 @@ expose(const XEvent *e) {
void
focus(Client *c) {
- XEvent e;
-
if(!clients) {
XStoreName(dpy, win, "tabbed-"VERSION);
return;
@@ -377,16 +376,8 @@ focus(Client *c) {
return;
XRaiseWindow(dpy, c->win);
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
- e.xclient.window = c->win;
- e.xclient.type = ClientMessage;
- e.xclient.message_type = xembedatom;
- e.xclient.format = 32;
- e.xclient.data.l[0] = CurrentTime;
- e.xclient.data.l[1] = XEMBED_FOCUS_IN;
- e.xclient.data.l[2] = XEMBED_FOCUS_CURRENT;
- e.xclient.data.l[3] = 0;
- e.xclient.data.l[4] = 0;
- XSendEvent(dpy, c->win, False, NoEventMask, &e);
+ sendxembed(c, XEMBED_FOCUS_IN, XEMBED_FOCUS_CURRENT, 0, 0);
+ sendxembed(c, XEMBED_WINDOW_ACTIVATE, 0, 0, 0);
XStoreName(dpy, win, c->name);
sel = c;
drawbar();
@@ -708,6 +699,22 @@ setup(void) {
}
void
+sendxembed(Client *c, long msg, long detail, long d1, long d2) {
+ XEvent e = { 0 };
+
+ e.xclient.window = c->win;
+ e.xclient.type = ClientMessage;
+ e.xclient.message_type = xembedatom;
+ e.xclient.format = 32;
+ e.xclient.data.l[0] = CurrentTime;
+ e.xclient.data.l[1] = msg;
+ e.xclient.data.l[2] = detail;
+ e.xclient.data.l[3] = d1;
+ e.xclient.data.l[4] = d2;
+ XSendEvent(dpy, c->win, False, NoEventMask, &e);
+}
+
+void
sigchld(int unused) {
if(signal(SIGCHLD, sigchld) == SIG_ERR)
die("Can't install SIGCHLD handler");