all repos — tint2 @ f59702054deeb670cdac9c80b5456a56165f4f3f

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

src/taskbar/taskbarname.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**************************************************************************
* Copyright (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
**************************************************************************/

#ifndef TASKBARNAME_H
#define TASKBARNAME_H

#include "common.h"
#include "area.h"

extern int taskbarname_enabled;
extern PangoFontDescription *taskbarname_font_desc;
extern Color taskbarname_font;
extern Color taskbarname_active_font;

void default_taskbarname();
void cleanup_taskbarname();

void init_taskbarname_panel(void *p);

void draw_taskbarname(void *obj, cairo_t *c);

int  resize_taskbarname(void *obj);


#endif