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-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 "font.h"
|
|
|
|
|
#include "i3.h"
|
|
|
|
|
#include "xcb.h"
|
|
|
|
|
#include "table.h"
|
|
|
|
|
#include "util.h"
|
2009-02-15 01:58:09 +01:00
|
|
|
|
#include "xinerama.h"
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
2009-03-01 01:56:20 +01:00
|
|
|
|
/* This macro copies the old value of the given variable, changes the variable to contain
|
|
|
|
|
th new one and returns true if it changed */
|
|
|
|
|
#define HAS_CHANGED(value, new) (old_value = value, old_value != (value = new))
|
|
|
|
|
|
2009-03-01 22:00:54 +01:00
|
|
|
|
static int 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-02-23 02:23:16 +01:00
|
|
|
|
int get_unoccupied_x(Workspace *workspace, int row) {
|
|
|
|
|
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-02-23 02:23:16 +01:00
|
|
|
|
printf("get_unoccupied_x(), starting with %d, default_factor = %f\n", unoccupied, default_factor);
|
2009-02-16 03:28:07 +01:00
|
|
|
|
|
2009-02-23 02:23:16 +01:00
|
|
|
|
for (int cols = 0; cols < workspace->cols;) {
|
|
|
|
|
Container *con = workspace->table[cols][row];
|
2009-02-24 14:18:08 +01:00
|
|
|
|
printf("width_factor[%d][%d] = %f, colspan = %d\n", cols, row, con->width_factor, con->colspan);
|
2009-02-23 02:23:16 +01:00
|
|
|
|
if (con->width_factor == 0)
|
|
|
|
|
unoccupied -= workspace->rect.width * default_factor * con->colspan;
|
|
|
|
|
cols += con->colspan;
|
|
|
|
|
}
|
2009-02-16 03:28:07 +01:00
|
|
|
|
|
2009-02-24 14:18:08 +01:00
|
|
|
|
assert(unoccupied != 0);
|
2009-02-16 03:28:07 +01:00
|
|
|
|
|
2009-02-23 02:23:16 +01:00
|
|
|
|
printf("unoccupied space: %d\n", unoccupied);
|
|
|
|
|
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() */
|
|
|
|
|
int get_unoccupied_y(Workspace *workspace, int col) {
|
|
|
|
|
int unoccupied = workspace->rect.height;
|
|
|
|
|
float default_factor = ((float)workspace->rect.height / workspace->rows) / workspace->rect.height;
|
|
|
|
|
|
|
|
|
|
printf("get_unoccupied_y(), starting with %d, default_factor = %f\n", unoccupied, default_factor);
|
|
|
|
|
|
|
|
|
|
for (int rows = 0; rows < workspace->rows;) {
|
|
|
|
|
Container *con = workspace->table[col][rows];
|
2009-02-24 14:18:08 +01:00
|
|
|
|
printf("height_factor[%d][%d] = %f, rowspan %d\n", col, rows, con->height_factor, con->rowspan);
|
2009-02-23 03:27:59 +01:00
|
|
|
|
if (con->height_factor == 0)
|
|
|
|
|
unoccupied -= workspace->rect.height * default_factor * con->rowspan;
|
|
|
|
|
rows += con->rowspan;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-24 14:18:08 +01:00
|
|
|
|
assert(unoccupied != 0);
|
2009-02-23 03:27:59 +01:00
|
|
|
|
|
|
|
|
|
printf("unoccupied space: %d\n", unoccupied);
|
|
|
|
|
return unoccupied;
|
|
|
|
|
}
|
|
|
|
|
|
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-02-24 00:30:04 +01:00
|
|
|
|
void decorate_window(xcb_connection_t *conn, Client *client, xcb_drawable_t drawable, xcb_gcontext_t gc, int offset) {
|
2009-02-25 00:50:30 +01:00
|
|
|
|
i3Font *font = load_font(conn, config.font);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
uint32_t background_color,
|
|
|
|
|
text_color,
|
|
|
|
|
border_color;
|
|
|
|
|
|
2009-02-23 03:44:10 +01:00
|
|
|
|
/* Clients without a container (docks) won’t get decorated */
|
|
|
|
|
if (client->container == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
if (client->container->currently_focused == client) {
|
2009-02-24 14:18:08 +01:00
|
|
|
|
background_color = get_colorpixel(conn, client, client->frame, "#285577");
|
|
|
|
|
text_color = get_colorpixel(conn, client, client->frame, "#ffffff");
|
|
|
|
|
border_color = get_colorpixel(conn, client, client->frame, "#4c7899");
|
2009-02-14 02:33:31 +01:00
|
|
|
|
} else {
|
2009-02-24 14:18:08 +01:00
|
|
|
|
background_color = get_colorpixel(conn, client, client->frame, "#222222");
|
|
|
|
|
text_color = get_colorpixel(conn, client, client->frame, "#888888");
|
|
|
|
|
border_color = get_colorpixel(conn, client, client->frame, "#333333");
|
2009-02-14 02:33:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Our plan is the following:
|
|
|
|
|
- Draw a rect around the whole client in background_color
|
|
|
|
|
- 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-02-24 00:30:04 +01:00
|
|
|
|
xcb_change_gc_single(conn, gc, XCB_GC_FOREGROUND, background_color);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-02-24 00:30:04 +01:00
|
|
|
|
xcb_rectangle_t rect = {0, offset, client->rect.width, offset + client->rect.height};
|
|
|
|
|
xcb_poly_fill_rectangle(conn, drawable, gc, 1, &rect);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
|
|
|
|
/* Draw the lines */
|
2009-02-24 00:30:04 +01:00
|
|
|
|
xcb_draw_line(conn, drawable, gc, border_color, 2, offset, client->rect.width, offset);
|
|
|
|
|
xcb_draw_line(conn, drawable, gc, border_color, 2, offset + font->height + 3,
|
|
|
|
|
2 + client->rect.width, offset + font->height + 3);
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* Draw the font */
|
2009-02-24 00:30:04 +01:00
|
|
|
|
uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND | XCB_GC_FONT;
|
|
|
|
|
uint32_t values[] = { text_color, background_color, font->id };
|
|
|
|
|
xcb_change_gc(conn, gc, mask, values);
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* TODO: utf8? */
|
|
|
|
|
char *label;
|
|
|
|
|
asprintf(&label, "(%08x) %.*s", client->frame, client->name_len, client->name);
|
2009-02-24 00:30:04 +01:00
|
|
|
|
xcb_void_cookie_t text_cookie = xcb_image_text_8_checked(conn, strlen(label), drawable,
|
|
|
|
|
gc, 3 /* X */, offset + font->height /* Y = baseline of font */, label);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
check_error(conn, text_cookie, "Could not draw client's title");
|
|
|
|
|
free(label);
|
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
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void reposition_client(xcb_connection_t *connection, Client *client) {
|
|
|
|
|
printf("frame needs to be pushed to %dx%d\n", client->rect.x, client->rect.y);
|
|
|
|
|
/* Note: We can use a pointer to client->x like an array of uint32_ts
|
|
|
|
|
because it is followed by client->y by definition */
|
|
|
|
|
xcb_configure_window(connection, client->frame,
|
|
|
|
|
XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y, &(client->rect.x));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Pushes the client’s width/height to X11 and resizes the child window
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void resize_client(xcb_connection_t *connection, Client *client) {
|
2009-02-25 00:50:30 +01:00
|
|
|
|
i3Font *font = load_font(connection, config.font);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
|
2009-02-24 01:24:28 +01:00
|
|
|
|
printf("resizing client to %d x %d\n", client->rect.width, client->rect.height);
|
2009-02-23 00:18:13 +01:00
|
|
|
|
xcb_configure_window(connection, client->frame,
|
|
|
|
|
XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
|
|
|
|
|
&(client->rect.width));
|
|
|
|
|
|
|
|
|
|
/* 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-01 03:55:29 +01:00
|
|
|
|
switch (client->container->mode) {
|
|
|
|
|
case MODE_STACK:
|
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:
|
|
|
|
|
if (client->titlebar_position == TITLEBAR_OFF) {
|
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-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-03-03 01:14:11 +01:00
|
|
|
|
printf("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-03 01:14:11 +01:00
|
|
|
|
xcb_configure_window(connection, client->child, mask, &(rect->x));
|
|
|
|
|
|
|
|
|
|
/* After configuring a child window we need to fake a configure_notify_event according
|
|
|
|
|
to ICCCM 4.2.3. This seems rather broken, especially since X sends exactly the same
|
|
|
|
|
configure_notify_event automatically according to xtrace. Anyone knows details? */
|
|
|
|
|
xcb_configure_notify_event_t event;
|
|
|
|
|
|
|
|
|
|
event.event = client->child;
|
|
|
|
|
event.window = client->child;
|
|
|
|
|
event.response_type = XCB_CONFIGURE_NOTIFY;
|
|
|
|
|
|
|
|
|
|
event.x = rect->x;
|
|
|
|
|
event.y = rect->y;
|
|
|
|
|
event.width = rect->width;
|
|
|
|
|
event.height = rect->height;
|
|
|
|
|
|
|
|
|
|
event.border_width = 0;
|
|
|
|
|
event.above_sibling = XCB_NONE;
|
|
|
|
|
event.override_redirect = false;
|
|
|
|
|
|
|
|
|
|
xcb_send_event(connection, false, client->child, XCB_EVENT_MASK_STRUCTURE_NOTIFY, (char*)&event);
|
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)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void render_container(xcb_connection_t *connection, 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;
|
|
|
|
|
|
|
|
|
|
if (container->currently_focused == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
CIRCLEQ_FOREACH(client, &(container->clients), clients)
|
|
|
|
|
num_clients++;
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
|
|
|
|
if (container->mode == MODE_DEFAULT) {
|
|
|
|
|
printf("got %d clients in this default container.\n", num_clients);
|
|
|
|
|
CIRCLEQ_FOREACH(client, &(container->clients), clients) {
|
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-02-28 15:47:51 +01:00
|
|
|
|
HAS_CHANGED(client->rect.x, container->x) |
|
|
|
|
|
HAS_CHANGED(client->rect.y, container->y +
|
|
|
|
|
(container->height / num_clients) * current_client))
|
2009-02-23 00:18:13 +01:00
|
|
|
|
reposition_client(connection, client);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
|
|
|
|
/* TODO: vertical default layout */
|
2009-02-14 08:38:07 +01:00
|
|
|
|
if (client->force_reconfigure |
|
2009-02-28 15:47:51 +01:00
|
|
|
|
HAS_CHANGED(client->rect.width, container->width) |
|
2009-03-03 01:14:11 +01:00
|
|
|
|
HAS_CHANGED(client->rect.height, container->height / num_clients))
|
2009-02-23 00:18:13 +01:00
|
|
|
|
resize_client(connection, client);
|
2009-02-13 19:04:45 +01:00
|
|
|
|
|
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-02-25 00:50:30 +01:00
|
|
|
|
i3Font *font = load_font(connection, 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-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() */
|
|
|
|
|
if (stack_win->height == 0)
|
|
|
|
|
xcb_map_window(connection, stack_win->window);
|
|
|
|
|
|
2009-02-24 00:30:04 +01:00
|
|
|
|
/* Check if we need to reconfigure our stack title window */
|
2009-03-01 01:56:20 +01:00
|
|
|
|
if (HAS_CHANGED(stack_win->width, container->width) |
|
|
|
|
|
HAS_CHANGED(stack_win->height, decoration_height * num_clients)) {
|
2009-02-24 00:30:04 +01:00
|
|
|
|
xcb_configure_window(connection, stack_win->window,
|
|
|
|
|
XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT, &(stack_win->width));
|
|
|
|
|
|
2009-02-28 13:03:44 +01:00
|
|
|
|
uint32_t values[] = { XCB_STACK_MODE_ABOVE };
|
|
|
|
|
xcb_configure_window(connection, stack_win->window, XCB_CONFIG_WINDOW_STACK_MODE, values);
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-28 02:36:40 +01:00
|
|
|
|
/* Reconfigure the currently focused client, if necessary. It is the only visible one */
|
|
|
|
|
client = container->currently_focused;
|
2009-02-24 00:30:04 +01:00
|
|
|
|
|
2009-02-28 02:36:40 +01:00
|
|
|
|
/* Check if we changed client->x or client->y by updating it.
|
|
|
|
|
* Note the bitwise OR instead of logical OR to force evaluation of both statements */
|
|
|
|
|
if (client->force_reconfigure |
|
2009-03-01 01:56:20 +01:00
|
|
|
|
HAS_CHANGED(client->rect.x, container->x) |
|
|
|
|
|
HAS_CHANGED(client->rect.y, container->y + (decoration_height * num_clients)))
|
2009-02-28 02:36:40 +01:00
|
|
|
|
reposition_client(connection, client);
|
|
|
|
|
|
|
|
|
|
if (client->force_reconfigure |
|
2009-03-01 01:56:20 +01:00
|
|
|
|
HAS_CHANGED(client->rect.width, container->width) |
|
|
|
|
|
HAS_CHANGED(client->rect.height, container->height - (decoration_height * num_clients)))
|
2009-02-28 02:36:40 +01:00
|
|
|
|
resize_client(connection, client);
|
2009-02-24 00:30:04 +01:00
|
|
|
|
|
2009-02-28 02:36:40 +01:00
|
|
|
|
client->force_reconfigure = false;
|
2009-02-24 00:30:04 +01:00
|
|
|
|
|
2009-02-28 02:36:40 +01:00
|
|
|
|
uint32_t values[] = { XCB_STACK_MODE_ABOVE };
|
|
|
|
|
xcb_configure_window(connection, client->frame, XCB_CONFIG_WINDOW_STACK_MODE, values);
|
|
|
|
|
|
|
|
|
|
/* Render the decorations of all clients */
|
|
|
|
|
CIRCLEQ_FOREACH(client, &(container->clients), clients)
|
2009-02-24 00:30:04 +01:00
|
|
|
|
decorate_window(connection, client, stack_win->window, stack_win->gc,
|
2009-02-28 02:36:40 +01:00
|
|
|
|
current_client++ * decoration_height);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
}
|
2009-02-13 19:04:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-23 00:18:13 +01:00
|
|
|
|
static void render_bars(xcb_connection_t *connection, Workspace *r_ws, int width, int height) {
|
|
|
|
|
Client *client;
|
|
|
|
|
SLIST_FOREACH(client, &(r_ws->dock_clients), dock_clients) {
|
|
|
|
|
if (client->force_reconfigure |
|
2009-03-01 01:56:20 +01:00
|
|
|
|
HAS_CHANGED(client->rect.x, 0) |
|
|
|
|
|
HAS_CHANGED(client->rect.y, height))
|
2009-02-23 00:18:13 +01:00
|
|
|
|
reposition_client(connection, client);
|
|
|
|
|
|
|
|
|
|
if (client->force_reconfigure |
|
2009-03-01 01:56:20 +01:00
|
|
|
|
HAS_CHANGED(client->rect.width, width) |
|
|
|
|
|
HAS_CHANGED(client->rect.height, client->desired_height))
|
2009-02-23 00:18:13 +01:00
|
|
|
|
resize_client(connection, client);
|
|
|
|
|
|
|
|
|
|
client->force_reconfigure = false;
|
|
|
|
|
height += client->desired_height;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-15 01:58:09 +01:00
|
|
|
|
void render_layout(xcb_connection_t *connection) {
|
|
|
|
|
i3Screen *screen;
|
2009-02-15 02:30:18 +01:00
|
|
|
|
|
2009-02-15 01:58:09 +01:00
|
|
|
|
TAILQ_FOREACH(screen, &virtual_screens, screens) {
|
|
|
|
|
/* r_ws (rendering workspace) is just a shortcut to the Workspace being currently rendered */
|
|
|
|
|
Workspace *r_ws = &(workspaces[screen->current_workspace]);
|
|
|
|
|
|
|
|
|
|
printf("Rendering screen %d\n", screen->num);
|
|
|
|
|
if (r_ws->fullscreen_client != NULL)
|
2009-02-14 08:38:07 +01:00
|
|
|
|
/* This is easy: A client has entered fullscreen mode, so we don’t render at all */
|
|
|
|
|
continue;
|
2009-02-23 00:18:13 +01:00
|
|
|
|
|
2009-02-15 01:58:09 +01:00
|
|
|
|
int width = r_ws->rect.width;
|
|
|
|
|
int height = r_ws->rect.height;
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-02-23 02:55:10 +01:00
|
|
|
|
/* Reserve space for dock clients */
|
2009-02-23 00:18:13 +01:00
|
|
|
|
Client *client;
|
2009-02-23 02:55:10 +01:00
|
|
|
|
SLIST_FOREACH(client, &(r_ws->dock_clients), dock_clients)
|
2009-02-23 00:18:13 +01:00
|
|
|
|
height -= client->desired_height;
|
|
|
|
|
|
2009-02-15 01:58:09 +01:00
|
|
|
|
printf("got %d rows and %d cols\n", r_ws->rows, r_ws->cols);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-02-23 01:41:26 +01:00
|
|
|
|
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;
|
|
|
|
|
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* Go through the whole table and render what’s necessary */
|
2009-02-15 02:30:18 +01:00
|
|
|
|
for (int cols = 0; cols < r_ws->cols; cols++)
|
|
|
|
|
for (int rows = 0; rows < r_ws->rows; rows++) {
|
2009-02-15 01:58:09 +01:00
|
|
|
|
Container *container = r_ws->table[cols][rows];
|
2009-02-23 01:41:26 +01:00
|
|
|
|
printf("\n========\ncontainer has %d colspan, %d rowspan\n",
|
2009-02-15 01:58:09 +01:00
|
|
|
|
container->colspan, container->rowspan);
|
2009-02-23 01:41:26 +01:00
|
|
|
|
printf("container at %d, %d\n", xoffset[rows], yoffset[cols]);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
/* Update position of the container */
|
2009-02-15 01:58:09 +01:00
|
|
|
|
container->row = rows;
|
|
|
|
|
container->col = cols;
|
2009-02-23 01:41:26 +01:00
|
|
|
|
container->x = xoffset[rows];
|
|
|
|
|
container->y = yoffset[cols];
|
2009-02-23 03:27:59 +01:00
|
|
|
|
|
2009-02-16 03:28:07 +01:00
|
|
|
|
if (container->width_factor == 0)
|
2009-02-23 02:23:16 +01:00
|
|
|
|
container->width = (width / r_ws->cols);
|
2009-02-23 02:09:24 +01:00
|
|
|
|
else container->width = get_unoccupied_x(r_ws, rows) * container->width_factor;
|
2009-02-23 02:23:16 +01:00
|
|
|
|
container->width *= container->colspan;
|
2009-02-23 03:27:59 +01:00
|
|
|
|
|
|
|
|
|
if (container->height_factor == 0)
|
|
|
|
|
container->height = (height / r_ws->rows);
|
|
|
|
|
else container->height = get_unoccupied_y(r_ws, cols) * container->height_factor;
|
|
|
|
|
container->height *= container->rowspan;
|
2009-02-14 02:33:31 +01:00
|
|
|
|
|
2009-02-24 00:30:04 +01:00
|
|
|
|
/* Render the container if it is not empty */
|
2009-02-15 01:58:09 +01:00
|
|
|
|
render_container(connection, container);
|
2009-02-16 03:28:07 +01:00
|
|
|
|
|
2009-02-23 01:41:26 +01:00
|
|
|
|
xoffset[rows] += container->width;
|
|
|
|
|
yoffset[cols] += container->height;
|
|
|
|
|
printf("==========\n");
|
2009-02-14 02:33:31 +01:00
|
|
|
|
}
|
2009-02-23 00:18:13 +01:00
|
|
|
|
|
|
|
|
|
render_bars(connection, r_ws, width, height);
|
2009-02-14 02:33:31 +01:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-15 01:58:09 +01:00
|
|
|
|
xcb_flush(connection);
|
2009-02-13 19:04:45 +01:00
|
|
|
|
}
|