File: docker.h

package info (click to toggle)
docker 1.4-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 136 kB
  • ctags: 71
  • sloc: ansic: 620; makefile: 92
file content (31 lines) | stat: -rw-r--r-- 543 bytes parent folder | download | duplicates (7)
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
#ifndef __docker_h
#define __docker_h

#include <glib.h>
#include <X11/Xlib.h>

extern Display *display;
extern Window root, win;
extern GSList *icons;
extern int width, height;
extern int border;
extern gboolean horizontal;
extern int icon_size;
extern gboolean wmaker;

typedef enum {
  KDE = 1, /* kde specific */
  NET      /* follows the standard (freedesktop.org) */
} TrayWindowType;

typedef struct
{
  TrayWindowType type;
  Window id;
  int x, y;
} TrayWindow;

void reposition_icons();
void fix_geometry();

#endif /* __docker_h */