all repos — tint2 @ 1161b0921b54458fe70b02c8063ff4b998e5c8b1

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

missing file

git-svn-id: http://tint2.googlecode.com/svn/trunk@571 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
thilor77 thilor77@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

1161b0921b54458fe70b02c8063ff4b998e5c8b1

parent

574615b3cdc52e5919dc50917733b9521e793e4d

1 files changed, 39 insertions(+), 0 deletions(-)

jump to
A src/taskbar/taskbarname.h

@@ -0,0 +1,39 @@

+/************************************************************************** +* Copyright (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr) +* +* taskbarname +* +**************************************************************************/ + +#ifndef TASKBARNAME_H +#define TASKBARNAME_H +#include "area.h" + + +extern int taskbarname_enabled; + +typedef struct { + // always start with area + Area area; + + int desktop; + +} Taskbarname; + + +// default global data +void default_taskbarname(); + +// freed memory +void cleanup_taskbarname(); + +void init_taskbarname(); +void init_taskbarname_panel(void *p); + +void draw_taskbarname(void *obj, cairo_t *c); + +int resize_taskbarname(void *obj); + + +#endif +