awesome/statusbar.c

175 lines
7.4 KiB
C
Raw Normal View History

/*
* draw.c - draw functions
*
* Copyright © 2007 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.
*
*/
#include <stdio.h>
#include "layout.h"
#include "statusbar.h"
#include "draw.h"
2007-09-15 15:26:51 +02:00
#include "screen.h"
#include "util.h"
#include "layouts/tile.h"
2007-10-03 00:15:50 +02:00
extern Client *clients, *sel; /* global client list */
/** Check if at least a client is tagged with tag number t and is on screen
* screen
* \param t tag number
* \param screen screen number
* \return True or False
*/
static Bool
isoccupied(unsigned int t, int screen)
{
Client *c;
for(c = clients; c; c = c->next)
if(c->tags[t] && c->screen == screen)
return True;
return False;
}
void
drawstatusbar(Display *disp, DC *drawcontext, awesome_config * awesomeconf)
{
2007-10-09 22:35:44 +02:00
int z, i, x = 0, y = 0, w;
2007-10-01 20:58:29 +02:00
ScreenInfo *si = get_screen_info(disp, awesomeconf->screen, NULL);
for(i = 0; i < awesomeconf->ntags; i++)
{
2007-10-09 22:32:28 +02:00
w = textwidth(disp, drawcontext->font, awesomeconf->tags[i].name, a_strlen(awesomeconf->tags[i].name)) + drawcontext->font->height;
2007-09-24 15:37:52 +02:00
if(awesomeconf->tags[i].selected)
{
2007-10-10 13:07:12 +02:00
drawtext(disp, awesomeconf->phys_screen, x, y, w, awesomeconf->statusbar.height, drawcontext->gc, awesomeconf->statusbar.drawable, drawcontext->font, awesomeconf->tags[i].name, awesomeconf->colors_selected);
if(isoccupied(i, awesomeconf->screen))
2007-10-10 13:07:12 +02:00
drawsquare(disp, x, y, (drawcontext->font->height + 2) / 4, drawcontext->gc, awesomeconf->statusbar.drawable, sel && sel->tags[i], awesomeconf->colors_selected[ColFG]);
}
else
{
2007-10-10 13:07:12 +02:00
drawtext(disp, awesomeconf->phys_screen, x, y, w, awesomeconf->statusbar.height, drawcontext->gc, awesomeconf->statusbar.drawable, drawcontext->font, awesomeconf->tags[i].name, awesomeconf->colors_normal);
if(isoccupied(i, awesomeconf->screen))
2007-10-10 13:07:12 +02:00
drawsquare(disp, x, y, (drawcontext->font->height + 2) / 4, drawcontext->gc, awesomeconf->statusbar.drawable, sel && sel->tags[i], awesomeconf->colors_normal[ColFG]);
}
2007-10-09 22:35:44 +02:00
x += w;
}
2007-10-09 22:32:28 +02:00
w = awesomeconf->statusbar.width;
2007-10-10 13:07:12 +02:00
drawtext(disp, awesomeconf->phys_screen, x, y, w, awesomeconf->statusbar.height, drawcontext->gc, awesomeconf->statusbar.drawable, drawcontext->font, awesomeconf->current_layout->symbol, awesomeconf->colors_normal);
2007-10-09 22:35:44 +02:00
z = x + w;
2007-10-09 22:32:28 +02:00
w = textwidth(disp, drawcontext->font, awesomeconf->statustext, a_strlen(awesomeconf->statustext)) + drawcontext->font->height;
2007-10-09 22:35:44 +02:00
x = si[awesomeconf->screen].width - w;
if(x < z)
{
2007-10-09 22:35:44 +02:00
x = z;
w = si[awesomeconf->screen].width - z;
}
2007-10-10 13:07:12 +02:00
drawtext(disp, awesomeconf->phys_screen, x, y, w, awesomeconf->statusbar.height, drawcontext->gc, awesomeconf->statusbar.drawable, drawcontext->font, awesomeconf->statustext, awesomeconf->colors_normal);
2007-10-09 22:35:44 +02:00
if((w = x - z) > awesomeconf->statusbar.height)
{
2007-10-09 22:35:44 +02:00
x = z;
if(sel)
{
2007-10-10 13:07:12 +02:00
drawtext(disp, awesomeconf->phys_screen, x, y, w, awesomeconf->statusbar.height, drawcontext->gc, awesomeconf->statusbar.drawable, drawcontext->font, sel->name, awesomeconf->colors_selected);
2007-09-20 20:11:33 +02:00
if(sel->isfloating)
2007-10-10 13:07:12 +02:00
drawsquare(disp, x, y, (drawcontext->font->height + 2) / 4, drawcontext->gc, awesomeconf->statusbar.drawable, sel->ismax, awesomeconf->colors_selected[ColFG]);
}
else if(IS_ARRANGE(layout_tile) || IS_ARRANGE(layout_tileleft))
{
char buf[256];
snprintf(buf, sizeof(buf), "nmaster: %d ncol: %d mwfact: %.2lf", awesomeconf->nmaster, awesomeconf->ncol, awesomeconf->mwfact);
2007-10-10 13:07:12 +02:00
drawtext(disp, awesomeconf->phys_screen, x, y, w, awesomeconf->statusbar.height, drawcontext->gc, awesomeconf->statusbar.drawable, drawcontext->font, buf, awesomeconf->colors_normal);
}
else
2007-10-10 13:07:12 +02:00
drawtext(disp, awesomeconf->phys_screen, x, y, w, awesomeconf->statusbar.height, drawcontext->gc, awesomeconf->statusbar.drawable, drawcontext->font, NULL, awesomeconf->colors_normal);
}
XCopyArea(disp, awesomeconf->statusbar.drawable, awesomeconf->statusbar.window, drawcontext->gc, 0, 0, si[awesomeconf->screen].width, awesomeconf->statusbar.height, 0, 0);
XSync(disp, False);
}
2007-09-15 15:26:51 +02:00
2007-09-15 22:25:49 +02:00
void
initstatusbar(Display *disp, int screen, DC *drawcontext, Statusbar *statusbar)
{
XSetWindowAttributes wa;
2007-10-01 20:58:29 +02:00
int phys_screen;
ScreenInfo *si;
2007-09-15 22:25:49 +02:00
2007-10-01 15:23:05 +02:00
phys_screen = get_phys_screen(disp, screen);
statusbar->screen = screen;
2007-10-01 20:58:29 +02:00
si = get_screen_info(disp, screen, NULL);
2007-09-15 22:25:49 +02:00
wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask
| EnterWindowMask | LeaveWindowMask | StructureNotifyMask;
wa.cursor = drawcontext->cursor[CurNormal];
wa.override_redirect = 1;
wa.background_pixmap = ParentRelative;
wa.event_mask = ButtonPressMask | ExposureMask;
2007-10-01 15:23:05 +02:00
statusbar->window = XCreateWindow(disp, RootWindow(disp, phys_screen), 0, 0, si[screen].width,
statusbar->height, 0, DefaultDepth(disp, phys_screen), CopyFromParent,
DefaultVisual(disp, phys_screen), CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
2007-09-15 22:25:49 +02:00
XDefineCursor(disp, statusbar->window, drawcontext->cursor[CurNormal]);
updatebarpos(disp, *statusbar);
XMapRaised(disp, statusbar->window);
statusbar->drawable = XCreatePixmap(disp,
2007-10-01 15:23:05 +02:00
RootWindow(disp, phys_screen),
si[screen].width,
2007-09-15 22:25:49 +02:00
statusbar->height,
2007-10-01 15:23:05 +02:00
DefaultDepth(disp, phys_screen));
2007-09-15 22:25:49 +02:00
}
2007-09-15 15:26:51 +02:00
void
updatebarpos(Display *disp, Statusbar statusbar)
{
XEvent ev;
2007-10-01 20:58:29 +02:00
ScreenInfo *si = get_screen_info(disp, statusbar.screen, NULL);
2007-09-15 15:26:51 +02:00
switch (statusbar.position)
{
default:
XMoveWindow(disp, statusbar.window, si[statusbar.screen].x_org, si[statusbar.screen].y_org);
2007-09-15 15:26:51 +02:00
break;
case BarBot:
XMoveWindow(disp, statusbar.window, si[statusbar.screen].x_org, si[statusbar.screen].height - statusbar.height);
2007-09-15 15:26:51 +02:00
break;
case BarOff:
XMoveWindow(disp, statusbar.window, si[statusbar.screen].x_org, si[statusbar.screen].y_org - statusbar.height);
2007-09-15 15:26:51 +02:00
break;
}
XFree(si);
2007-09-15 15:26:51 +02:00
XSync(disp, False);
while(XCheckMaskEvent(disp, EnterWindowMask, &ev));
}
2007-09-15 15:34:28 +02:00
void
uicb_togglebar(Display *disp,
DC *drawcontext,
awesome_config *awesomeconf,
const char *arg __attribute__ ((unused)))
{
if(awesomeconf->statusbar.position == BarOff)
awesomeconf->statusbar.position = (awesomeconf->statusbar_default_position == BarOff) ? BarTop : awesomeconf->statusbar_default_position;
2007-09-15 15:34:28 +02:00
else
awesomeconf->statusbar.position = BarOff;
updatebarpos(disp, awesomeconf->statusbar);
2007-09-17 13:45:13 +02:00
arrange(disp, drawcontext, awesomeconf);
2007-09-15 15:34:28 +02:00
}