2009-02-14 02:33:31 +01:00
|
|
|
|
/*
|
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
|
*
|
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
|
*
|
2009-02-15 03:07:29 +01:00
|
|
|
|
* © 2009 Michael Stapelberg and contributors
|
2009-02-14 02:33:31 +01:00
|
|
|
|
*
|
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
|
*
|
2009-02-16 03:28:07 +01:00
|
|
|
|
* layout.c: Functions handling layout/drawing of window decorations
|
|
|
|
|
*
|
2009-02-14 02:33:31 +01:00
|
|
|
|
*/
|
2009-02-13 19:04:45 +01:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <xcb/xcb.h>
|
2009-02-24 00:30:04 +01:00
|
|
|
|
#include <assert.h>
|
2009-03-15 17:35:16 +01:00
|
|
|
|
#include <math.h>
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
2009-02-25 00:50:30 +01:00
|
|
|
|
#include "config.h"
|
2009-02-13 19:04:45 +01:00
|
|
|
|
#include "i3.h"
|
|
|
|
|
#include "xcb.h"
|
|
|
|
|
#include "table.h"
|
|
|
|
|
#include "util.h"
|
2009-02-15 01:58:09 +01:00
|
|
|
|
#include "xinerama.h"
|
2009-03-03 02:28:26 +01:00
|
|
|
|
#include "layout.h"
|
2009-06-21 16:14:15 +02:00
|
|
|
|
#include "client.h"
|
2009-06-24 17:12:12 +02:00
|
|
|
|
#include "floating.h"
|
2009-08-23 21:49:38 +02:00
|
|
|
|
#include "handlers.h"
|
2009-09-27 14:00:54 +02:00
|
|
|
|
#include "workspace.h"
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
2009-03-05 16:23:26 +01:00
|
|
|
|
/*
|
|
|
|
|
* Updates *destination with new_value and returns true if it was changed or false
|
|
|
|
|
* if it was the same
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static bool update_if_necessary(uint32_t *destination, const uint32_t new_value) {
|
2009-05-09 17:48:35 +02:00
|
|
|
|
uint32_t old_value = *destination;
|
2009-03-05 16:23:26 +01:00
|
|
|
|
|
|
|
|
|
return ((*destination = new_value) != old_value);
|
|
|
|
|
}
|
2009-03-01 01:56:20 +01:00
|
|
|
|
|
2009-02-16 03:28:07 +01:00
|
|
|
|
/*
|
2009-02-23 02:23:16 +01:00
|
|
|
|
* Gets the unoccupied space (= space which is available for windows which were resized by the user)
|
|
|
|
|
* for the given row. This is necessary to render both, customly resized windows and never touched
|
|
|
|
|
* windows correctly, meaning that the aspect ratio will be maintained when opening new windows.
|
2009-02-16 03:28:07 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2009-05-09 17:48:35 +02:00
|
|
|
|
int get_unoccupied_x(Workspace *workspace) {
|
2009-02-23 02:23:16 +01:00
|
|
|
|
int unoccupied = workspace->rect.width;
|
|
|
|
|
float default_factor = ((float)workspace->rect.width / workspace->cols) / workspace->rect.width;
|
2009-02-23 01:41:26 +01:00
|
|
|
|
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("get_unoccupied_x(), starting with %d, default_factor = %f\n", unoccupied, default_factor);
|
2009-02-16 03:28:07 +01:00
|
|
|
|
|
2009-05-09 17:48:35 +02:00
|
|
|
|
for (int cols = 0; cols < workspace->cols; cols++) {
|
|
|
|
|
LOG("width_factor[%d] = %f\n", cols, workspace->width_factor[cols]);
|
|
|
|
|
|
|
|
|
|
if (workspace->width_factor[cols] == 0)
|
|
|
|
|
unoccupied -= workspace->rect.width * default_factor;
|
2009-02-23 02:23:16 +01:00
|
|
|
|
}
|
2009-02-16 03:28:07 +01:00
|
|
|
|
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("unoccupied space: %d\n", unoccupied);
|
2009-02-23 02:23:16 +01:00
|
|
|
|
return unoccupied;
|
2009-02-16 03:28:07 +01:00
|
|
|
|
}
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
2009-02-23 03:27:59 +01:00
|
|
|
|
/* See get_unoccupied_x() */
|
2009-09-06 16:50:45 +02:00
|
|
|
|
int get_unoccupied_y(Workspace *workspace) {
|
|
|
|
|
int height = workspace->rect.height;
|
|
|
|
|
i3Font *font = load_font(global_conn, config.font);
|
|
|
|
|
|
|
|
|
|
/* Reserve space for dock clients */
|
|
|
|
|
Client *client;
|
|
|
|
|
SLIST_FOREACH(client, &(workspace->screen->dock_clients), dock_clients)
|
|
|
|
|
height -= client->desired_height;
|
|
|
|
|
|
|
|
|
|
/* Space for the internal bar */
|
|
|
|
|
height -= (font->height + 6);
|
|
|
|
|
|
|
|
|
|
int unoccupied = height;
|
|
|
|
|
float default_factor = ((float)height / workspace->rows) / height;
|
2009-02-23 03:27:59 +01:00
|
|
|
|
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("get_unoccupied_y(), starting with %d, default_factor = %f\n", unoccupied, default_factor);
|
2009-02-23 03:27:59 +01:00
|
|
|
|
|
2009-05-09 17:48:35 +02:00
|
|
|
|
for (int rows = 0; rows < workspace->rows; rows++) {
|
|
|
|
|
LOG("height_factor[%d] = %f\n", rows, workspace->height_factor[rows]);
|
|
|
|
|
if (workspace->height_factor[rows] == 0)
|
2009-09-06 16:50:45 +02:00
|
|
|
|
unoccupied -= height * default_factor;
|
2009-02-23 03:27:59 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("unoccupied space: %d\n", unoccupied);
|
2009-02-23 03:27:59 +01:00
|
|
|
|
return unoccupied;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-03 02:28:26 +01:00
|
|
|
|
/*
|
|
|
|
|
* Redecorates the given client correctly by checking if it’s in a stacking container and
|
|
|
|
|
* re-rendering the stack window or just calling decorate_window if it’s not in a stacking
|
|
|
|
|
* container.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void redecorate_window(xcb_connection_t *conn, Client *client) {
|
2009-08-22 09:07:23 +02:00
|
|
|
|
if (client->container != NULL &&
|
|
|
|
|
(client->container->mode == MODE_STACK ||
|
|
|
|
|
client->container->mode == MODE_TABBED)) {
|
2009-03-03 02:28:26 +01:00
|
|
|
|
render_container(conn, client->container);
|
2009-03-06 06:06:19 +01:00
|
|
|
|
/* We clear the frame to generate exposure events, because the color used
|
|
|
|
|
in drawing may be different */
|
|
|
|
|
xcb_clear_area(conn, true, client->frame, 0, 0, client->rect.width, client->rect.height);
|
2009-08-22 09:07:23 +02:00
|
|
|
|
} else decorate_window(conn, client, client->frame, client->titlegc, 0, 0);
|
2009-03-05 20:07:57 +01:00
|
|
|
|
xcb_flush(conn);
|
2009-03-03 02:28:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-13 19:04:45 +01:00
|
|
|
|
/*
|
2009-02-24 14:18:08 +01:00
|
|
|
|
* (Re-)draws window decorations for a given Client onto the given drawable/graphic context.
|
|
|
|
|
* When in stacking mode, the window decorations are drawn onto an own window.
|
2009-02-13 19:04:45 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2009-08-22 09:07:23 +02:00
|
|
|
|
void decorate_window(xcb_connection_t *conn, Client *client, xcb_drawable_t drawable,
|
|
|
|
|
xcb_gcontext_t gc, int offset_x, int offset_y) {
|
2009-02-25 00:50:30 +01:00
|
|
|
|
i3Font *font = load_font(conn, config.font);
|
2009-03-06 06:06:19 +01:00
|
|
|
|
int decoration_height = font->height + 2 + 2;
|
2009-06-01 15:14:45 +02:00
|
|
|
|
struct Colortriple *color;
|
2009-08-05 19:59:58 +02:00
|
|
|
|
Client *last_focused;
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-02-23 03:44:10 +01:00
|
|
|
|
/* Clients without a container (docks) won’t get decorated */
|
2009-05-23 16:34:03 +02:00
|
|
|
|
if (client->dock)
|
2009-02-23 03:44:10 +01:00
|
|
|
|
return;
|
|
|
|
|
|
2009-08-05 19:59:58 +02:00
|
|
|
|
last_focused = SLIST_FIRST(&(client->workspace->focus_stack));
|
2009-09-06 22:40:11 +02:00
|
|
|
|
/* Is the window urgent? */
|
|
|
|
|
if (client->urgent)
|
|
|
|
|
color = &(config.client.urgent);
|
|
|
|
|
else {
|
|
|
|
|
if (client_is_floating(client)) {
|
|
|
|
|
if (last_focused == client)
|
2009-08-05 19:59:58 +02:00
|
|
|
|
color = &(config.client.focused);
|
2009-09-06 22:40:11 +02:00
|
|
|
|
else color = &(config.client.unfocused);
|
|
|
|
|
} else {
|
|
|
|
|
if (client->container->currently_focused == client) {
|
|
|
|
|
/* Distinguish if the window is currently focused… */
|
|
|
|
|
if (last_focused == client && c_ws == client->workspace)
|
|
|
|
|
color = &(config.client.focused);
|
|
|
|
|
/* …or if it is the focused window in a not focused container */
|
|
|
|
|
else color = &(config.client.focused_inactive);
|
|
|
|
|
} else color = &(config.client.unfocused);
|
|
|
|
|
}
|
2009-08-05 19:59:58 +02:00
|
|
|
|
}
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
|
|
|
|
/* Our plan is the following:
|
2009-06-01 15:14:45 +02:00
|
|
|
|
- Draw a rect around the whole client in color->background
|
2009-02-14 02:33:31 +01:00
|
|
|
|
- Draw two lines in a lighter color
|
|
|
|
|
- Draw the window’s title
|
|
|
|
|
*/
|
|
|
|
|
|
2009-03-01 03:55:29 +01:00
|
|
|
|
/* Draw a rectangle in background color around the window */
|
2009-09-02 21:59:31 +02:00
|
|
|
|
if (client->borderless && (client->container == NULL ||
|
|
|
|
|
(client->container->mode != MODE_STACK &&
|
|
|
|
|
client->container->mode != MODE_TABBED)))
|
2009-08-29 11:03:14 +02:00
|
|
|
|
xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
|
|
|
|
|
else xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, color->background);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-03-06 06:06:19 +01:00
|
|
|
|
/* In stacking mode, we only render the rect for this specific decoration */
|
2009-08-22 09:07:23 +02:00
|
|
|
|
if (client->container != NULL && (client->container->mode == MODE_STACK || client->container->mode == MODE_TABBED)) {
|
2009-03-06 06:06:19 +01:00
|
|
|
|
/* We need to use the container’s width because it is the more recent value - when
|
|
|
|
|
in stacking mode, clients get reconfigured only on demand (the not active client
|
|
|
|
|
is not reconfigured), so the client’s rect.width would be wrong */
|
2009-08-22 09:07:23 +02:00
|
|
|
|
xcb_rectangle_t rect = {offset_x, offset_y,
|
|
|
|
|
offset_x + client->container->width,
|
|
|
|
|
offset_y + decoration_height };
|
2009-05-23 16:34:03 +02:00
|
|
|
|
xcb_poly_fill_rectangle(conn, drawable, gc, 1, &rect);
|
|
|
|
|
} else {
|
|
|
|
|
xcb_rectangle_t rect = {0, 0, client->rect.width, client->rect.height};
|
2009-03-06 06:06:19 +01:00
|
|
|
|
xcb_poly_fill_rectangle(conn, drawable, gc, 1, &rect);
|
|
|
|
|
|
|
|
|
|
/* Draw the inner background to have a black frame around clients (such as mplayer)
|
|
|
|
|
which cannot be resized exactly in our frames and therefore are centered */
|
|
|
|
|
xcb_change_gc_single(conn, client->titlegc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
|
2009-11-08 13:04:14 +01:00
|
|
|
|
if (client->titlebar_position == TITLEBAR_OFF) {
|
|
|
|
|
xcb_rectangle_t crect = {1, 1, client->rect.width - (1 + 1), client->rect.height - (1 + 1)};
|
|
|
|
|
xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
|
|
|
|
|
} else {
|
|
|
|
|
xcb_rectangle_t crect = {2, decoration_height,
|
|
|
|
|
client->rect.width - (2 + 2), client->rect.height - 2 - decoration_height};
|
|
|
|
|
xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
|
|
|
|
|
}
|
2009-03-06 06:06:19 +01:00
|
|
|
|
}
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-08-05 18:33:44 +02:00
|
|
|
|
if (client->titlebar_position != TITLEBAR_OFF) {
|
|
|
|
|
/* Draw the lines */
|
2009-08-22 09:07:23 +02:00
|
|
|
|
xcb_draw_line(conn, drawable, gc, color->border, offset_x, offset_y, offset_x + client->rect.width, offset_y);
|
2009-08-08 20:20:06 +02:00
|
|
|
|
if ((client->container == NULL ||
|
2009-08-22 09:07:23 +02:00
|
|
|
|
(client->container->mode != MODE_STACK &&
|
|
|
|
|
client->container->mode != MODE_TABBED) ||
|
2009-08-08 20:20:06 +02:00
|
|
|
|
CIRCLEQ_NEXT_OR_NULL(&(client->container->clients), client, clients) == NULL))
|
2009-08-22 09:07:23 +02:00
|
|
|
|
xcb_draw_line(conn, drawable, gc, color->border,
|
|
|
|
|
offset_x + 2, /* x */
|
|
|
|
|
offset_y + font->height + 3, /* y */
|
|
|
|
|
offset_x + client->rect.width - 3, /* to_x */
|
|
|
|
|
offset_y + font->height + 3 /* to_y */);
|
2009-08-05 18:33:44 +02:00
|
|
|
|
}
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
2009-03-08 19:07:33 +01:00
|
|
|
|
/* If the client has a title, we draw it */
|
2009-11-15 17:35:15 +01:00
|
|
|
|
if (client->name != NULL &&
|
|
|
|
|
((client->container != NULL &&
|
|
|
|
|
client->container->mode != MODE_DEFAULT) ||
|
|
|
|
|
client->titlebar_position != TITLEBAR_OFF)) {
|
2009-03-08 19:07:33 +01:00
|
|
|
|
/* Draw the font */
|
|
|
|
|
uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND | XCB_GC_FONT;
|
2009-06-01 15:14:45 +02:00
|
|
|
|
uint32_t values[] = { color->text, color->background, font->id };
|
2009-03-08 19:07:33 +01:00
|
|
|
|
xcb_change_gc(conn, gc, mask, values);
|
|
|
|
|
|
2009-03-11 21:31:54 +01:00
|
|
|
|
/* name_len == -1 means this is a legacy application which does not specify _NET_WM_NAME,
|
|
|
|
|
and we don’t handle the old window name (COMPOUND_TEXT) but only _NET_WM_NAME, which
|
|
|
|
|
is UTF-8 */
|
|
|
|
|
if (client->name_len == -1)
|
2009-08-22 09:07:23 +02:00
|
|
|
|
xcb_image_text_8(conn, strlen(client->name), drawable, gc, offset_x + 3 /* X */,
|
|
|
|
|
offset_y + font->height /* Y = baseline of font */, client->name);
|
2009-03-11 21:31:54 +01:00
|
|
|
|
else
|
2009-08-22 09:07:23 +02:00
|
|
|
|
xcb_image_text_16(conn, client->name_len, drawable, gc, offset_x + 3 /* X */,
|
|
|
|
|
offset_y + font->height /* Y = baseline of font */, (xcb_char2b_t*)client->name);
|
2009-03-08 19:07:33 +01:00
|
|
|
|
}
|
2009-02-13 19:04:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-23 00:18:13 +01:00
|
|
|
|
/*
|
|
|
|
|
* Pushes the client’s x and y coordinates to X11
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-05-23 16:34:03 +02:00
|
|
|
|
void reposition_client(xcb_connection_t *conn, Client *client) {
|
2009-06-24 17:12:12 +02:00
|
|
|
|
i3Screen *screen;
|
|
|
|
|
|
2009-03-10 20:56:25 +01:00
|
|
|
|
LOG("frame 0x%08x needs to be pushed to %dx%d\n", client->frame, client->rect.x, client->rect.y);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
/* Note: We can use a pointer to client->x like an array of uint32_ts
|
|
|
|
|
because it is followed by client->y by definition */
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_configure_window(conn, client->frame, XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y, &(client->rect.x));
|
2009-06-24 17:12:12 +02:00
|
|
|
|
|
|
|
|
|
if (!client_is_floating(client))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* If the client is floating, we need to check if we moved it to a different workspace */
|
|
|
|
|
if (client->workspace->screen == (screen = get_screen_containing(client->rect.x, client->rect.y)))
|
|
|
|
|
return;
|
|
|
|
|
|
2009-06-24 19:22:09 +02:00
|
|
|
|
if (screen == NULL) {
|
|
|
|
|
LOG("Boundary checking disabled, no screen found for (%d, %d)\n", client->rect.x, client->rect.y);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-24 17:12:12 +02:00
|
|
|
|
LOG("Client is on workspace %p with screen %p\n", client->workspace, client->workspace->screen);
|
|
|
|
|
LOG("but screen at %d, %d is %p\n", client->rect.x, client->rect.y, screen);
|
2009-09-29 19:45:41 +02:00
|
|
|
|
floating_assign_to_workspace(client, screen->current_workspace);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2009-08-08 21:31:42 +02:00
|
|
|
|
* Pushes the client’s width/height to X11 and resizes the child window. This
|
|
|
|
|
* function also updates the client’s position, so if you work on tiling clients
|
|
|
|
|
* only, you can use this function instead of separate calls to reposition_client
|
|
|
|
|
* and resize_client to reduce flickering.
|
2009-02-23 00:18:13 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2009-05-23 16:34:03 +02:00
|
|
|
|
void resize_client(xcb_connection_t *conn, Client *client) {
|
2009-03-04 15:45:12 +01:00
|
|
|
|
i3Font *font = load_font(conn, config.font);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
|
2009-08-08 21:31:42 +02:00
|
|
|
|
LOG("frame 0x%08x needs to be pushed to %dx%d\n", client->frame, client->rect.x, client->rect.y);
|
2009-03-10 20:56:25 +01:00
|
|
|
|
LOG("resizing client 0x%08x to %d x %d\n", client->frame, client->rect.width, client->rect.height);
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_configure_window(conn, client->frame,
|
2009-08-08 21:31:42 +02:00
|
|
|
|
XCB_CONFIG_WINDOW_X |
|
|
|
|
|
XCB_CONFIG_WINDOW_Y |
|
|
|
|
|
XCB_CONFIG_WINDOW_WIDTH |
|
|
|
|
|
XCB_CONFIG_WINDOW_HEIGHT,
|
|
|
|
|
&(client->rect.x));
|
2009-02-23 00:18:13 +01:00
|
|
|
|
|
|
|
|
|
/* Adjust the position of the child inside its frame.
|
|
|
|
|
* The coordinates of the child are relative to its frame, we
|
|
|
|
|
* add a border of 2 pixel to each value */
|
|
|
|
|
uint32_t mask = XCB_CONFIG_WINDOW_X |
|
|
|
|
|
XCB_CONFIG_WINDOW_Y |
|
|
|
|
|
XCB_CONFIG_WINDOW_WIDTH |
|
|
|
|
|
XCB_CONFIG_WINDOW_HEIGHT;
|
2009-03-03 01:14:11 +01:00
|
|
|
|
Rect *rect = &(client->child_rect);
|
2009-03-10 20:56:25 +01:00
|
|
|
|
switch ((client->container != NULL ? client->container->mode : MODE_DEFAULT)) {
|
2009-03-01 03:55:29 +01:00
|
|
|
|
case MODE_STACK:
|
2009-08-22 09:07:23 +02:00
|
|
|
|
case MODE_TABBED:
|
2009-03-03 01:14:11 +01:00
|
|
|
|
rect->x = 2;
|
|
|
|
|
rect->y = 0;
|
|
|
|
|
rect->width = client->rect.width - (2 + 2);
|
|
|
|
|
rect->height = client->rect.height - 2;
|
2009-03-01 03:55:29 +01:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2009-08-05 18:33:44 +02:00
|
|
|
|
if (client->titlebar_position == TITLEBAR_OFF && client->borderless) {
|
2009-03-03 01:14:11 +01:00
|
|
|
|
rect->x = 0;
|
|
|
|
|
rect->y = 0;
|
|
|
|
|
rect->width = client->rect.width;
|
|
|
|
|
rect->height = client->rect.height;
|
2009-08-05 18:33:44 +02:00
|
|
|
|
} else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless) {
|
|
|
|
|
rect->x = 1;
|
|
|
|
|
rect->y = 1;
|
|
|
|
|
rect->width = client->rect.width - 1 - 1;
|
|
|
|
|
rect->height = client->rect.height - 1 - 1;
|
2009-03-01 03:55:29 +01:00
|
|
|
|
} else {
|
2009-03-03 01:14:11 +01:00
|
|
|
|
rect->x = 2;
|
|
|
|
|
rect->y = font->height + 2 + 2;
|
|
|
|
|
rect->width = client->rect.width - (2 + 2);
|
|
|
|
|
rect->height = client->rect.height - ((font->height + 2 + 2) + 2);
|
2009-03-01 03:55:29 +01:00
|
|
|
|
}
|
|
|
|
|
break;
|
2009-02-23 00:18:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-26 13:47:48 +02:00
|
|
|
|
rect->width -= (2 * client->border_width);
|
|
|
|
|
rect->height -= (2 * client->border_width);
|
|
|
|
|
|
2009-03-06 06:06:19 +01:00
|
|
|
|
/* Obey the ratio, if any */
|
|
|
|
|
if (client->proportional_height != 0 &&
|
|
|
|
|
client->proportional_width != 0) {
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("proportional height = %d, width = %d\n", client->proportional_height, client->proportional_width);
|
2009-03-06 06:06:19 +01:00
|
|
|
|
double new_height = rect->height + 1;
|
|
|
|
|
int new_width = rect->width;
|
|
|
|
|
|
|
|
|
|
while (new_height > rect->height) {
|
|
|
|
|
new_height = ((double)client->proportional_height / client->proportional_width) * new_width;
|
|
|
|
|
|
|
|
|
|
if (new_height > rect->height)
|
|
|
|
|
new_width--;
|
|
|
|
|
}
|
|
|
|
|
/* Center the window */
|
2009-03-15 17:35:16 +01:00
|
|
|
|
rect->y += ceil(rect->height / 2) - floor(new_height / 2);
|
|
|
|
|
rect->x += ceil(rect->width / 2) - floor(new_width / 2);
|
2009-03-06 06:06:19 +01:00
|
|
|
|
|
|
|
|
|
rect->height = new_height;
|
|
|
|
|
rect->width = new_width;
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("new_height = %f, new_width = %d\n", new_height, new_width);
|
2009-03-06 06:06:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-08-11 14:08:04 +02:00
|
|
|
|
if (client->height_increment > 1) {
|
|
|
|
|
int old_height = rect->height;
|
2009-08-23 21:49:38 +02:00
|
|
|
|
rect->height -= (rect->height - client->base_height) % client->height_increment;
|
2009-08-11 14:08:04 +02:00
|
|
|
|
LOG("Lost %d pixel due to client's height_increment (%d px)\n",
|
|
|
|
|
old_height - rect->height, client->height_increment);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (client->width_increment > 1) {
|
|
|
|
|
int old_width = rect->width;
|
2009-08-23 21:49:38 +02:00
|
|
|
|
rect->width -= (rect->width - client->base_width) % client->width_increment;
|
2009-08-11 14:08:04 +02:00
|
|
|
|
LOG("Lost %d pixel due to client's width_increment (%d px)\n",
|
|
|
|
|
old_width - rect->width, client->width_increment);
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-06 06:46:43 +01:00
|
|
|
|
LOG("child will be at %dx%d with size %dx%d\n", rect->x, rect->y, rect->width, rect->height);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_configure_window(conn, client->child, mask, &(rect->x));
|
2009-03-03 01:14:11 +01:00
|
|
|
|
|
2009-04-11 22:37:48 +02:00
|
|
|
|
/* After configuring a child window we need to fake a configure_notify_event (see ICCCM 4.2.3).
|
|
|
|
|
* This is necessary to inform the client of its position relative to the root window,
|
|
|
|
|
* not relative to its frame (as done in the configure_notify_event by the x server). */
|
|
|
|
|
fake_absolute_configure_notify(conn, client);
|
2009-08-23 21:49:38 +02:00
|
|
|
|
|
|
|
|
|
/* Force redrawing after resizing the window because any now lost
|
|
|
|
|
* pixels could contain old garbage. */
|
|
|
|
|
xcb_expose_event_t generated;
|
|
|
|
|
generated.window = client->frame;
|
|
|
|
|
generated.count = 0;
|
|
|
|
|
handle_expose_event(NULL, conn, &generated);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-24 00:30:04 +01:00
|
|
|
|
/*
|
|
|
|
|
* Renders the given container. Is called by render_layout() or individually (for example
|
|
|
|
|
* when focus changes in a stacking container)
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-04 15:45:12 +01:00
|
|
|
|
void render_container(xcb_connection_t *conn, Container *container) {
|
2009-02-14 02:33:31 +01:00
|
|
|
|
Client *client;
|
2009-02-24 00:30:04 +01:00
|
|
|
|
int num_clients = 0, current_client = 0;
|
|
|
|
|
|
|
|
|
|
CIRCLEQ_FOREACH(client, &(container->clients), clients)
|
|
|
|
|
num_clients++;
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
|
|
|
|
if (container->mode == MODE_DEFAULT) {
|
|
|
|
|
CIRCLEQ_FOREACH(client, &(container->clients), clients) {
|
2009-03-07 05:49:13 +01:00
|
|
|
|
/* If the client is in fullscreen mode, it does not get reconfigured */
|
|
|
|
|
if (container->workspace->fullscreen_client == client) {
|
|
|
|
|
current_client++;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-23 17:23:57 +01:00
|
|
|
|
/* Check if we changed client->x or client->y by updating it.
|
2009-02-14 02:19:04 +01:00
|
|
|
|
* Note the bitwise OR instead of logical OR to force evaluation of both statements */
|
2009-02-14 08:38:07 +01:00
|
|
|
|
if (client->force_reconfigure |
|
2009-03-05 16:23:26 +01:00
|
|
|
|
update_if_necessary(&(client->rect.x), container->x) |
|
|
|
|
|
update_if_necessary(&(client->rect.y), container->y +
|
2009-08-08 21:31:42 +02:00
|
|
|
|
(container->height / num_clients) * current_client) |
|
2009-03-05 16:23:26 +01:00
|
|
|
|
update_if_necessary(&(client->rect.width), container->width) |
|
|
|
|
|
update_if_necessary(&(client->rect.height), container->height / num_clients))
|
2009-03-04 15:45:12 +01:00
|
|
|
|
resize_client(conn, client);
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
2009-08-08 21:31:42 +02:00
|
|
|
|
/* TODO: vertical default layout */
|
|
|
|
|
|
2009-03-03 01:14:11 +01:00
|
|
|
|
client->force_reconfigure = false;
|
2009-02-14 08:38:07 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
current_client++;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2009-03-04 15:45:12 +01:00
|
|
|
|
i3Font *font = load_font(conn, config.font);
|
2009-02-24 00:30:04 +01:00
|
|
|
|
int decoration_height = (font->height + 2 + 2);
|
|
|
|
|
struct Stack_Window *stack_win = &(container->stack_win);
|
2009-08-22 09:07:23 +02:00
|
|
|
|
/* The size for each tab (width), necessary as a separate variable
|
|
|
|
|
* because num_clients gets fixed to 1 in tabbed mode. */
|
|
|
|
|
int size_each = (num_clients == 0 ? container->width : container->width / num_clients);
|
2009-09-22 18:07:59 +02:00
|
|
|
|
int stack_lines = num_clients;
|
2009-02-24 00:30:04 +01:00
|
|
|
|
|
2009-02-28 01:38:53 +01:00
|
|
|
|
/* Check if we need to remap our stack title window, it gets unmapped when the container
|
|
|
|
|
is empty in src/handlers.c:unmap_notify() */
|
2009-08-22 09:07:23 +02:00
|
|
|
|
if (stack_win->rect.height == 0 && num_clients > 0) {
|
|
|
|
|
LOG("remapping stack win\n");
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_map_window(conn, stack_win->window);
|
2009-08-22 09:07:23 +02:00
|
|
|
|
} else LOG("not remapping stackwin, height = %d, num_clients = %d\n",
|
|
|
|
|
stack_win->rect.height, num_clients);
|
|
|
|
|
|
|
|
|
|
if (container->mode == MODE_TABBED) {
|
|
|
|
|
/* By setting num_clients to 1 we force that the stack window will be only one line
|
|
|
|
|
* high. The rest of the code is useful in both cases. */
|
|
|
|
|
LOG("tabbed mode, setting num_clients = 1\n");
|
2009-09-22 18:07:59 +02:00
|
|
|
|
if (stack_lines > 1)
|
|
|
|
|
stack_lines = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (container->stack_limit == STACK_LIMIT_COLS) {
|
|
|
|
|
stack_lines = ceil((float)num_clients / container->stack_limit_value);
|
|
|
|
|
} else if (container->stack_limit == STACK_LIMIT_ROWS) {
|
|
|
|
|
stack_lines = min(num_clients, container->stack_limit_value);
|
2009-08-22 09:07:23 +02:00
|
|
|
|
}
|
2009-02-28 01:38:53 +01:00
|
|
|
|
|
2009-02-24 00:30:04 +01:00
|
|
|
|
/* Check if we need to reconfigure our stack title window */
|
2009-03-05 16:23:26 +01:00
|
|
|
|
if (update_if_necessary(&(stack_win->rect.x), container->x) |
|
|
|
|
|
update_if_necessary(&(stack_win->rect.y), container->y) |
|
|
|
|
|
update_if_necessary(&(stack_win->rect.width), container->width) |
|
2009-09-22 18:07:59 +02:00
|
|
|
|
update_if_necessary(&(stack_win->rect.height), decoration_height * stack_lines)) {
|
2009-03-04 21:49:29 +01:00
|
|
|
|
|
2009-03-07 05:49:13 +01:00
|
|
|
|
/* Configuration can happen in two slightly different ways:
|
|
|
|
|
|
|
|
|
|
If there is no client in fullscreen mode, 5 parameters are passed
|
|
|
|
|
(x, y, width, height, stack mode is set to above which means top-most position).
|
|
|
|
|
|
|
|
|
|
If there is a fullscreen client, the fourth parameter is set to to the
|
|
|
|
|
fullscreen window as sibling and the stack mode is set to below, which means
|
|
|
|
|
that the stack_window will be placed just below the sibling, that is, under
|
|
|
|
|
the fullscreen window.
|
|
|
|
|
*/
|
2009-03-04 21:49:29 +01:00
|
|
|
|
uint32_t values[] = { stack_win->rect.x, stack_win->rect.y,
|
|
|
|
|
stack_win->rect.width, stack_win->rect.height,
|
2009-03-07 05:49:13 +01:00
|
|
|
|
XCB_STACK_MODE_ABOVE, XCB_STACK_MODE_BELOW };
|
|
|
|
|
uint32_t mask = XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
|
|
|
|
|
XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT |
|
|
|
|
|
XCB_CONFIG_WINDOW_STACK_MODE;
|
|
|
|
|
|
2009-06-19 23:18:43 +02:00
|
|
|
|
/* Raise the stack window, but keep it below the first floating client
|
|
|
|
|
* and below the fullscreen client (if any) */
|
|
|
|
|
Client *first_floating = TAILQ_FIRST(&(container->workspace->floating_clients));
|
|
|
|
|
if (first_floating != TAILQ_END(&(container->workspace->floating_clients))) {
|
|
|
|
|
mask |= XCB_CONFIG_WINDOW_SIBLING;
|
|
|
|
|
values[4] = first_floating->frame;
|
|
|
|
|
} else if (container->workspace->fullscreen_client != NULL) {
|
2009-03-07 05:49:13 +01:00
|
|
|
|
mask |= XCB_CONFIG_WINDOW_SIBLING;
|
|
|
|
|
values[4] = container->workspace->fullscreen_client->frame;
|
|
|
|
|
}
|
2009-02-24 00:30:04 +01:00
|
|
|
|
|
2009-03-07 05:49:13 +01:00
|
|
|
|
xcb_configure_window(conn, stack_win->window, mask, values);
|
2009-02-28 13:03:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-07-17 18:32:40 +02:00
|
|
|
|
/* Prepare the pixmap for usage */
|
|
|
|
|
cached_pixmap_prepare(conn, &(stack_win->pixmap));
|
|
|
|
|
|
2009-09-22 18:07:59 +02:00
|
|
|
|
int current_row = 0, current_col = 0;
|
|
|
|
|
int wrap = 0;
|
|
|
|
|
|
|
|
|
|
if (container->stack_limit == STACK_LIMIT_COLS) {
|
|
|
|
|
/* wrap stores the number of rows after which we will
|
|
|
|
|
* wrap to a new column. */
|
|
|
|
|
wrap = ceil((float)num_clients / container->stack_limit_value);
|
|
|
|
|
} else if (container->stack_limit == STACK_LIMIT_ROWS) {
|
|
|
|
|
/* When limiting rows, the wrap variable serves a
|
|
|
|
|
* slightly different purpose: it holds the number of
|
|
|
|
|
* pixels which each client will get. This is constant
|
|
|
|
|
* during the following loop, so it saves us some
|
|
|
|
|
* divisions and ceil()ing. */
|
|
|
|
|
wrap = (stack_win->rect.width / ceil((float)num_clients / container->stack_limit_value));
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-28 02:36:40 +01:00
|
|
|
|
/* Render the decorations of all clients */
|
2009-03-04 22:41:04 +01:00
|
|
|
|
CIRCLEQ_FOREACH(client, &(container->clients), clients) {
|
2009-03-07 05:49:13 +01:00
|
|
|
|
/* If the client is in fullscreen mode, it does not get reconfigured */
|
|
|
|
|
if (container->workspace->fullscreen_client == client) {
|
|
|
|
|
current_client++;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 22:41:04 +01:00
|
|
|
|
/* Check if we changed client->x or client->y by updating it.
|
2009-08-22 09:07:23 +02:00
|
|
|
|
* Note the bitwise OR instead of logical OR to force evaluation of all statements */
|
2009-03-04 22:41:04 +01:00
|
|
|
|
if (client->force_reconfigure |
|
2009-03-05 16:23:26 +01:00
|
|
|
|
update_if_necessary(&(client->rect.x), container->x) |
|
2009-09-22 18:07:59 +02:00
|
|
|
|
update_if_necessary(&(client->rect.y), container->y + (decoration_height * stack_lines)) |
|
2009-03-05 16:23:26 +01:00
|
|
|
|
update_if_necessary(&(client->rect.width), container->width) |
|
2009-09-22 18:07:59 +02:00
|
|
|
|
update_if_necessary(&(client->rect.height), container->height - (decoration_height * stack_lines)))
|
2009-03-04 22:41:04 +01:00
|
|
|
|
resize_client(conn, client);
|
|
|
|
|
|
|
|
|
|
client->force_reconfigure = false;
|
|
|
|
|
|
2009-08-22 09:07:23 +02:00
|
|
|
|
int offset_x = 0;
|
|
|
|
|
int offset_y = 0;
|
2009-09-22 18:07:59 +02:00
|
|
|
|
if (container->mode == MODE_STACK) {
|
|
|
|
|
if (container->stack_limit == STACK_LIMIT_COLS) {
|
|
|
|
|
offset_x = current_col * (stack_win->rect.width / container->stack_limit_value);
|
|
|
|
|
offset_y = current_row * decoration_height;
|
|
|
|
|
current_row++;
|
|
|
|
|
if ((current_row % wrap) == 0) {
|
|
|
|
|
current_col++;
|
|
|
|
|
current_row = 0;
|
|
|
|
|
}
|
|
|
|
|
} else if (container->stack_limit == STACK_LIMIT_ROWS) {
|
|
|
|
|
offset_x = current_col * wrap;
|
|
|
|
|
offset_y = current_row * decoration_height;
|
|
|
|
|
current_row++;
|
|
|
|
|
if ((current_row % container->stack_limit_value) == 0) {
|
|
|
|
|
current_col++;
|
|
|
|
|
current_row = 0;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
offset_y = current_client * decoration_height;
|
|
|
|
|
}
|
|
|
|
|
current_client++;
|
|
|
|
|
} else if (container->mode == MODE_TABBED)
|
2009-08-22 09:07:23 +02:00
|
|
|
|
offset_x = current_client++ * size_each;
|
2009-07-17 18:32:40 +02:00
|
|
|
|
decorate_window(conn, client, stack_win->pixmap.id, stack_win->pixmap.gc,
|
2009-08-22 09:07:23 +02:00
|
|
|
|
offset_x, offset_y);
|
2009-03-04 22:41:04 +01:00
|
|
|
|
}
|
2009-07-17 18:32:40 +02:00
|
|
|
|
|
2009-09-22 18:07:59 +02:00
|
|
|
|
/* Check if we need to fill one column because of an uneven
|
|
|
|
|
* amount of windows */
|
|
|
|
|
if (container->mode == MODE_STACK) {
|
|
|
|
|
if (container->stack_limit == STACK_LIMIT_COLS && (current_col % 2) != 0) {
|
|
|
|
|
xcb_change_gc_single(conn, stack_win->pixmap.gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
|
|
|
|
|
|
|
|
|
|
int offset_x = current_col * (stack_win->rect.width / container->stack_limit_value);
|
|
|
|
|
int offset_y = current_row * decoration_height;
|
|
|
|
|
xcb_rectangle_t rect = {offset_x, offset_y,
|
|
|
|
|
offset_x + container->width,
|
|
|
|
|
offset_y + decoration_height };
|
|
|
|
|
xcb_poly_fill_rectangle(conn, stack_win->pixmap.id, stack_win->pixmap.gc, 1, &rect);
|
|
|
|
|
} else if (container->stack_limit == STACK_LIMIT_ROWS && (current_row % 2) != 0) {
|
|
|
|
|
xcb_change_gc_single(conn, stack_win->pixmap.gc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
|
|
|
|
|
|
|
|
|
|
int offset_x = current_col * wrap;
|
|
|
|
|
int offset_y = current_row * decoration_height;
|
|
|
|
|
xcb_rectangle_t rect = {offset_x, offset_y,
|
|
|
|
|
offset_x + container->width,
|
|
|
|
|
offset_y + decoration_height };
|
|
|
|
|
xcb_poly_fill_rectangle(conn, stack_win->pixmap.id, stack_win->pixmap.gc, 1, &rect);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-17 18:32:40 +02:00
|
|
|
|
xcb_copy_area(conn, stack_win->pixmap.id, stack_win->window, stack_win->pixmap.gc,
|
|
|
|
|
0, 0, 0, 0, stack_win->rect.width, stack_win->rect.height);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
}
|
2009-02-13 19:04:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 15:45:12 +01:00
|
|
|
|
static void render_bars(xcb_connection_t *conn, Workspace *r_ws, int width, int *height) {
|
2009-02-23 00:18:13 +01:00
|
|
|
|
Client *client;
|
2009-04-11 14:29:15 +02:00
|
|
|
|
SLIST_FOREACH(client, &(r_ws->screen->dock_clients), dock_clients) {
|
2009-03-10 20:56:25 +01:00
|
|
|
|
LOG("client is at %d, should be at %d\n", client->rect.y, *height);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
if (client->force_reconfigure |
|
2009-08-08 19:51:51 +02:00
|
|
|
|
update_if_necessary(&(client->rect.x), r_ws->rect.x) |
|
2009-03-05 16:23:26 +01:00
|
|
|
|
update_if_necessary(&(client->rect.y), *height))
|
2009-03-04 15:45:12 +01:00
|
|
|
|
reposition_client(conn, client);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
|
|
|
|
|
if (client->force_reconfigure |
|
2009-03-05 16:23:26 +01:00
|
|
|
|
update_if_necessary(&(client->rect.width), width) |
|
|
|
|
|
update_if_necessary(&(client->rect.height), client->desired_height))
|
2009-03-04 15:45:12 +01:00
|
|
|
|
resize_client(conn, client);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
|
|
|
|
|
client->force_reconfigure = false;
|
2009-04-11 14:08:19 +02:00
|
|
|
|
LOG("desired_height = %d\n", client->desired_height);
|
2009-03-04 12:09:43 +01:00
|
|
|
|
*height += client->desired_height;
|
2009-02-23 00:18:13 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-04 15:45:12 +01:00
|
|
|
|
static void render_internal_bar(xcb_connection_t *conn, Workspace *r_ws, int width, int height) {
|
|
|
|
|
i3Font *font = load_font(conn, config.font);
|
2009-03-04 12:09:43 +01:00
|
|
|
|
i3Screen *screen = r_ws->screen;
|
|
|
|
|
enum { SET_NORMAL = 0, SET_FOCUSED = 1 };
|
|
|
|
|
|
|
|
|
|
/* Fill the whole bar in black */
|
2009-06-01 15:14:45 +02:00
|
|
|
|
xcb_change_gc_single(conn, screen->bargc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
|
2009-03-04 12:09:43 +01:00
|
|
|
|
xcb_rectangle_t rect = {0, 0, width, height};
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_poly_fill_rectangle(conn, screen->bar, screen->bargc, 1, &rect);
|
2009-03-04 12:09:43 +01:00
|
|
|
|
|
|
|
|
|
/* Set font */
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_change_gc_single(conn, screen->bargc, XCB_GC_FONT, font->id);
|
2009-03-04 12:09:43 +01:00
|
|
|
|
|
|
|
|
|
int drawn = 0;
|
2009-09-29 19:45:41 +02:00
|
|
|
|
Workspace *ws;
|
|
|
|
|
TAILQ_FOREACH(ws, workspaces, workspaces) {
|
|
|
|
|
if (ws->screen != screen)
|
2009-04-11 14:08:19 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
2009-09-06 22:40:11 +02:00
|
|
|
|
struct Colortriple *color;
|
2009-04-11 14:08:19 +02:00
|
|
|
|
|
2009-09-29 19:45:41 +02:00
|
|
|
|
if (screen->current_workspace == ws)
|
2009-09-06 22:40:11 +02:00
|
|
|
|
color = &(config.bar.focused);
|
|
|
|
|
else if (ws->urgent)
|
|
|
|
|
color = &(config.bar.urgent);
|
|
|
|
|
else color = &(config.bar.unfocused);
|
|
|
|
|
|
2009-07-28 13:55:09 +02:00
|
|
|
|
/* Draw the outer rect */
|
2009-06-01 15:14:45 +02:00
|
|
|
|
xcb_draw_rect(conn, screen->bar, screen->bargc, color->border,
|
2009-07-28 13:55:09 +02:00
|
|
|
|
drawn, /* x */
|
|
|
|
|
1, /* y */
|
2009-08-02 21:32:35 +02:00
|
|
|
|
ws->text_width + 5 + 5, /* width = text width + 5 px left + 5px right */
|
2009-07-28 13:55:09 +02:00
|
|
|
|
height - 2 /* height = max. height - 1 px upper and 1 px bottom border */);
|
|
|
|
|
|
|
|
|
|
/* Draw the background of this rect */
|
2009-06-01 15:14:45 +02:00
|
|
|
|
xcb_draw_rect(conn, screen->bar, screen->bargc, color->background,
|
2009-07-28 13:55:09 +02:00
|
|
|
|
drawn + 1,
|
|
|
|
|
2,
|
2009-08-02 21:32:35 +02:00
|
|
|
|
ws->text_width + 4 + 4,
|
2009-07-28 13:55:09 +02:00
|
|
|
|
height - 4);
|
2009-04-11 14:08:19 +02:00
|
|
|
|
|
2009-06-01 15:14:45 +02:00
|
|
|
|
xcb_change_gc_single(conn, screen->bargc, XCB_GC_FOREGROUND, color->text);
|
|
|
|
|
xcb_change_gc_single(conn, screen->bargc, XCB_GC_BACKGROUND, color->background);
|
2009-07-28 13:55:09 +02:00
|
|
|
|
xcb_image_text_16(conn, ws->name_len, screen->bar, screen->bargc, drawn + 5 /* X */,
|
|
|
|
|
font->height + 1 /* Y = baseline of font */,
|
|
|
|
|
(xcb_char2b_t*)ws->name);
|
2009-08-02 21:32:35 +02:00
|
|
|
|
drawn += ws->text_width + 12;
|
2009-03-04 12:09:43 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-11 00:20:56 +01:00
|
|
|
|
/*
|
|
|
|
|
* Modifies the event mask of all clients on the given workspace to either ignore or to handle
|
|
|
|
|
* enter notifies. It is handy to ignore notifies because they will be sent when a window is mapped
|
|
|
|
|
* under the cursor, thus when the user didn’t enter the window actively at all.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void ignore_enter_notify_forall(xcb_connection_t *conn, Workspace *workspace, bool ignore_enter_notify) {
|
|
|
|
|
Client *client;
|
|
|
|
|
uint32_t values[1];
|
|
|
|
|
|
2009-09-29 12:26:53 +02:00
|
|
|
|
FOR_TABLE(workspace) {
|
|
|
|
|
if (workspace->table[cols][rows] == NULL)
|
|
|
|
|
continue;
|
|
|
|
|
|
2009-03-11 00:20:56 +01:00
|
|
|
|
CIRCLEQ_FOREACH(client, &(workspace->table[cols][rows]->clients), clients) {
|
|
|
|
|
/* Change event mask for the decorations */
|
|
|
|
|
values[0] = FRAME_EVENT_MASK;
|
|
|
|
|
if (ignore_enter_notify)
|
|
|
|
|
values[0] &= ~(XCB_EVENT_MASK_ENTER_WINDOW);
|
|
|
|
|
xcb_change_window_attributes(conn, client->frame, XCB_CW_EVENT_MASK, values);
|
|
|
|
|
|
|
|
|
|
/* Change event mask for the child itself */
|
|
|
|
|
values[0] = CHILD_EVENT_MASK;
|
|
|
|
|
if (ignore_enter_notify)
|
|
|
|
|
values[0] &= ~(XCB_EVENT_MASK_ENTER_WINDOW);
|
|
|
|
|
xcb_change_window_attributes(conn, client->child, XCB_CW_EVENT_MASK, values);
|
|
|
|
|
}
|
2009-09-29 12:26:53 +02:00
|
|
|
|
}
|
2009-03-11 00:20:56 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-05-09 13:01:23 +02:00
|
|
|
|
/*
|
|
|
|
|
* Renders the given workspace on the given screen
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void render_workspace(xcb_connection_t *conn, i3Screen *screen, Workspace *r_ws) {
|
|
|
|
|
i3Font *font = load_font(conn, config.font);
|
|
|
|
|
int width = r_ws->rect.width;
|
|
|
|
|
int height = r_ws->rect.height;
|
|
|
|
|
|
|
|
|
|
/* Reserve space for dock clients */
|
|
|
|
|
Client *client;
|
|
|
|
|
SLIST_FOREACH(client, &(screen->dock_clients), dock_clients)
|
|
|
|
|
height -= client->desired_height;
|
|
|
|
|
|
|
|
|
|
/* Space for the internal bar */
|
|
|
|
|
height -= (font->height + 6);
|
|
|
|
|
|
|
|
|
|
int xoffset[r_ws->rows];
|
|
|
|
|
int yoffset[r_ws->cols];
|
|
|
|
|
/* Initialize offsets */
|
|
|
|
|
for (int cols = 0; cols < r_ws->cols; cols++)
|
|
|
|
|
yoffset[cols] = r_ws->rect.y;
|
|
|
|
|
for (int rows = 0; rows < r_ws->rows; rows++)
|
|
|
|
|
xoffset[rows] = r_ws->rect.x;
|
|
|
|
|
|
|
|
|
|
ignore_enter_notify_forall(conn, r_ws, true);
|
|
|
|
|
|
|
|
|
|
/* Go through the whole table and render what’s necessary */
|
|
|
|
|
FOR_TABLE(r_ws) {
|
|
|
|
|
Container *container = r_ws->table[cols][rows];
|
2009-09-29 12:26:53 +02:00
|
|
|
|
if (container == NULL)
|
|
|
|
|
continue;
|
2009-09-06 16:50:45 +02:00
|
|
|
|
int single_width = -1, single_height = -1;
|
2009-05-09 13:01:23 +02:00
|
|
|
|
/* Update position of the container */
|
|
|
|
|
container->row = rows;
|
|
|
|
|
container->col = cols;
|
|
|
|
|
container->x = xoffset[rows];
|
|
|
|
|
container->y = yoffset[cols];
|
2009-05-09 18:43:02 +02:00
|
|
|
|
container->width = 0;
|
2009-05-09 13:01:23 +02:00
|
|
|
|
|
2009-05-09 18:43:02 +02:00
|
|
|
|
for (int c = 0; c < container->colspan; c++) {
|
|
|
|
|
if (r_ws->width_factor[cols+c] == 0)
|
|
|
|
|
container->width += (width / r_ws->cols);
|
|
|
|
|
else container->width += get_unoccupied_x(r_ws) * r_ws->width_factor[cols+c];
|
2009-05-09 19:13:14 +02:00
|
|
|
|
|
|
|
|
|
if (single_width == -1)
|
|
|
|
|
single_width = container->width;
|
2009-05-09 18:43:02 +02:00
|
|
|
|
}
|
2009-05-09 13:01:23 +02:00
|
|
|
|
|
2009-09-06 16:50:45 +02:00
|
|
|
|
LOG("height is %d\n", height);
|
|
|
|
|
|
|
|
|
|
container->height = 0;
|
|
|
|
|
|
|
|
|
|
for (int c = 0; c < container->rowspan; c++) {
|
|
|
|
|
if (r_ws->height_factor[rows+c] == 0)
|
|
|
|
|
container->height += (height / r_ws->rows);
|
|
|
|
|
else container->height += get_unoccupied_y(r_ws) * r_ws->height_factor[rows+c];
|
|
|
|
|
|
|
|
|
|
if (single_height == -1)
|
|
|
|
|
single_height = container->height;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-09 13:01:23 +02:00
|
|
|
|
/* Render the container if it is not empty */
|
|
|
|
|
render_container(conn, container);
|
|
|
|
|
|
|
|
|
|
xoffset[rows] += single_width;
|
|
|
|
|
yoffset[cols] += single_height;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ignore_enter_notify_forall(conn, r_ws, false);
|
|
|
|
|
|
|
|
|
|
render_bars(conn, r_ws, width, &height);
|
|
|
|
|
render_internal_bar(conn, r_ws, width, font->height + 6);
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-07 19:02:07 +02:00
|
|
|
|
/*
|
|
|
|
|
* Renders the whole layout, that is: Go through each screen, each workspace, each container
|
|
|
|
|
* and render each client. This also renders the bars.
|
|
|
|
|
*
|
|
|
|
|
* If you don’t need to render *everything*, you should call render_container on the container
|
|
|
|
|
* you want to refresh.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2009-03-04 15:45:12 +01:00
|
|
|
|
void render_layout(xcb_connection_t *conn) {
|
2009-02-15 01:58:09 +01:00
|
|
|
|
i3Screen *screen;
|
2009-02-15 02:30:18 +01:00
|
|
|
|
|
2009-09-27 23:08:27 +02:00
|
|
|
|
if (virtual_screens == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
2009-08-11 15:23:58 +02:00
|
|
|
|
TAILQ_FOREACH(screen, virtual_screens, screens)
|
2009-09-29 19:45:41 +02:00
|
|
|
|
if (screen->current_workspace != NULL)
|
|
|
|
|
render_workspace(conn, screen, screen->current_workspace);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-03-04 15:45:12 +01:00
|
|
|
|
xcb_flush(conn);
|
2009-02-13 19:04:45 +01:00
|
|
|
|
}
|