blob: af4e5e3c35505c56e5516a02f3eaf42ec274ce1d (
plain) (
blame)
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
|
#ifndef TRAY_H
#define TRAY_H
#include "watcher.h"
#include <pixman.h>
#include <wayland-util.h>
#include <stdint.h>
typedef void (*TrayNotifyCb)(void *data);
typedef struct {
pixman_image_t *image;
struct fcft_font *font;
uint32_t *scheme;
TrayNotifyCb cb;
Watcher *watcher;
void *monitor;
int height;
int spacing;
struct wl_list link;
} Tray;
Tray *createtray (void *monitor, int height, int spacing, uint32_t *colorscheme,
const char **fonts, const char *fontattrs, TrayNotifyCb cb,
Watcher *watcher);
void destroytray (Tray *tray);
int tray_get_width (const Tray *tray);
int tray_get_icon_width (const Tray *tray);
void tray_update (Tray *tray);
void tray_leftclicked (Tray *tray, unsigned int index);
void tray_rightclicked (Tray *tray, unsigned int index, const char **menucmd);
#endif /* TRAY_H */
|