88 lines
3.5 KiB
C
88 lines
3.5 KiB
C
|
/*
|
||
|
* 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 "layout.h"
|
||
|
#include "statusbar.h"
|
||
|
#include "draw.h"
|
||
|
|
||
|
extern Client *clients, *sel, *stack; /* global client list and stack */
|
||
|
|
||
|
/** Check if at least a client is tagged with tag number t
|
||
|
* \param t tag number
|
||
|
* \return True or False
|
||
|
*/
|
||
|
static Bool
|
||
|
isoccupied(unsigned int t)
|
||
|
{
|
||
|
Client *c;
|
||
|
|
||
|
for(c = clients; c; c = c->next)
|
||
|
if(c->tags[t])
|
||
|
return True;
|
||
|
return False;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
drawstatusbar(Display *disp, DC *drawcontext, awesome_config * awesomeconf)
|
||
|
{
|
||
|
int x, i;
|
||
|
drawcontext->x = drawcontext->y = 0;
|
||
|
for(i = 0; i < awesomeconf->ntags; i++)
|
||
|
{
|
||
|
drawcontext->w = textw(drawcontext->font.set, drawcontext->font.xfont, awesomeconf->tags[i], drawcontext->font.height);
|
||
|
if(awesomeconf->selected_tags[i])
|
||
|
{
|
||
|
drawtext(disp, *drawcontext, awesomeconf->statusbar.drawable, awesomeconf->tags[i], drawcontext->sel);
|
||
|
drawsquare(sel && sel->tags[i], isoccupied(i), drawcontext->sel, disp, *drawcontext, &awesomeconf->statusbar);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
drawtext(disp, *drawcontext, awesomeconf->statusbar.drawable, awesomeconf->tags[i], drawcontext->norm);
|
||
|
drawsquare(sel && sel->tags[i], isoccupied(i), drawcontext->norm, disp, *drawcontext, &awesomeconf->statusbar);
|
||
|
}
|
||
|
drawcontext->x += drawcontext->w;
|
||
|
}
|
||
|
drawcontext->w = awesomeconf->statusbar.width;
|
||
|
drawtext(disp, *drawcontext, awesomeconf->statusbar.drawable, awesomeconf->current_layout->symbol, drawcontext->norm);
|
||
|
x = drawcontext->x + drawcontext->w;
|
||
|
drawcontext->w = textw(drawcontext->font.set, drawcontext->font.xfont, awesomeconf->statustext, drawcontext->font.height);
|
||
|
drawcontext->x = DisplayWidth(disp, DefaultScreen(disp)) - drawcontext->w;
|
||
|
if(drawcontext->x < x)
|
||
|
{
|
||
|
drawcontext->x = x;
|
||
|
drawcontext->w = DisplayWidth(disp, DefaultScreen(disp)) - x;
|
||
|
}
|
||
|
drawtext(disp, *drawcontext, awesomeconf->statusbar.drawable, awesomeconf->statustext, drawcontext->norm);
|
||
|
if((drawcontext->w = drawcontext->x - x) > awesomeconf->statusbar.height)
|
||
|
{
|
||
|
drawcontext->x = x;
|
||
|
if(sel)
|
||
|
{
|
||
|
drawtext(disp, *drawcontext, awesomeconf->statusbar.drawable, sel->name, drawcontext->sel);
|
||
|
drawsquare(sel->ismax, sel->isfloating, drawcontext->sel, disp, *drawcontext, &awesomeconf->statusbar);
|
||
|
}
|
||
|
else
|
||
|
drawtext(disp, *drawcontext, awesomeconf->statusbar.drawable, NULL, drawcontext->norm);
|
||
|
}
|
||
|
XCopyArea(disp, awesomeconf->statusbar.drawable, awesomeconf->statusbar.window, drawcontext->gc, 0, 0, DisplayWidth(disp, DefaultScreen(disp)), awesomeconf->statusbar.height, 0, 0);
|
||
|
XSync(disp, False);
|
||
|
}
|