Mercurial > hg > xemacs-beta
annotate netinstall/iniparse.y @ 5090:0ca81354c4c7
Further frame-geometry cleanups
-------------------- ChangeLog entries follow: --------------------
man/ChangeLog addition:
2010-03-03 Ben Wing <ben@xemacs.org>
* internals/internals.texi (Intro to Window and Frame Geometry):
* internals/internals.texi (The Paned Area):
* internals/internals.texi (The Displayable Area):
Update to make note of e.g. the fact that the bottom gutter is
actually above the minibuffer.
src/ChangeLog addition:
2010-03-03 Ben Wing <ben@xemacs.org>
* emacs.c:
* emacs.c (assert_equal_failed):
* lisp.h:
* lisp.h (assert_equal):
New fun assert_equal, asserting that two values == each other, and
printing out both values upon failure.
* frame-gtk.c (gtk_initialize_frame_size):
* frame-impl.h:
* frame-impl.h (FRAME_TOP_INTERNAL_BORDER_START):
* frame-impl.h (FRAME_BOTTOM_INTERNAL_BORDER_START):
* frame-impl.h (FRAME_LEFT_INTERNAL_BORDER_START):
* frame-impl.h (FRAME_PANED_TOP_EDGE):
* frame-impl.h (FRAME_NONPANED_SIZE):
* frame-x.c (x_initialize_frame_size):
* frame.c:
* gutter.c (get_gutter_coords):
* gutter.c (calculate_gutter_size):
* gutter.h:
* gutter.h (WINDOW_REAL_TOP_GUTTER_BOUNDS):
* gutter.h (FRAME_TOP_GUTTER_BOUNDS):
* input-method-xlib.c:
* input-method-xlib.c (XIM_SetGeometry):
* redisplay-output.c (clear_left_border):
* redisplay-output.c (clear_right_border):
* redisplay-output.c (redisplay_output_pixmap):
* redisplay-output.c (redisplay_clear_region):
* redisplay-output.c (redisplay_clear_top_of_window):
* redisplay-output.c (redisplay_clear_to_window_end):
* redisplay-xlike-inc.c (XLIKE_clear_frame):
* redisplay.c:
* redisplay.c (UPDATE_CACHE_RETURN):
* redisplay.c (pixel_to_glyph_translation):
* toolbar.c (update_frame_toolbars_geometry):
* window.c (Fwindow_pixel_edges):
Get rid of some redundant macros. Consistently use the
FRAME_TOP_*_START, FRAME_RIGHT_*_END, etc. format. Rename
FRAME_*_BORDER_* to FRAME_*_INTERNAL_BORDER_*. Comment out
FRAME_BOTTOM_* for gutters and the paned area due to the
uncertainty over where the paned area actually begins. (Eventually
we should probably move the gutters outside the minibuffer so that
the paned area is contiguous.) Use FRAME_PANED_* more often in the
code to make things clearer.
Update the diagram to show that the bottom gutter is inside the
minibuffer (!) and that there are "junk boxes" when you have left
and/or right gutters (dead boxes that are mistakenly left uncleared,
unlike the corresponding scrollbar dead boxes). Update the text
appropriately to cover the bottom gutter position, etc.
Rewrite gutter-geometry code to use the FRAME_*_GUTTER_* in place of
equivalent expressions referencing other frame elements, to make the
code more portable in case we move around the gutter location.
Cleanup FRAME_*_GUTTER_BOUNDS() in gutter.h.
Add some #### GEOM! comments where I think code is incorrect --
typically, it wasn't fixed up properly when the gutter was added.
Some cosmetic changes.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Wed, 03 Mar 2010 05:07:47 -0600 |
parents | 3078fd1074e8 |
children |
rev | line source |
---|---|
448 | 1 %{ |
2 /* | |
3 * Copyright (c) 2000, Red Hat, Inc. | |
4 * | |
5 * This program is free software; you can redistribute it and/or modify | |
6 * it under the terms of the GNU General Public License as published by | |
7 * the Free Software Foundation; either version 2 of the License, or | |
8 * (at your option) any later version. | |
9 * | |
10 * A copy of the GNU General Public License can be found at | |
11 * http://www.gnu.org/ | |
12 * | |
13 * Written by DJ Delorie <dj@cygnus.com> | |
14 * | |
15 */ | |
16 | |
17 /* Parse the setup.ini files. inilex.l provides the tokens for this. */ | |
18 | |
19 #include <stdio.h> | |
20 #include <stdlib.h> | |
21 #include <string.h> | |
22 #include "win32.h" | |
23 | |
24 #include "ini.h" | |
25 #include "iniparse.h" | |
26 | |
27 #include "port.h" | |
28 | |
29 #define YYERROR_VERBOSE 1 | |
30 /*#define YYDEBUG 1*/ | |
31 | |
32 static Package *cp; | |
33 static int trust; | |
34 extern unsigned int setup_timestamp; | |
35 extern char *setup_version; | |
36 extern int yylineno; | |
37 extern int CDECL yyerror (char *s, ...); | |
38 | |
39 #define cpt (cp->info+trust) | |
40 | |
41 %} | |
42 | |
43 %token STRING | |
44 %token SETUP_TIMESTAMP SETUP_VERSION VERSION INSTALL SOURCE SDESC LDESC TYPE | |
45 %token T_PREV T_CURR T_TEST T_UNKNOWN | |
46 | |
47 %% | |
48 | |
49 whole_file | |
50 : setup_headers packages | |
51 ; | |
52 | |
53 setup_headers | |
54 : setup_header setup_headers | |
55 | /* empty */ | |
56 ; | |
57 | |
58 setup_header | |
59 : SETUP_TIMESTAMP STRING '\n' { setup_timestamp = strtoul ($2, 0, 0); } | |
60 | SETUP_VERSION STRING '\n' { setup_version = strdup ($2); } | |
61 | '\n' | |
62 | error { yyerror ("unrecognized line in setup.ini headers (do you have the latest setup?)"); } '\n' | |
63 ; | |
64 | |
65 packages | |
66 : package packages | |
67 | /* empty */ | |
68 ; | |
69 | |
70 package | |
71 : '@' STRING '\n' { new_package($2); } | |
72 lines | |
73 ; | |
74 | |
75 lines | |
76 : simple_line '\n' lines | |
77 | simple_line | |
78 ; | |
79 | |
80 simple_line | |
81 : VERSION STRING { cpt->version = $2; } | |
82 | SDESC STRING { cp->sdesc = $2; } | |
83 | LDESC STRING { cp->ldesc = $2; } | |
84 | INSTALL STRING STRING { cpt->install = $2; | |
85 cpt->install_size = atoi($3); } | |
86 | SOURCE STRING STRING { cpt->source = $2; | |
87 cpt->source_size = atoi($3); } | |
88 | TYPE STRING { if (!strcmp ($2, "cygwin")) | |
89 cp->type = TY_CYGWIN; | |
90 else if (!strcmp ($2, "native")) | |
91 cp->type = TY_NATIVE; | |
92 else | |
93 cp->type = TY_GENERIC; } | |
94 | T_PREV { trust = TRUST_PREV; } | |
95 | T_CURR { trust = TRUST_CURR; } | |
96 | T_TEST { trust = TRUST_TEST; } | |
97 | T_UNKNOWN { trust = TRUST_UNKNOWN; } | |
98 | /* empty */ | |
99 | error '\n' { yylineno --; | |
100 yyerror ("unrecognized line in package %s (do you have the latest setup?)", cp->name); | |
101 yylineno ++; | |
102 } | |
103 ; | |
104 | |
105 %% | |
106 | |
107 Package *package = 0; | |
108 Package *xemacs_package = 0; | |
109 int npackages = 0; | |
110 static int maxpackages = 0; | |
111 | |
112 Package * | |
113 new_package (char *name) | |
114 { | |
115 if (package == 0) | |
116 maxpackages = npackages = 0; | |
117 if (npackages >= maxpackages) | |
118 { | |
119 maxpackages += 10; | |
120 if (package) | |
121 package = (Package *) realloc (package, maxpackages * sizeof (Package)); | |
122 else | |
123 package = (Package *) malloc (maxpackages * sizeof (Package)); | |
124 } | |
125 cp = package + npackages; | |
126 npackages ++; | |
127 | |
128 memset (cp, 0, sizeof (Package)); | |
129 cp->name = name; | |
130 | |
131 trust = TRUST_CURR; | |
132 | |
133 return cp; | |
134 } |