]>
Dogcows Code - chaz/openbox/blob - tests/icons.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 icons.c for the Openbox window manager
4 Copyright (c) 2003-2007 Dana Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
20 #include <X11/Xutil.h>
21 #include <X11/Xatom.h>
22 #include <X11/cursorfont.h>
28 Window
findClient(Display
*d
, Window win
)
32 Atom state
= XInternAtom(d
, "WM_STATE", True
);
35 unsigned long ret_items
, ret_bytesleft
;
36 unsigned long *prop_return
;
38 XQueryTree(d
, win
, &r
, &r
, &children
, &n
);
39 for (i
= 0; i
< n
; ++i
) {
40 Window w
= findClient(d
, children
[i
]);
45 XGetWindowProperty(d
, win
, state
, 0, 1,
46 False
, state
, &ret_type
, &ret_format
,
47 &ret_items
, &ret_bytesleft
,
48 (unsigned char**) &prop_return
);
49 if (ret_type
== None
|| ret_items
< 1)
51 return win
; // found it!
54 int main(int argc
, char **argv
)
56 Display
*d
= XOpenDisplay(NULL
);
57 int s
= DefaultScreen(d
);
58 Atom net_wm_icon
= XInternAtom(d
, "_NET_WM_ICON", True
);
60 unsigned int winw
= 0, winh
= 0;
62 unsigned long ret_items
, ret_bytesleft
;
63 const int MAX_IMAGES
= 10;
64 unsigned long *prop_return
[MAX_IMAGES
];
65 XImage
*i
[MAX_IMAGES
];
67 unsigned int image
= 0;
68 unsigned int j
; // loop counter
74 printf("Click on a window with an icon...\n");
76 //int id = strtol(argv[1], NULL, 16);
77 XUngrabPointer(d
, CurrentTime
);
78 cur
= XCreateFontCursor(d
, XC_crosshair
);
79 XGrabPointer(d
, RootWindow(d
, s
), False
, ButtonPressMask
, GrabModeAsync
,
80 GrabModeAsync
, None
, cur
, CurrentTime
);
83 if (ev
.type
== ButtonPress
) {
84 XUngrabPointer(d
, CurrentTime
);
85 id
= findClient(d
, ev
.xbutton
.subwindow
);
90 printf("Using window 0x%lx\n", id
);
95 XGetWindowProperty(d
, id
, net_wm_icon
, offset
++, 1,
96 False
, XA_CARDINAL
, &ret_type
, &ret_format
,
97 &ret_items
, &ret_bytesleft
,
98 (unsigned char**) &prop_return
[image
]);
99 if (ret_type
== None
|| ret_items
< 1) {
100 printf("No icon found\n");
103 w
= prop_return
[image
][0];
104 XFree(prop_return
[image
]);
106 XGetWindowProperty(d
, id
, net_wm_icon
, offset
++, 1,
107 False
, XA_CARDINAL
, &ret_type
, &ret_format
,
108 &ret_items
, &ret_bytesleft
,
109 (unsigned char**) &prop_return
[image
]);
110 if (ret_type
== None
|| ret_items
< 1) {
111 printf("Failed to get height\n");
114 h
= prop_return
[image
][0];
115 XFree(prop_return
[image
]);
117 XGetWindowProperty(d
, id
, net_wm_icon
, offset
, w
*h
,
118 False
, XA_CARDINAL
, &ret_type
, &ret_format
,
119 &ret_items
, &ret_bytesleft
,
120 (unsigned char**) &prop_return
[image
]);
121 if (ret_type
== None
|| ret_items
< w
*h
) {
122 printf("Failed to get image data\n");
127 printf("Found icon with size %dx%d\n", w
, h
);
129 i
[image
] = XCreateImage(d
, DefaultVisual(d
, s
), DefaultDepth(d
, s
),
130 ZPixmap
, 0, NULL
, w
, h
, 32, 0);
132 i
[image
]->byte_order
= LSBFirst
;
133 i
[image
]->data
= (char*)prop_return
[image
];
134 for (j
= 0; j
< w
*h
; j
++) {
135 unsigned char alpha
= (unsigned char)i
[image
]->data
[j
*4+3];
136 unsigned char r
= (unsigned char) i
[image
]->data
[j
*4+0];
137 unsigned char g
= (unsigned char) i
[image
]->data
[j
*4+1];
138 unsigned char b
= (unsigned char) i
[image
]->data
[j
*4+2];
141 unsigned char bgr
= 0;
142 unsigned char bgg
= 0;
143 unsigned char bgb
= 0;
145 r
= bgr
+ (r
- bgr
) * alpha
/ 256;
146 g
= bgg
+ (g
- bgg
) * alpha
/ 256;
147 b
= bgb
+ (b
- bgb
) * alpha
/ 256;
149 i
[image
]->data
[j
*4+0] = (char) r
;
150 i
[image
]->data
[j
*4+1] = (char) g
;
151 i
[image
]->data
[j
*4+2] = (char) b
;
155 if (h
> winh
) winh
= h
;
158 } while (ret_bytesleft
> 0 && image
< MAX_IMAGES
);
160 #define hashsize(n) ((guint32)1<<(n))
161 #define hashmask(n) (hashsize(n)-1)
162 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k))))
166 a -= c; a ^= rot(c, 4); c += b; \
167 b -= a; b ^= rot(a, 6); a += c; \
168 c -= b; c ^= rot(b, 8); b += a; \
169 a -= c; a ^= rot(c,16); c += b; \
170 b -= a; b ^= rot(a,19); a += c; \
171 c -= b; c ^= rot(b, 4); b += a; \
174 #define final(a,b,c) \
176 c ^= b; c -= rot(b,14); \
177 a ^= c; a -= rot(c,11); \
178 b ^= a; b -= rot(a,25); \
179 c ^= b; c -= rot(b,16); \
180 a ^= c; a -= rot(c,4); \
181 b ^= a; b -= rot(a,14); \
182 c ^= b; c -= rot(b,24); \
185 /* hash the images */
186 for (j
= 0; j
< image
; ++j
) {
187 unsigned int w
, h
, length
;
189 guint32 initval
= 0xf00d;
190 const guint32
*k
= (guint32
*)i
[j
]->data
;
196 /* Set up the internal state */
197 a
= b
= c
= 0xdeadbeef + (((guint32
)length
)<<2) + initval
;
199 /*---------------------------------------- handle most of the key */
210 /*--------------------------------- handle the last 3 uint32_t's */
211 switch(length
) /* all the case statements fall through */
217 case 0: /* case 0: nothing left to add */
220 /*------------------------------------ report the result */
221 printf("image[%d] %ux%u %lu\n", j
, w
, h
, c
);
224 win
= XCreateSimpleWindow(d
, RootWindow(d
, s
), 0, 0, winw
, winh
,
229 p
= XCreatePixmap(d
, win
, winw
, winh
, DefaultDepth(d
, s
));
230 XFillRectangle(d
, p
, DefaultGC(d
, s
), 0, 0, winw
, winh
);
232 for (j
= 0; j
< image
; ++j
) {
233 static unsigned int x
= 0;
235 XPutImage(d
, p
, DefaultGC(d
, s
), i
[j
], 0, 0, x
, 0,
236 i
[j
]->width
, i
[j
]->height
);
241 XSetWindowBackgroundPixmap(d
, win
, p
);
242 XClearWindow(d
, win
);
This page took 0.042803 seconds and 4 git commands to generate.