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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/* util header */
/*
* Copyright (C) 2001 Havoc Pennington
* Copyright (C) 2003 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef WNCK_UTIL_H
#define WNCK_UTIL_H
#include <gtk/gtk.h>
typedef struct _WnckResourceUsage WnckResourceUsage;
/**
* WnckResourceUsage:
* @total_bytes_estimate: estimation of the total number of bytes allocated in
* the X server.
* @pixmap_bytes: number of bytes allocated in the X server for resources of
* type PIXMAP.
* @n_pixmaps: number of PIXMAP resources allocated.
* @n_windows:
* @n_gcs:
* @n_pictures:
* @n_glyphsets:
* @n_fonts:
* @n_colormap_entries:
* @n_passive_grabs:
* @n_cursors:
* @n_other:
*
* The #WnckResourceUsage struct contains information about the total resource
* usage of an X client, and the number of resources allocated for each
* resource type.
*/
struct _WnckResourceUsage
{
unsigned long total_bytes_estimate;
unsigned long pixmap_bytes;
unsigned int n_pixmaps;
unsigned int n_windows;
unsigned int n_gcs;
unsigned int n_pictures;
unsigned int n_glyphsets;
unsigned int n_fonts;
unsigned int n_colormap_entries;
unsigned int n_passive_grabs;
unsigned int n_cursors;
unsigned int n_other;
/*< private >*/
unsigned int pad1;
unsigned int pad2;
unsigned int pad3;
unsigned int pad4;
unsigned int pad5;
unsigned long pad6;
unsigned long pad7;
unsigned long pad8;
unsigned long pad9;
};
/**
* WnckClientType:
* @WNCK_CLIENT_TYPE_APPLICATION: the libwnck user is a normal application.
* @WNCK_CLIENT_TYPE_PAGER: the libwnck user is an utility application dealing
* with window management, like pagers and taskbars.
*
* Type describing the role of the libwnck user.
*/
typedef enum {
WNCK_CLIENT_TYPE_APPLICATION = 1,
WNCK_CLIENT_TYPE_PAGER = 2
} WnckClientType;
void wnck_gtk_window_set_dock_type (GtkWindow *window);
void wnck_set_client_type (WnckClientType ewmh_sourceindication_client_type);
void wnck_xid_read_resource_usage (GdkDisplay *gdk_display,
unsigned long xid,
WnckResourceUsage *usage);
void wnck_pid_read_resource_usage (GdkDisplay *gdk_display,
unsigned long pid,
WnckResourceUsage *usage);
#endif /* WNCK_UTIL_H */
|