c->tw = 0;
for(i = 0; i < TLast; i++)
if(c->tags[i])
- c->tw += textw(c->tags[i]);
+ c->tw += textw(tags[i]);
c->tw += textw(c->name);
if(c->tw > c->w)
c->tw = c->w + 2;
enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast };
#define TAGS \
-char *tags[TLast] = { \
+const char *tags[TLast] = { \
[Tfnord] = "fnord", \
[Tdev] = "dev", \
[Tnet] = "net", \
#define RULES \
static Rule rule[] = { \
/* class:instance tags isfloat */ \
- { "Firefox.*", { [Tnet] = "net" }, False }, \
+ { "Firefox.*", { [Tnet] = True }, False }, \
{ "Gimp.*", { 0 }, True}, \
{ "MPlayer.*", { 0 }, True}, \
{ "Acroread.*", { 0 }, True}, \
enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast };
#define TAGS \
-char *tags[TLast] = { \
+const char *tags[TLast] = { \
[Tfnord] = "fnord", \
[Tdev] = "dev", \
[Tnet] = "net", \
#define RULES \
static Rule rule[] = { \
/* class:instance tags isfloat */ \
- { "Firefox.*", { [Tnet] = "net" }, False }, \
+ { "Firefox.*", { [Tnet] = True }, False }, \
{ "Gimp.*", { 0 }, True}, \
};
}
static unsigned int
-textnw(char *text, unsigned int len)
+textnw(const char *text, unsigned int len)
{
XRectangle r;
for(i = 0; i < TLast; i++) {
if(c->tags[i]) {
dc.x += dc.w;
- dc.w = textw(c->tags[i]);
- drawtext(c->tags[i], !istile, True);
+ dc.w = textw(tags[i]);
+ drawtext(tags[i], !istile, True);
}
}
dc.x += dc.w;
}
unsigned int
-textw(char *text)
+textw(const char *text)
{
return textnw(text, strlen(text)) + dc.font.height;
}
struct Client {
char name[256];
- char *tags[TLast];
int proto;
int x, y, w, h;
int tx, ty, tw, th; /* title */
unsigned int border;
Bool isfloat;
Bool ismax;
+ Bool tags[TLast];
Client *next;
Client *prev;
Window win;
Window title;
};
-extern char *tags[TLast], stext[1024];
+extern const char *tags[TLast];
+extern char stext[1024];
extern int tsel, screen, sx, sy, sw, sh, bx, by, bw, bh, mw;
extern void (*handler[LASTEvent])(XEvent *);
extern void (*arrange)(Arg *);
extern void drawtitle(Client *c);
extern unsigned long getcolor(const char *colstr);
extern void setfont(const char *fontstr);
-extern unsigned int textw(char *text);
+extern unsigned int textw(const char *text);
/* event.c */
extern void grabkeys();
typedef struct {
const char *pattern;
- char *tags[TLast];
+ Bool tags[TLast];
Bool isfloat;
} Rule;
if(!sel)
return;
- sel->tags[arg->i] = tags[arg->i];
+ sel->tags[arg->i] = True;
arrange(NULL);
}
return;
for(i = 0; i < TLast; i++)
- sel->tags[i] = NULL;
+ sel->tags[i] = False;
appendtag(arg);
}
for(j = 0; j < TLast; j++) {
if(rule[i].tags[j])
matched = True;
- c->tags[j] = rule[i].tags[j];
+ c->tags[j] = True;
}
c->isfloat = rule[i].isfloat;
}
XFree(ch.res_name);
}
if(!matched)
- c->tags[tsel] = tags[tsel];
+ c->tags[tsel] = True;
}
void