annotate etc/gnu.xpm @ 714:02339d4ebed4

[xemacs-hg @ 2001-12-23 20:28:19 by wmperry] 2001-12-22 William M. Perry <wmperry@gnu.org> * glyphs-gtk.c (gtk_xpm_instantiate): Don't bother doing the xpm-color-symbols checks, they are impossible to implement with GTK's XPM implementation. :( 2001-12-13 William M. Perry <wmperry@gnu.org> * select-gtk.c (gtk_own_selection): Update to follow the new method signature. Ignore owned_p as it appears to only be used for motif hacks. * redisplay-gtk.c (gtk_output_string): Fixed some warnings about signed/unsigned comparison. (gtk_output_gdk_pixmap): Remove clipping code as per change by andy@xemacs.org to the X11 code. (gtk_output_pixmap): Make this follow the output_pixmap method conventions and expose it. (gtk_output_horizontal_line): Renamed from output_hline, and expose it in our method structure. (gtk_ring_bell): Don't ring the bell if volume <= 0 * toolbar-gtk.c (gtk_output_toolbar_button): (gtk_output_frame_toolbars): (gtk_redraw_exposed_toolbars): (gtk_redraw_frame_toolbars): These are now just aliases for the common_XXX() routines in toolbar-common.c * toolbar-common.c: New common toolbar implementation. This file uses only the redisplay_XXX() functions and device methods to draw the toolbar, and so should be portable across all windowing systems (other than tty, and even then I imagine text-based stuff would work if you had a way to select it).
author wmperry
date Sun, 23 Dec 2001 20:28:22 +0000
parents 376386a54a3c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* XPM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 /*****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 /* GNU Emacs bitmap conv. to pixmap by Przemek Klosowski (przemek@nist.gov) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 /*****************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 static char * image_name [] = {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 /**/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 "50 50 7 1",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 /**/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 " s mask c none",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 "B c blue",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 "x c black",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ": c sandy brown",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 "+ c saddle brown",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 "' c grey",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ". c white",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 " ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 " ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 " x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 " :x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 " :::x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 " ::x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 " x ::x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 " x: xxx :::x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 " x: xxx xxx:xxx x::x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 " x:: xxxx::xxx:::::xx x::x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 " x:: x:::::::xx::::::xx x::x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 " x:: xx::::::::x:::::::xx xx::x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 " x:: xx::::::::::::::::::x xx::xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 " x::x xx:::::xxx:::::::xxx:xxx xx:::xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 " x:::x xx:::::xx...xxxxxxxxxxxxxxx:::xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 " x:::x xx::::::xx..xxx...xxxx...xxxxxxxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 " x:::x x::::::xx.xxx.......x.x.......xxxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 " x:::xx x:::x::xx.xx..........x.xx.........x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 " x::::xx::xx:::x.xx....''''x'x'x''.xxx.....x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 " xx::::xxxx::xx.xx.xxxx.'''''''.xxx xxxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 " xx::::::::xx..x.xxx..'''''''''.xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 " xxx:::::xxx..xx.xx.xx.xxx.'''''.xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 " xxx::xx...xx.xx.BBBB..xx''''''xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 " xxxx.....xx.xxBB:BB.xx'''''''xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 " xx.....xx...x.BBBx.xxx''''''xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 " x....xxxx..xx...xxx''''''''''xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 " x..xxxxxx..x.......x..''''''''xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 " x.x xxx.x.x.x...xxxx.'''''''''xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 " x xxx.x.x.xx...xx..'''''''''xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 " xx.x..x.x.xx........''''''''x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 " xx'.xx.x.x.x.x.......'''''''''x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 " xx'..xxxx..x...x.......'''''''x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 " xx''.xx.x..xx...x.......'''.xxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 " xx''..x.x.x.x.x.xx.xxxxx.'.xx+xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 " xx''..x.xx..xx.x.x.x+++xxxxx+++x ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 " xx'''.x..xxx.x.x.x.x+++++xxx+xxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 " xx''.xx..x..xx.xxxx++x+++x++xxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 " xx''..xx.xxx.xxx.xxx++xx+x++xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 " xx'''.xx.xx..xx.xxxx++x+++xxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 " xx'''.xxx.xx.xxxxxxxxx++++xxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 " xx''...xx.xx.xxxxxx++xxxxxxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 " xx''''..x..xxx..xxxx+++++xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 " xx''''..x..xx..xxxx++++xx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 " xxx'''''x.xx.xxxxxxxxxxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 " xxx'''''..xxx xxxxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 " xxxx''''xxxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 " xxx'''xxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 " xxxxx ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 " ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67