annotate etc/trash.xpm @ 5104:868a5349acee

add documentation to frame.c, rearrange some functions to consolidate in related areas -------------------- ChangeLog entries follow: -------------------- src/ChangeLog addition: 2010-03-05 Ben Wing <ben@xemacs.org> * frame.c: * frame.c (frame_live_p): * frame.c (Fframep): * frame.c (Fdisable_frame): * frame.c (Fenable_frame): * frame.c (Fraise_frame): * frame.c (Fframe_name): * frame.c (Fset_frame_height): * frame.c (internal_set_frame_size): * frame.c (adjust_frame_size): Add documentation on the different types of units used to measure frame size. Add section headers to the various sections. Rearrange the location of some functions in the file to keep related functions together. This especially goes for frame-sizing functions (internal_set_frame_size() and adjust_frame_size()), which have been moved so that they form a group with change_frame_size() and change_frame_size_1(). No functionality should change.
author Ben Wing <ben@xemacs.org>
date Fri, 05 Mar 2010 22:50:27 -0600
parents 376386a54a3c
children 7910031dd78a
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 /* A trash can, drawn by jwz */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 static char *trash[] = {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 /* width height ncolors chars_per_pixel x_hot y_hot */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 " 32 46 4 1 16 23",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 /* colors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 " c None m None",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 "= c gray85 m white",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 "- c gray75 m white",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 "# c black m black",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 /* pixels */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 " ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 " ###### ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 " #======# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 " #==# ==# ",
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 " ####=####################### ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 " #========================# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 " #======================# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 " #=====##====##====##===# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 " ###-#==#--#==#--#==#--#==### ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 " #--#-#==#--#==#--#==#--#==#--# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 " ####-#==#--#==#--#==#--#==#### ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 " #-#==#--#==#--#==#--#==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 " #======================# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 " #======================# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 " #==######=###########==# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 " #========================# ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 " ######################## ",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 };