all repos — tint2 @ e43bf23b670a9f731f1248405951ba4036586cd4

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

src/systray/systraybar.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**************************************************************************
* Copyright (C) 2009 thierry lorthiois (lorthiois@bbsoft.fr)
*
* systraybar
* based on 'docker-1.5' from Ben Jansens
*
**************************************************************************/

#ifndef SYSTRAYBAR_H
#define SYSTRAYBAR_H

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


typedef struct {
   // always start with area
   Area area;

	GSList *list_icons;
} Systraybar;


typedef struct
{
   Window id;
   int x, y;
   int width, height;

   long *icon_data;
} TrayWindow;


extern Window net_sel_win;
extern Systraybar systray;


void init_systray();
void cleanup_systray();

int init_net();
void cleanup_net();
void net_message(XClientMessageEvent *e);

void remove_icon(TrayWindow *traywin);

void draw_systray(void *obj, cairo_t *c, int active);

void resize_systray(void *obj);


#endif