all repos — tint2 @ 9a85f7f2c55cad0736379bdd7c999e141ac1ca33

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
/**************************************************************************
* Copyright (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
**************************************************************************/

#ifndef TASKBARNAME_H
#define TASKBARNAME_H

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

extern gboolean taskbarname_enabled;
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);

gboolean resize_taskbarname(void *obj);

void taskbarname_default_font_changed();

#endif