awesome/client.c

1005 lines
27 KiB
C
Raw Normal View History

/*
* client.c - client management
*
2008-01-02 16:59:43 +01:00
* Copyright © 2007-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.
*
2007-09-12 14:29:51 +02:00
*/
2007-09-05 20:15:00 +02:00
#include <stdio.h>
#include <X11/Xatom.h>
2007-09-13 15:57:35 +02:00
#include <X11/extensions/shape.h>
2008-01-01 17:25:48 +01:00
#include <X11/extensions/Xinerama.h>
2007-09-05 20:15:00 +02:00
2008-01-01 17:25:48 +01:00
#include "client.h"
2007-09-05 20:15:00 +02:00
#include "tag.h"
#include "rules.h"
2007-12-14 16:15:40 +01:00
#include "util.h"
#include "xutil.h"
#include "window.h"
2007-12-14 21:51:54 +01:00
#include "focus.h"
#include "ewmh.h"
2008-01-01 18:02:36 +01:00
#include "screen.h"
2008-01-07 18:12:38 +01:00
#include "widget.h"
2007-09-05 20:15:00 +02:00
#include "layouts/floating.h"
extern AwesomeConf globalconf;
/** Load windows properties, restoring client's tag
* and floating state before awesome was restarted if any
* \todo this may bug if number of tags is != than before
* \param c Client ref
* \param screen Screen ID
2007-10-17 11:49:54 +02:00
*/
static Bool
client_loadprops(Client * c, int screen)
2007-10-16 22:40:02 +02:00
{
int i, ntags = 0;
Tag *tag;
char *prop;
Bool result = False;
2007-10-16 22:40:02 +02:00
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
ntags++;
prop = p_new(char, ntags + 2);
if(xgettextprop(c->win,
XInternAtom(globalconf.display, "_AWESOME_PROPERTIES", False),
prop, ntags + 2))
{
for(i = 0, tag = globalconf.screens[screen].tags; tag && i < ntags && prop[i]; i++, tag = tag->next)
if(prop[i] == '1')
{
tag_client(c, tag);
result = True;
}
else
untag_client(c, tag);
if(i <= ntags && prop[i])
c->isfloating = prop[i] == '1';
}
p_delete(&prop);
return result;
2007-10-16 22:40:02 +02:00
}
/** Check if client supports protocol WM_DELETE_WINDOW
2007-12-16 03:14:47 +01:00
* \param disp the display
* \param win the Window
* \return True if client has WM_DELETE_WINDOW
2007-09-05 20:15:00 +02:00
*/
static Bool
isprotodel(Display *disp, Window win)
2007-09-05 20:15:00 +02:00
{
int i, n;
Atom *protocols;
Bool ret = False;
if(XGetWMProtocols(disp, win, &protocols, &n))
2007-09-05 20:15:00 +02:00
{
for(i = 0; !ret && i < n; i++)
if(protocols[i] == XInternAtom(disp, "WM_DELETE_WINDOW", False))
2007-09-05 20:15:00 +02:00
ret = True;
XFree(protocols);
}
return ret;
}
/** Swap two client in the linked list clients
2007-12-16 03:14:47 +01:00
* \param head pointer ito the client list head
* \param c1 first client
* \param c2 second client
*/
static void
2007-10-11 21:50:32 +02:00
client_swap(Client **head, Client *c1, Client *c2)
{
Client *tmp;
tmp = c1->next;
c1->next = c2->next;
c2->next = (tmp == c2 ? c1 : tmp);
tmp = c2->prev;
c2->prev = c1->prev;
c1->prev = (tmp == c1 ? c2 : tmp );
if(c1->next)
c1->next->prev = c1;
if(c1->prev)
c1->prev->next = c1;
if(c2->next)
c2->next->prev = c2;
if(c2->prev)
c2->prev->next = c2;
2007-10-11 21:50:32 +02:00
if(*head == c1)
*head = c2;
}
/** Get a Client by its window
* \param list Client list to look info
* \param w Client window to find
* \return client
*/
Client *
get_client_bywin(Client *list, Window w)
{
Client *c;
for(c = list; c && c->win != w; c = c->next);
return c;
}
/** Get a client by its name
* \param list Client list
* \param name name to search
* \return first matching client
*/
2007-12-23 16:16:02 +01:00
Client *
get_client_byname(Client *list, char *name)
{
Client *c;
for(c = list; c; c = c->next)
if(strstr(c->name, name))
return c;
return NULL;
}
/** Update client name attribute with its title
* \param c the client
*/
2007-10-01 20:44:02 +02:00
void
client_updatetitle(Client *c)
2007-09-05 20:15:00 +02:00
{
2008-01-06 22:53:40 +01:00
if(!xgettextprop(c->win, XInternAtom(globalconf.display, "_NET_WM_NAME", False), c->name, sizeof(c->name)))
xgettextprop(c->win, XInternAtom(globalconf.display, "WM_NAME", False), c->name, sizeof(c->name));
2008-01-07 18:54:45 +01:00
widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
2007-09-05 20:15:00 +02:00
}
2007-12-14 08:47:21 +01:00
/** Ban client and unmap it
2007-09-05 20:15:00 +02:00
* \param c the client
*/
void
2007-10-26 19:50:39 +02:00
client_ban(Client * c)
2007-09-05 20:15:00 +02:00
{
2007-12-27 23:10:43 +01:00
XUnmapWindow(globalconf.display, c->win);
window_setstate(c->win, IconicState);
2007-09-05 20:15:00 +02:00
}
static void
client_attach_at_end(Client *c)
{
Client *iter;
for(iter = globalconf.clients; iter && iter->next; iter = iter->next);
/* stack is empty */
if(!iter)
globalconf.clients = c;
else
{
c->prev = iter;
iter->next = c;
}
}
/** Attach client to the beginning of the clients stack
* \param c the client
*/
void
client_attach(Client *c)
{
if(globalconf.clients)
(globalconf.clients)->prev = c;
c->next = globalconf.clients;
globalconf.clients = c;
}
2007-10-03 00:13:09 +02:00
/** Detach client from clients list
* \param c client to detach
*/
2007-09-05 20:15:00 +02:00
void
client_detach(Client *c)
2007-09-05 20:15:00 +02:00
{
if(c->prev)
c->prev->next = c->next;
if(c->next)
c->next->prev = c->prev;
if(c == globalconf.clients)
globalconf.clients = c->next;
2007-09-05 20:15:00 +02:00
c->next = c->prev = NULL;
}
/** Give focus to client, or to first client if c is NULL
* \param c client
* \param selscreen True if current screen is selected
* \param screen Screen ID
2007-09-05 20:15:00 +02:00
*/
void
focus(Client *c, Bool selscreen, int screen)
2007-09-05 20:15:00 +02:00
{
2008-01-02 19:26:55 +01:00
int phys_screen = get_phys_screen(screen);
2007-12-14 21:51:54 +01:00
/* unfocus current selected client */
if(globalconf.focus->client)
2007-12-14 21:51:54 +01:00
{
2008-01-07 18:12:38 +01:00
widget_invalidate_cache(globalconf.focus->client->screen, WIDGET_CACHE_CLIENTS);
2008-01-02 19:26:55 +01:00
window_grabbuttons(get_phys_screen(globalconf.focus->client->screen),
globalconf.focus->client->win, False, True);
2007-12-27 23:10:43 +01:00
XSetWindowBorder(globalconf.display, globalconf.focus->client->win,
globalconf.screens[screen].colors_normal[ColBorder].pixel);
window_settrans(globalconf.focus->client->win,
globalconf.screens[screen].opacity_unfocused);
2007-12-14 21:51:54 +01:00
}
2007-12-28 10:12:34 +01:00
/* if c is NULL or invisible, take next client in the focus history */
if((!c && selscreen) || (c && !client_isvisible(c, screen)))
2007-12-28 10:12:34 +01:00
{
c = focus_get_current_client(screen);
/* if c is still NULL take next client in the stack */
if(!c)
for(c = globalconf.clients; c && (c->skip || !client_isvisible(c, screen)); c = c->next);
2007-12-28 10:12:34 +01:00
}
2007-10-15 16:57:54 +02:00
if(c)
{
XSetWindowBorder(globalconf.display, c->win, globalconf.screens[screen].colors_selected[ColBorder].pixel);
2008-01-02 19:26:55 +01:00
window_grabbuttons(phys_screen, c->win, True, True);
}
2007-12-14 21:51:54 +01:00
2007-09-05 20:15:00 +02:00
if(!selscreen)
return;
2007-12-14 21:51:54 +01:00
2007-12-28 10:12:34 +01:00
/* save sel in focus history */
focus_add_client(c);
2007-12-14 21:51:54 +01:00
2008-01-07 18:12:38 +01:00
widget_invalidate_cache(screen, WIDGET_CACHE_CLIENTS);
2007-12-14 21:51:54 +01:00
if(globalconf.focus->client)
2007-09-05 20:15:00 +02:00
{
2007-12-27 23:10:43 +01:00
XSetInputFocus(globalconf.display,
globalconf.focus->client->win, RevertToPointerRoot, CurrentTime);
for(c = globalconf.clients; c; c = c->next)
if(c != globalconf.focus->client)
window_settrans(globalconf.focus->client->win,
globalconf.screens[screen].opacity_unfocused);
window_settrans(globalconf.focus->client->win, -1);
2007-09-05 20:15:00 +02:00
}
else
XSetInputFocus(globalconf.display,
2008-01-02 19:26:55 +01:00
RootWindow(globalconf.display, phys_screen),
2007-12-14 21:51:54 +01:00
RevertToPointerRoot, CurrentTime);
2008-01-02 19:26:55 +01:00
ewmh_update_net_active_window(phys_screen);
2007-09-05 20:15:00 +02:00
}
2007-09-20 21:27:43 +02:00
/** Manage a new client
* \param w The window
* \param wa Window attributes
* \param screen Screen ID
2007-09-20 21:27:43 +02:00
*/
2007-09-05 20:15:00 +02:00
void
client_manage(Window w, XWindowAttributes *wa, int screen)
2007-09-05 20:15:00 +02:00
{
Client *c, *t = NULL;
Window trans;
Bool rettrans;
2007-09-05 20:15:00 +02:00
XWindowChanges wc;
Area area, darea;
Tag *tag;
Rule *rule;
2008-01-02 19:26:55 +01:00
int phys_screen = get_phys_screen(screen);
2007-09-05 20:15:00 +02:00
2008-01-04 14:19:59 +01:00
area = get_screen_area(screen, NULL, NULL);
2007-09-05 20:15:00 +02:00
c = p_new(Client, 1);
2007-09-05 20:15:00 +02:00
c->win = w;
2008-01-05 19:38:50 +01:00
c->geometry.x = c->f_geometry.x = c->m_geometry.x = wa->x;
c->geometry.y = c->f_geometry.y = c->m_geometry.y = wa->y;
c->geometry.width = c->f_geometry.width = c->m_geometry.width = wa->width;
c->geometry.height = c->f_geometry.height = c->m_geometry.height = wa->height;
2007-09-05 20:15:00 +02:00
c->oldborder = wa->border_width;
2008-01-05 19:38:50 +01:00
c->screen = get_screen_bycoord(c->geometry.x, c->geometry.y);
2007-11-15 14:44:43 +01:00
move_client_to_screen(c, screen, True);
/* update window title */
client_updatetitle(c);
2008-01-05 19:38:50 +01:00
if(c->geometry.width == area.width && c->geometry.height == area.height)
c->border = wa->border_width;
else
c->border = globalconf.screens[screen].borderpx;
ewmh_check_client_hints(c);
/* loadprops or apply rules if no props */
if(!client_loadprops(c, screen))
tag_client_with_rules(c);
/* if window request fullscreen mode */
2008-01-05 19:38:50 +01:00
if(c->geometry.width == area.width && c->geometry.height == area.height)
2007-09-05 20:15:00 +02:00
{
2008-01-05 19:38:50 +01:00
c->geometry.x = area.x;
c->geometry.y = area.y;
2007-09-05 20:15:00 +02:00
}
else
{
2008-01-02 19:26:55 +01:00
darea = get_display_area(phys_screen,
globalconf.screens[screen].statusbar,
&globalconf.screens[screen].padding);
2008-01-05 19:38:50 +01:00
if(c->geometry.x + c->geometry.width + 2 * c->border > darea.x + darea.width)
c->geometry.x = c->f_geometry.x = darea.x + darea.width - c->geometry.width - 2 * c->border;
if(c->geometry.y + c->geometry.height + 2 * c->border > darea.y + darea.height)
c->geometry.y = c->f_geometry.y = darea.y + darea.height - c->geometry.height - 2 * c->border;
if(c->geometry.x < darea.x)
c->geometry.x = c->f_geometry.x = darea.x;
if(c->geometry.y < darea.y)
c->geometry.y = c->f_geometry.y = darea.y;
2007-09-05 20:15:00 +02:00
}
2008-01-05 19:38:50 +01:00
/* XXX if this necessary ? */
/* set borders */
2007-09-05 20:15:00 +02:00
wc.border_width = c->border;
2007-12-27 23:10:43 +01:00
XConfigureWindow(globalconf.display, w, CWBorderWidth, &wc);
XSetWindowBorder(globalconf.display, w, globalconf.screens[screen].colors_normal[ColBorder].pixel);
/* propagates border_width, if size doesn't change */
2008-01-05 20:25:55 +01:00
window_configure(c->win, c->geometry, c->border);
/* update hints */
client_updatesizehints(c);
client_updatewmhints(c);
2007-12-27 23:10:43 +01:00
XSelectInput(globalconf.display, w, StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
/* handle xshape */
if(globalconf.have_shape)
2007-09-13 15:57:35 +02:00
{
2007-12-27 23:10:43 +01:00
XShapeSelectInput(globalconf.display, w, ShapeNotifyMask);
2008-01-02 19:26:55 +01:00
window_setshape(phys_screen, c->win);
2007-09-13 15:57:35 +02:00
}
/* grab buttons */
2008-01-02 19:26:55 +01:00
window_grabbuttons(phys_screen, c->win, False, True);
/* check for transient and set tags like its parent,
* XGetTransientForHint returns 1 on success
*/
if((rettrans = XGetTransientForHint(globalconf.display, w, &trans))
&& (t = get_client_bywin(globalconf.clients, trans)))
for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next)
2007-12-27 23:05:34 +01:00
if(is_client_tagged(t, tag))
tag_client(c, tag);
/* should be floating if transsient or fixed */
2007-09-05 20:15:00 +02:00
if(!c->isfloating)
c->isfloating = rettrans || c->isfixed;
/* save new props */
client_saveprops(c);
/* attach to the stack */
for(rule = globalconf.rules; rule; rule = rule->next)
if(rule->not_master && client_match_rule(c, rule))
{
client_attach_at_end(c);
break;
}
if(!rule)
{
if(globalconf.screens[c->screen].new_become_master)
client_attach(c);
else
client_attach_at_end(c);
}
/* some windows require this */
2008-01-05 19:38:50 +01:00
XMoveResizeWindow(globalconf.display, c->win, c->geometry.x, c->geometry.y,
c->geometry.width, c->geometry.height);
2008-01-07 18:54:45 +01:00
if(globalconf.screens[c->screen].new_get_focus)
focus(c, True, screen);
else
widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
2008-01-02 19:26:55 +01:00
ewmh_update_net_client_list(phys_screen);
2007-12-27 16:19:05 +01:00
/* rearrange to display new window */
2008-01-06 22:28:15 +01:00
arrange(c->screen);
2007-09-05 20:15:00 +02:00
}
/** Resize client window
* \param c client to resize
* \param x x coord
* \param y y coord
* \param w width
* \param h height
* \param sizehints respect size hints
* \param volatile_coords register coords in rx/ry/rw/rh
* \param return True if resize has been done
*/
Bool
client_resize(Client *c, Area geometry, Bool sizehints)
2007-09-05 20:15:00 +02:00
{
int new_screen;
2007-09-05 20:15:00 +02:00
double dx, dy, max, min, ratio;
Area area;
XWindowChanges wc;
2007-09-05 20:15:00 +02:00
if(sizehints)
{
2008-01-05 20:18:30 +01:00
if(c->minay > 0 && c->maxay > 0 && (geometry.height - c->baseh) > 0
&& (geometry.width - c->basew) > 0)
2007-09-05 20:15:00 +02:00
{
2008-01-05 20:18:30 +01:00
dx = (double) (geometry.width - c->basew);
dy = (double) (geometry.height - c->baseh);
2007-09-05 20:15:00 +02:00
min = (double) (c->minax) / (double) (c->minay);
max = (double) (c->maxax) / (double) (c->maxay);
ratio = dx / dy;
if(max > 0 && min > 0 && ratio > 0)
{
if(ratio < min)
{
dy = (dx * min + dy) / (min * min + 1);
dx = dy * min;
2008-01-05 20:18:30 +01:00
geometry.width = (int) dx + c->basew;
geometry.height = (int) dy + c->baseh;
2007-09-05 20:15:00 +02:00
}
else if(ratio > max)
{
dy = (dx * min + dy) / (max * max + 1);
dx = dy * min;
2008-01-05 20:18:30 +01:00
geometry.width = (int) dx + c->basew;
geometry.height = (int) dy + c->baseh;
2007-09-05 20:15:00 +02:00
}
}
}
2008-01-05 20:18:30 +01:00
if(c->minw && geometry.width < c->minw)
geometry.width = c->minw;
if(c->minh && geometry.height < c->minh)
geometry.height = c->minh;
if(c->maxw && geometry.width > c->maxw)
geometry.width = c->maxw;
if(c->maxh && geometry.height > c->maxh)
geometry.height = c->maxh;
2007-09-05 20:15:00 +02:00
if(c->incw)
2008-01-05 20:18:30 +01:00
geometry.width -= (geometry.width - c->basew) % c->incw;
2007-09-05 20:15:00 +02:00
if(c->inch)
2008-01-05 20:18:30 +01:00
geometry.height -= (geometry.height - c->baseh) % c->inch;
2007-09-05 20:15:00 +02:00
}
2008-01-05 20:18:30 +01:00
if(geometry.width <= 0 || geometry.height <= 0)
return False;
2007-09-05 20:15:00 +02:00
/* offscreen appearance fixes */
2008-01-02 19:26:55 +01:00
area = get_display_area(get_phys_screen(c->screen),
NULL,
&globalconf.screens[c->screen].padding);
2008-01-05 20:18:30 +01:00
if(geometry.x > area.width)
geometry.x = area.width - geometry.width - 2 * c->border;
if(geometry.y > area.height)
geometry.y = area.height - geometry.height - 2 * c->border;
if(geometry.x + geometry.width + 2 * c->border < 0)
geometry.x = 0;
if(geometry.y + geometry.height + 2 * c->border < 0)
geometry.y = 0;
2008-01-05 20:18:30 +01:00
if(c->geometry.x != geometry.x || c->geometry.y != geometry.y
|| c->geometry.width != geometry.width || c->geometry.height != geometry.height)
2007-09-05 20:15:00 +02:00
{
2008-01-05 18:54:17 +01:00
if(XineramaIsActive(globalconf.display))
new_screen = get_screen_bycoord(geometry.x, geometry.y);
else
new_screen = c->screen;
c->geometry.x = wc.x = geometry.x;
c->geometry.y = wc.y = geometry.y;
c->geometry.width = wc.width = geometry.width;
c->geometry.height = wc.height = geometry.height;
wc.border_width = c->border;
if(c->isfloating ||
get_current_layout(new_screen)->arrange == layout_floating)
c->f_geometry = geometry;
XConfigureWindow(globalconf.display, c->win,
CWX | CWY | CWWidth | CWHeight | CWBorderWidth, &wc);
window_configure(c->win, geometry, c->border);
if(c->screen != new_screen)
move_client_to_screen(c, new_screen, False);
return True;
2007-09-05 20:15:00 +02:00
}
return False;
2007-09-05 20:15:00 +02:00
}
/** Save client properties as an X property
* \param c client
*/
2007-09-05 20:15:00 +02:00
void
client_saveprops(Client *c)
2007-09-05 20:15:00 +02:00
{
int i = 0, ntags = 0;
char *prop;
Tag *tag;
for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next)
ntags++;
prop = p_new(char, ntags + 2);
for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next, i++)
2007-12-27 23:05:34 +01:00
prop[i] = is_client_tagged(c, tag) ? '1' : '0';
2007-09-05 20:15:00 +02:00
if(i <= ntags)
prop[i] = c->isfloating ? '1' : '0';
prop[++i] = '\0';
XChangeProperty(globalconf.display, c->win,
XInternAtom(globalconf.display, "_AWESOME_PROPERTIES", False),
XA_STRING, 8, PropModeReplace, (unsigned char *) prop, i);
p_delete(&prop);
2007-09-05 20:15:00 +02:00
}
void
2007-10-26 19:50:39 +02:00
client_unban(Client *c)
2007-09-05 20:15:00 +02:00
{
2007-12-27 23:10:43 +01:00
XMapWindow(globalconf.display, c->win);
window_setstate(c->win, NormalState);
2007-09-05 20:15:00 +02:00
}
void
2008-01-06 21:57:53 +01:00
client_unmanage(Client *c)
2007-09-05 20:15:00 +02:00
{
XWindowChanges wc;
Tag *tag;
2007-09-05 20:15:00 +02:00
wc.border_width = c->oldborder;
2008-01-06 21:57:53 +01:00
2007-09-05 20:15:00 +02:00
/* The server grab construct avoids race conditions. */
2007-12-27 23:10:43 +01:00
XGrabServer(globalconf.display);
2008-01-06 21:57:53 +01:00
2007-12-27 23:10:43 +01:00
XConfigureWindow(globalconf.display, c->win, CWBorderWidth, &wc); /* restore border */
2008-01-06 21:57:53 +01:00
/* remove client everywhere */
client_detach(c);
focus_delete_client(c);
for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next)
untag_client(c, tag);
2008-01-06 21:57:53 +01:00
if(globalconf.focus->client == c)
focus(NULL, True, c->screen);
2007-12-27 23:10:43 +01:00
XUngrabButton(globalconf.display, AnyButton, AnyModifier, c->win);
2008-01-06 21:57:53 +01:00
window_setstate(c->win, WithdrawnState);
2007-12-27 23:10:43 +01:00
XSync(globalconf.display, False);
XUngrabServer(globalconf.display);
2008-01-06 21:57:53 +01:00
arrange(c->screen);
2007-09-05 20:15:00 +02:00
p_delete(&c);
}
2007-12-23 15:16:10 +01:00
void
client_updatewmhints(Client *c)
{
XWMHints *wmh;
if((wmh = XGetWMHints(globalconf.display, c->win)))
{
c->isurgent = (wmh->flags & XUrgencyHint);
2007-12-30 18:24:21 +01:00
if((wmh->flags & StateHint) && wmh->initial_state == WithdrawnState)
c->skip = True;
2007-12-23 15:16:10 +01:00
XFree(wmh);
}
}
2007-09-05 20:15:00 +02:00
void
client_updatesizehints(Client *c)
2007-09-05 20:15:00 +02:00
{
long msize;
XSizeHints size;
2007-12-27 23:10:43 +01:00
if(!XGetWMNormalHints(globalconf.display, c->win, &size, &msize) || !size.flags)
2007-09-05 20:15:00 +02:00
size.flags = PSize;
2008-01-05 18:57:33 +01:00
if(size.flags & PBaseSize)
2007-09-05 20:15:00 +02:00
{
c->basew = size.base_width;
c->baseh = size.base_height;
}
2008-01-05 18:57:33 +01:00
else if(size.flags & PMinSize)
2007-09-05 20:15:00 +02:00
{
c->basew = size.min_width;
c->baseh = size.min_height;
}
else
c->basew = c->baseh = 0;
2008-01-05 18:57:33 +01:00
if(size.flags & PResizeInc)
2007-09-05 20:15:00 +02:00
{
c->incw = size.width_inc;
c->inch = size.height_inc;
}
else
c->incw = c->inch = 0;
2008-01-05 18:57:33 +01:00
if(size.flags & PMaxSize)
2007-09-05 20:15:00 +02:00
{
c->maxw = size.max_width;
c->maxh = size.max_height;
}
else
c->maxw = c->maxh = 0;
2008-01-05 18:57:33 +01:00
if(size.flags & PMinSize)
2007-09-05 20:15:00 +02:00
{
c->minw = size.min_width;
c->minh = size.min_height;
}
2008-01-05 18:57:33 +01:00
else if(size.flags & PBaseSize)
2007-09-05 20:15:00 +02:00
{
c->minw = size.base_width;
c->minh = size.base_height;
}
else
c->minw = c->minh = 0;
2008-01-05 18:57:33 +01:00
if(size.flags & PAspect)
2007-09-05 20:15:00 +02:00
{
c->minax = size.min_aspect.x;
c->maxax = size.max_aspect.x;
c->minay = size.min_aspect.y;
c->maxay = size.max_aspect.y;
}
else
c->minax = c->maxax = c->minay = c->maxay = 0;
if(c->maxw && c->minw && c->maxh && c->minh
&& c->maxw == c->minw && c->maxh == c->minh)
c->isfixed = True;
2007-09-05 20:15:00 +02:00
}
/** Returns True if a client is tagged
* with one of the tags
* \return True or False
*/
Bool
client_isvisible(Client *c, int screen)
{
Tag *tag;
if(c->screen != screen)
return False;
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
2007-12-27 23:05:34 +01:00
if(tag->selected && is_client_tagged(c, tag))
return True;
return False;
}
2007-09-20 21:27:43 +02:00
/** Set selected client transparency
* \param screen Screen ID
2007-09-20 21:27:43 +02:00
* \param arg unused arg
* \ingroup ui_callback
*/
2007-09-05 20:15:00 +02:00
void
uicb_client_settrans(int screen __attribute__ ((unused)), char *arg)
2007-09-05 20:15:00 +02:00
{
2007-10-09 23:47:45 +02:00
double delta = 100.0, current_opacity = 100.0;
2007-09-05 20:15:00 +02:00
unsigned char *data;
Atom actual;
int format;
unsigned long n, left;
2007-09-14 13:50:46 +02:00
unsigned int current_opacity_raw = 0;
2007-09-05 20:15:00 +02:00
int set_prop = 0;
Client *sel = globalconf.focus->client;
2007-09-05 20:15:00 +02:00
if(!sel)
2007-09-05 20:15:00 +02:00
return;
XGetWindowProperty(globalconf.display, sel->win,
2007-12-27 23:10:43 +01:00
XInternAtom(globalconf.display, "_NET_WM_WINDOW_OPACITY", False),
2007-09-14 13:50:46 +02:00
0L, 1L, False, XA_CARDINAL, &actual, &format, &n, &left,
(unsigned char **) &data);
if(data)
2007-09-05 20:15:00 +02:00
{
2007-09-14 13:50:46 +02:00
memcpy(&current_opacity_raw, data, sizeof(unsigned int));
XFree(data);
current_opacity = (current_opacity_raw * 100.0) / 0xffffffff;
2007-09-05 20:15:00 +02:00
}
2007-09-14 13:50:46 +02:00
else
set_prop = 1;
delta = compute_new_value_from_arg(arg, current_opacity);
2007-09-05 20:15:00 +02:00
if(delta <= 0.0)
delta = 0.0;
else if(delta > 100.0)
{
delta = 100.0;
set_prop = 1;
}
if(delta == 100.0 && !set_prop)
window_settrans(sel->win, -1);
2007-09-05 20:15:00 +02:00
else
window_settrans(sel->win, delta);
2007-09-05 20:15:00 +02:00
}
/** Swap current with next client
* \param screen Screen ID
* \param arg nothing
* \ingroup ui_callback
*/
void
uicb_client_swapnext(int screen, char *arg __attribute__ ((unused)))
{
Client *next, *sel = globalconf.focus->client;
if(!sel)
return;
for(next = sel->next; next && !client_isvisible(next, screen); next = next->next);
if(next)
{
client_swap(&globalconf.clients, sel, next);
arrange(screen);
/* restore focus */
focus(sel, True, screen);
}
}
/** Swap current with previous client
* \param screen Screen ID
* \param arg nothing
* \ingroup ui_callback
*/
void
uicb_client_swapprev(int screen, char *arg __attribute__ ((unused)))
{
Client *prev, *sel = globalconf.focus->client;
if(!sel)
return;
for(prev = sel->prev; prev && !client_isvisible(prev, screen); prev = prev->prev);
if(prev)
{
client_swap(&globalconf.clients, prev, sel);
arrange(screen);
/* restore focus */
focus(sel, True, screen);
}
}
2007-10-01 20:42:59 +02:00
/** Move and resize client
* \param screen Screen ID
* \param arg x y w h
* \ingroup ui_callback
*/
2007-10-01 20:42:59 +02:00
void
uicb_client_moveresize(int screen, char *arg)
2007-10-01 20:42:59 +02:00
{
2008-01-05 20:18:30 +01:00
int ox, oy, ow, oh;
2007-10-01 20:42:59 +02:00
char x[8], y[8], w[8], h[8];
int mx, my, dx, dy, nmx, nmy;
unsigned int dui;
Window dummy;
2008-01-05 20:18:30 +01:00
Area area;
Client *sel = globalconf.focus->client;
Tag **curtags = get_current_tags(screen);
2007-10-01 20:42:59 +02:00
if(curtags[0]->layout->arrange != layout_floating)
if(!sel || !sel->isfloating || sel->isfixed || !arg)
{
p_delete(&curtags);
2007-10-01 20:42:59 +02:00
return;
}
p_delete(&curtags);
2007-10-01 20:42:59 +02:00
if(sscanf(arg, "%s %s %s %s", x, y, w, h) != 4)
return;
2008-01-05 20:18:30 +01:00
area.x = (int) compute_new_value_from_arg(x, sel->geometry.x);
area.y = (int) compute_new_value_from_arg(y, sel->geometry.y);
area.width = (int) compute_new_value_from_arg(w, sel->geometry.width);
area.height = (int) compute_new_value_from_arg(h, sel->geometry.height);
2007-10-11 23:12:05 +02:00
2008-01-05 19:38:50 +01:00
ox = sel->geometry.x;
oy = sel->geometry.y;
ow = sel->geometry.width;
oh = sel->geometry.height;
2007-10-11 23:12:05 +02:00
Bool xqp = XQueryPointer(globalconf.display,
RootWindow(globalconf.display,
get_phys_screen(screen)),
&dummy, &dummy, &mx, &my, &dx, &dy, &dui);
2008-01-06 20:43:13 +01:00
client_resize(sel, area, globalconf.screens[sel->screen].resize_hints);
2007-10-01 20:42:59 +02:00
if (xqp && ox <= mx && (ox + ow) >= mx && oy <= my && (oy + oh) >= my)
{
2008-01-05 19:38:50 +01:00
nmx = mx - ox + sel->geometry.width - ow - 1 < 0 ? 0 : mx - ox + sel->geometry.width - ow - 1;
nmy = my - oy + sel->geometry.height - oh - 1 < 0 ? 0 : my - oy + sel->geometry.height - oh - 1;
XWarpPointer(globalconf.display,
None, sel->win,
0, 0, 0, 0, nmx, nmy);
2007-10-01 20:42:59 +02:00
}
}
2007-12-27 20:49:38 +01:00
2007-10-01 20:42:59 +02:00
void
2007-12-27 20:49:38 +01:00
client_kill(Client *c)
2007-10-01 20:42:59 +02:00
{
XEvent ev;
2007-12-27 23:10:43 +01:00
if(isprotodel(globalconf.display, c->win))
2007-10-01 20:42:59 +02:00
{
ev.type = ClientMessage;
2007-12-27 20:49:38 +01:00
ev.xclient.window = c->win;
ev.xclient.message_type = XInternAtom(globalconf.display, "WM_PROTOCOLS", False);
2007-10-01 20:42:59 +02:00
ev.xclient.format = 32;
ev.xclient.data.l[0] = XInternAtom(globalconf.display, "WM_DELETE_WINDOW", False);
2007-10-01 20:42:59 +02:00
ev.xclient.data.l[1] = CurrentTime;
2007-12-27 20:49:38 +01:00
XSendEvent(globalconf.display, c->win, False, NoEventMask, &ev);
2007-10-01 20:42:59 +02:00
}
else
2007-12-27 20:49:38 +01:00
XKillClient(globalconf.display, c->win);
}
/** Kill selected client
* \param screen Screen ID
* \param arg unused
* \ingroup ui_callback
*/
void
uicb_client_kill(int screen __attribute__ ((unused)), char *arg __attribute__ ((unused)))
{
Client *sel = globalconf.focus->client;
if(sel)
client_kill(sel);
2007-10-01 20:42:59 +02:00
}
static void
client_maximize(Client *c, Area geometry)
{
if((c->ismax = !c->ismax))
{
c->wasfloating = c->isfloating;
c->m_geometry = c->geometry;
client_resize(c, geometry, False);
/* set floating after resizing so it won't save
* coords */
c->isfloating = True;
2008-01-06 23:37:53 +01:00
restack(c->screen);
2008-01-07 18:12:38 +01:00
widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
}
else if(c->wasfloating)
{
c->isfloating = True;
client_resize(c, c->m_geometry, False);
2008-01-06 23:37:53 +01:00
restack(c->screen);
2008-01-07 18:12:38 +01:00
widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
}
else
{
c->isfloating = False;
arrange(c->screen);
2008-01-07 18:12:38 +01:00
widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
}
}
/** Toggle maximize for client
* \param screen Screen ID
* \param arg Unused
* \ingroup ui_callback
*/
void
uicb_client_togglemax(int screen, char *arg __attribute__ ((unused)))
{
Client *sel = globalconf.focus->client;
Area area = get_screen_area(screen,
globalconf.screens[screen].statusbar,
&globalconf.screens[screen].padding);
if(sel)
{
area.width -= 2 * sel->border;
area.height -= 2 * sel->border;
client_maximize(sel, area);
}
}
/** Toggle vertical maximize for client
* \param screen Screen ID
* \param arg Unused
* \ingroup ui_callback
*/
void
uicb_client_toggleverticalmax(int screen, char *arg __attribute__ ((unused)))
{
Client *sel = globalconf.focus->client;
Area area = get_screen_area(screen,
globalconf.screens[screen].statusbar,
&globalconf.screens[screen].padding);
if(sel)
{
area.x = sel->geometry.x;
area.height -= 2 * sel->border;
client_maximize(sel, area);
}
}
/** Toggle horizontal maximize for client
* \param screen Screen ID
* \param arg Unused
* \ingroup ui_callback
*/
void
uicb_client_togglehorizontalmax(int screen, char *arg __attribute__ ((unused)))
{
Client *sel = globalconf.focus->client;
Area area = get_screen_area(screen,
globalconf.screens[screen].statusbar,
&globalconf.screens[screen].padding);
if(sel)
{
area.y = sel->geometry.y;
area.width -= 2 * sel->border;
client_maximize(sel, area);
}
}
/** Zoom client
* \param screen Screen ID
* \param arg Unused
* \ingroup ui_callback
*/
void
uicb_client_zoom(int screen, char *arg __attribute__ ((unused)))
{
Client *sel = globalconf.focus->client;
if(globalconf.clients == sel)
for(sel = sel->next; sel && !client_isvisible(sel, screen); sel = sel->next);
if(!sel)
return;
client_detach(sel);
client_attach(sel);
focus(sel, True, screen);
arrange(screen);
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80