all repos — tint2 @ 5b4d782ca2b9d91e4ca16b2cd4f825c2191c42a4

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

src/util/window.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
/**************************************************************************
* window : 
* - 
*
* Check COPYING file for Copyright
*
**************************************************************************/

#ifndef WINDOW_H
#define WINDOW_H

#include <pango/pangocairo.h>


typedef struct window_global
{
   Window main_win;
} window_global;

window_global window;

void set_active (Window win);
void set_desktop (int desktop);
void set_close (Window win);
int server_get_current_desktop ();
int server_get_number_of_desktop ();
int window_is_iconified (Window win);
int window_is_hidden (Window win);
int window_is_active (Window win);
int get_icon_count (long *data, int num);
long *get_best_icon (long *data, int icon_count, int num, int *iw, int *ih, int best_icon_size);
void window_toggle_shade (Window win);
int window_get_desktop (Window win);
void windows_set_desktop (Window win, int desktop);
int window_get_monitor (Window win);
Window window_get_active ();

void get_text_size(PangoFontDescription *font, int *height_ink, int *height, int panel_height, char *text, int len);


#endif