Mercurial > hg > xemacs-beta
annotate lwlib/ChangeLog @ 4524:03ba50f7ecd7
Commit ChangeLog for bbce7f6de2d6.
| author | Stephen J. Turnbull <stephen@xemacs.org> |
|---|---|
| date | Wed, 29 Oct 2008 04:02:05 +0900 |
| parents | fc7067b7f407 |
| children | b58af9a9765d |
| rev | line source |
|---|---|
|
4524
03ba50f7ecd7
Commit ChangeLog for bbce7f6de2d6.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
1 2008-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
|
03ba50f7ecd7
Commit ChangeLog for bbce7f6de2d6.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
2 |
|
03ba50f7ecd7
Commit ChangeLog for bbce7f6de2d6.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
3 * lwlib-Xm.c (xm_update_progress): Set all values! |
|
03ba50f7ecd7
Commit ChangeLog for bbce7f6de2d6.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
4 |
| 4173 | 5 2007-09-15 Jerry James <james@xemacs.org> |
| 6 | |
| 7 * xlwmenu.c (XlwMenuDestroy): Release XftFont resources | |
| 8 * xlwtabs.c (TabsDestroy): Ditto | |
| 9 | |
| 3975 | 10 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
| 11 | |
| 12 * XEmacs 21.5.28 "fuki" is released. | |
| 13 | |
| 3968 | 14 2007-05-20 Stephen J. Turnbull <stephen@xemacs.org> |
| 15 | |
| 16 Gauge values are signed integers (ints). | |
| 17 | |
| 18 * xlwgauge.h: Get rid of references to Cardinal in comment. | |
| 19 (XawGaugeGetValue): Declare return value as int. | |
| 20 (XawGaugeSetValue): Declare value as int. | |
| 21 | |
| 22 * xlwgauge.c (GaugeGetValue): Declare value as int. | |
| 23 (GaugeMercury): Declare val0 and val1 as int. Remove redundant casts. | |
| 24 (XawGaugeGetValue): Declare return value as int. | |
| 25 (XawGaugeSetValue): Declare value as int. | |
| 26 | |
| 3958 | 27 2007-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
| 28 | |
| 29 * lwlib-Xaw.c (wm_delete_window): Iterate over children of shell | |
| 30 (there may be more than one) to find our widget. | |
| 31 | |
| 3685 | 32 2006-11-17 Stephen J. Turnbull <stephen@xemacs.org> |
| 33 | |
| 34 * xlwmenu.c (xlwMenuResources): | |
| 35 * xlwmenu.c (XlwMenuInitialize): | |
| 36 * xlwmenuP.h (_XlwMenu_part): | |
| 37 * xlwtabs.c (resources): | |
| 38 * xlwtabs.c (TabsInit): | |
| 39 * xlwtabsP.h (TabsPart): | |
| 40 New xftFontName member in each widget part struct, corresponds to | |
| 41 xftFont String resource. | |
| 42 Initialize renderFont private member from fcFontName if non-NULL, | |
| 43 otherwise initialize from xftFontName. | |
| 44 | |
| 45 * xlwtabs.h: Update parameter table. | |
| 46 | |
| 3462 | 47 2006-06-16 Jerry James <james@xemacs.org> |
| 48 | |
| 49 * lwlib-Xlw.c (xlw_scrollbar_callback): Do not dereference | |
| 50 instance before checking whether it is NULL. | |
| 51 * xlwmenu.c (xlw_map_menu): Prevent uninitialized access to root | |
| 52 and waste. | |
| 53 | |
| 3402 | 54 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
| 55 | |
| 56 * XEmacs 21.5.27 "fiddleheads" is released. | |
| 57 | |
| 3397 | 58 2006-05-12 Stephen J. Turnbull <stephen@xemacs.org> |
| 59 | |
| 60 Make fcFontName and xftFont separate resources. | |
| 61 | |
| 62 * lwlib-fonts.h (XtNfcFontName, XtCFcFontName): New macros. | |
| 63 (XtNxftFont, XtCXftFont): Coalesce the conditional definitions. | |
| 64 | |
| 65 * xlwmenuP.h (XlwMenuPart): | |
| 66 * xlwtabsP.h (TabsPart): | |
| 67 Rename renderFontSpec member to fcFontName. | |
| 68 | |
| 69 * xlwmenu.c (XlwMenuResources): | |
| 70 * xlwtabs.c (resources): | |
| 71 Add a record for fcFontName. | |
| 72 | |
| 73 * xlwtabs.c (TabsInit): Use the fcFontName resource, not xftFont. | |
| 74 | |
| 75 * xlwtabs.c (DrawTab,TabLayout,TabsGeometryManager): Improve | |
| 76 diagnostics. | |
| 77 | |
| 3374 | 78 2006-04-24 Jerry James <james@xemacs.org> |
| 79 | |
| 80 * lwlib-Xaw.c (lw_debug_print_class_resources): Casting from a | |
| 81 pointer to an int throws away half of the bits on an x86_64 | |
| 82 platform. Print as a pointer instead. | |
| 83 * xlwgauge.c (XawGaugeSetValue): Use NULL instead of 0 as the | |
| 84 sentinel to quiet gcc warnings. | |
| 85 * xlwmenu.c: Cast to FcChar8 * as necessary to quiet warnings. | |
| 86 * xlwtabs.c: Ditto. | |
| 87 | |
| 3360 | 88 2006-04-16 Stephen J. Turnbull <stephen@xemacs.org> |
| 3354 | 89 |
| 3360 | 90 * lwlib-fonts.c: Change #include to "font-mgr.h". Make |
| 91 conditional on HAVE_FONTCONFIG, not USE_XFT. | |
| 3354 | 92 |
| 3323 | 93 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
| 94 | |
| 95 * XEmacs 21.5.26 "endive" is released. | |
| 96 | |
| 3259 | 97 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
| 98 | |
| 99 * XEmacs 21.5.25 "eggplant" is released. | |
| 100 | |
| 3157 | 101 2005-12-21 Andrey Slusar <anrays@gmail.com> |
| 102 | |
| 103 * xlwmenu.c (make_drawing_gcs): Fix build with gcc 2.95. | |
| 104 | |
| 3150 | 105 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
| 106 | |
| 107 * XEmacs 21.5.24 "dandelion" is released. | |
| 108 | |
| 3094 | 109 2005-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
| 110 | |
| 111 Merge Xft. | |
| 112 | |
| 113 2005-11-25 Stephen J. Turnbull <stephen@xemacs.org> | |
| 114 | |
| 115 * lwlib-colors: Improve comments. | |
| 116 | |
| 117 2005-11-25 Stephen J. Turnbull <stephen@xemacs.org> | |
| 118 | |
| 119 * lwlib-colors: Remove or comment out dead code. | |
| 120 | |
| 121 2005-09-26 Olivier Galibert <galibert@xemacs.org> | |
| 122 | |
| 123 * xlwmenu.c: | |
| 124 * xlwmenuP.h: | |
| 125 Give USE_XFT_MENUBARS priority over USE_MOTIF. | |
| 126 | |
| 127 2005-09-06 Stephen J. Turnbull <stephen@xemacs.org> | |
| 128 | |
| 129 * lwlib-fonts.c (xft_open_font_by_name): Fix heuristic for XLFDs. | |
| 130 | |
| 131 * xlwmenu.c (string_draw_range): Recommend persistent xftDraw. | |
| 132 | |
| 133 2005-09-02 Daniel Pittman <daniel@rimspace.net> | |
| 134 | |
| 135 * lwlib-fonts.c (xft_open_font_by_name): Eliminate code to avoid | |
| 136 use of scaled fonts (probably bogus, anyway). Add error message | |
| 137 in case of fatal failure to find any fonts at all. | |
| 138 <87ll2fucw1.fsf@rimspace.net> | |
| 139 | |
| 140 * xlwmenu.c (string_draw_range): Plug leak of XftDraw. | |
| 141 | |
| 142 2005-03-09 Stephen J. Turnbull <stephen@xemacs.org> | |
| 143 | |
| 144 * xlwtabs.c (TabsGeometryManager): Fix "fat fingers" mistake. | |
| 145 | |
| 146 2005-03-07 Stephen J. Turnbull <stephen@xemacs.org> | |
| 147 | |
| 148 * lwlib-Xaw.c (debug_gauge): Fix and suppress gauge debug message. | |
| 149 | |
| 150 * xlwtabs.c (TabsGeometryManager): Suppress "kludging" message, too. | |
| 151 (TabsGeometryManager): Make straight the paths of the layout, or | |
| 152 at least improve the approximation to Xt conventions by 50%. | |
| 153 | |
| 154 2005-02-22 Stephen J. Turnbull <stephen@xemacs.org> | |
| 155 | |
| 156 * xlwtabs.c(debug_tabs): Suppress debug output for now. | |
| 157 | |
| 158 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> | |
| 159 | |
| 160 * xlwtabs.c (TabsGeometryManager,TabsQueryGeometry): Improve comments. | |
| 161 (debug_tabs): New variable, substitute for debug_xft globally. | |
| 162 (TabsGeometryManager): Substitute "request" for "req". | |
| 163 | |
| 164 2005-02-11 Stephen J. Turnbull <stephen@xemacs.org> | |
| 165 | |
| 166 * xlwtabs.c (PreferredSize3): Let TabLayout choose constraints. | |
| 167 (TabLayout): Default size to current size. Fix header comment. | |
| 168 (TabsGeometryManager): Comment on redesigning internal API. | |
| 169 (TabsGeometryManager): Fix typo in format string. | |
| 170 | |
| 171 2005-01-27 Stephen J. Turnbull <stephen@xemacs.org> | |
| 172 | |
| 173 * xlwtabs.c (DrawTab): | |
| 174 Correct geometry when clearing rectangle. | |
| 175 Remove some "check me" comments. | |
| 176 Deemphasize a lot of debugging output. | |
| 177 (TabLayout): Add debugging fprintf. | |
| 178 (TabWidth): Deemphasize some debugging output. | |
| 179 | |
| 180 2004-12-10 Stephen J. Turnbull <stephen@xemacs.org> | |
| 181 | |
| 182 * lwlib-Xaw.c (xaw_create_button): | |
| 183 (xaw_create_progress): | |
| 184 (xaw_create_text_field): | |
| 185 Changed XtCreateManagedWidget to XtCreateWidget when child is | |
| 186 managed later in the same function. | |
| 187 | |
| 188 (debug_gauge): New variable. | |
| 189 (lw_debug_print_xt_arglist): | |
| 190 (lw_debug_print_class_resources): | |
| 191 New debug functions. | |
| 192 | |
| 193 2004-12-09 Stephen J. Turnbull <stephen@xemacs.org> | |
| 194 | |
| 195 * xlwmenu.c (xlwMenuResources): Use "redundant" XftFont resource. | |
| 196 | |
| 197 * xlwtabs.c: | |
| 198 * xlwtabsP.h: | |
| 199 Use USE_XFT_TABS consistently. | |
| 200 | |
| 201 2004-12-01 Stephen J. Turnbull <stephen@xemacs.org> | |
| 202 | |
| 203 * xlwtabs.c: Move debug_xft to ../src/xft-fonts.c. | |
| 204 | |
| 205 2004-11-20 Stephen J. Turnbull <stephen@xemacs.org> | |
| 206 | |
| 207 Xft branch based on "Xft reloaded #3" patch by Eric Knauel and | |
| 208 Mathias Neuebaur, and other contributors. | |
| 209 | |
| 210 * lwlib-fonts.h: | |
| 211 * lwlib-colors.h: | |
| 212 Declare common facilities use by Xft. | |
| 213 * lwlib-fonts.c: | |
| 214 * lwlib-colors.c: | |
| 215 Implement them. | |
| 216 * xlwtabs.c: | |
| 217 * xlwtabsP.h: | |
| 218 * xlwmenu.c: | |
| 219 * xlwmenuP.h: | |
| 220 Implement Xft text drawing. | |
| 221 | |
| 3083 | 222 2005-11-22 Ben Wing <ben@xemacs.org> |
| 223 | |
| 224 * Makefile.in.in: | |
| 225 Ignore errors from rm during clean. | |
| 226 | |
| 3072 | 227 2005-11-16 Stephen J. Turnbull <stephen@xemacs.org> |
| 228 | |
| 229 * xlwcheckbox.c (CheckboxInit): Mark unused parameters. C++ | |
| 230 correctness. | |
| 231 (CheckboxRealize): Don't compile at all if unused. | |
| 232 | |
| 233 * xlwradio.c (RadioDestroy): #if 0 dead code for later removal. | |
| 234 | |
| 3062 | 235 2005-11-13 Ben Wing <ben@xemacs.org> |
| 236 | |
| 237 * Makefile.in.in: | |
| 238 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
| 239 Do some refactoring for cleanliness. | |
| 240 | |
| 3055 | 241 2005-11-08 Marcus Crestani <crestani@xemacs.org> |
| 242 | |
| 243 * xlwgauge.c (GaugeInit): | |
| 244 * xlwgauge.c (GaugeSetValues): | |
| 245 * xlwradio.c (RadioInit): | |
| 246 * xlwradio.c (RadioSetValues): Rename new->new_. | |
| 247 | |
| 3031 | 248 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
| 249 | |
| 250 * XEmacs 21.5.23 "daikon" is released. | |
| 251 | |
| 3025 | 252 2005-10-25 Ben Wing <ben@xemacs.org> |
| 253 | |
| 254 * lwlib-internal.h (assert): | |
| 255 redo assert macros to follow lisp.h and not trigger warnings. | |
| 256 | |
| 257 * lwlib.c (merge_scrollbar_values): | |
| 258 * lwlib.c (merge_widget_value_args): | |
| 259 * xlwtabs.c: | |
| 260 * xlwtabs.c (TabsInit): | |
| 261 * xlwtabs.c (TabsConstraintInitialize): | |
| 262 * xlwtabs.c (TabsSetValues): | |
| 263 * xlwtabs.c (TabsConstraintSetValues): | |
| 264 new -> new_. | |
| 265 | |
| 2931 | 266 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
| 267 | |
| 268 * XEmacs 21.5.22 "cucumber" is released. | |
| 269 | |
| 2791 | 270 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
| 271 | |
| 272 * XEmacs 21.5.21 "corn" is released. | |
| 273 | |
| 2653 | 274 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
| 275 | |
| 276 * XEmacs 21.5.20 "cilantro" is released. | |
| 277 | |
| 2641 | 278 2005-03-07 Stephen J. Turnbull <stephen@xemacs.org> |
| 279 | |
| 280 * lwlib-Xlw.c (build_tabs_in_widget): Correctly disable geometry | |
| 281 negotiation for tab children. | |
| 282 (xlw_create_tab_control): Don't set nonexistent resizable resource. | |
| 283 | |
| 2594 | 284 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
| 285 | |
| 286 * XEmacs 21.5.19 "chives" is released. | |
| 287 | |
| 2346 | 288 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
| 289 | |
| 290 * XEmacs 21.5.18 "chestnut" is released. | |
| 291 | |
| 2311 | 292 2004-09-27 Jerry James <james@xemacs.org> |
| 293 | |
| 294 * lwlib-Xm.c (xm_update_label): | |
| 295 (xm_update_progress): | |
| 296 (activate_button): | |
| 297 (make_dialog): | |
| 298 (mark_dead_instance_destroyed): | |
| 299 (xm_nosel_callback): | |
| 300 Mark more unused parameters with the UNUSED macro. | |
| 301 | |
| 2286 | 302 2004-09-14 Jerry James <james@xemacs.org> |
| 303 | |
| 304 * Makefile.in.in (cppflags): Make compiler.h available. | |
| 305 * config.h.in: Include compiler.h. | |
| 306 * lwlib.c (max): Remove; now defined in compiler.h. | |
| 307 (merge_widget_value): Fix misplaced `change' computation. | |
| 308 * xlwcheckbox.c (DrawCheck): conditionalize declaration and | |
| 309 assignment of variable bw like its use. | |
| 310 * xlwtabs.c (TabsResize): Comment out declaration and assignment | |
| 311 of variable tab, whose use is commented out. | |
| 312 | |
| 313 * lwlib-Xaw.c: | |
| 314 * lwlib-Xlw.c: | |
| 315 * lwlib-Xm.c: | |
| 316 * lwlib-utils.c: | |
| 317 * lwlib.c: | |
| 318 * xlwcheckbox.c: | |
| 319 * xlwgauge.c: | |
| 320 * xlwgcs.c: | |
| 321 * xlwmenu.c: | |
| 322 * xlwradio.c: | |
| 323 * xlwscrollbar.c: | |
| 324 * xlwtabs.c: | |
| 325 Mark unused parameters with the UNUSED macro. | |
| 326 | |
| 2271 | 327 2004-09-14 Jerry James <james@xemacs.org> |
| 328 | |
| 329 * xlwgauge.c (GaugeConvert): Fix type-punning warning. | |
| 330 | |
| 2041 | 331 2004-04-23 Jerry James <james@xemacs.org> |
| 332 | |
| 333 * xlwradio.c (RadioExpose): Do not blindly copy one GC over | |
| 334 another. It messes up the ref counts and is wrong for radio | |
| 335 buttons in any case. | |
| 336 | |
| 1964 | 337 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
| 338 | |
| 339 * XEmacs 21.5.17 "chayote" is released. | |
| 340 | |
| 1889 | 341 2003-09-22 Stephen J. Turnbull <stephen@xemacs.org> |
| 342 | |
| 343 * Makefile.in.in (XE_CFLAGS): New variant on CFLAGS for XEMACS_CC. | |
| 344 | |
| 1716 | 345 2003-09-26 Steve Youngs <youngs@xemacs.org> |
| 346 | |
| 347 * XEmacs 21.5.16 "celeriac" is released. | |
| 348 | |
| 1665 | 349 2003-09-03 Steve Youngs <youngs@xemacs.org> |
| 350 | |
| 351 * XEmacs 21.5.15 "celery" is released. | |
| 352 | |
| 1650 | 353 2003-08-28 Jerry James <james@xemacs.org> |
| 354 | |
| 355 * lwlib-internal.h: Wrap assert_failed with EXTERN_C for modules. | |
| 356 | |
| 1510 | 357 2003-06-01 Steve Youngs <youngs@xemacs.org> |
| 358 | |
| 359 * XEmacs 21.5.14 "cassava" is released. | |
| 360 | |
| 1473 | 361 2003-05-10 Steve Youngs <youngs@xemacs.org> |
| 362 | |
| 363 * XEmacs 21.5.13 "cauliflower" is released. | |
| 364 | |
| 1458 | 365 2003-05-05 Steve Youngs <youngs@xemacs.org> |
| 366 | |
| 367 * lwlib-Xm.c (xm_update_one_widget): Only call | |
| 368 `xm_update_progress' if `LWLIB_WIDGETS_MOTIF' is defined. | |
| 369 | |
| 1431 | 370 2003-04-24 Steve Youngs <youngs@xemacs.org> |
| 371 | |
| 372 * XEmacs 21.5.12 "carrot" is released. | |
| 373 | |
| 1389 | 374 2003-03-27 Stephen J. Turnbull <stephen@xemacs.org> |
| 375 | |
| 376 * xlwscrollbar.c: Global substitution of .Xresources for .Xdefaults. | |
| 377 | |
| 1330 | 378 2003-02-28 Ben Wing <ben@xemacs.org> |
| 379 | |
| 380 * lwlib-Xm.c: | |
| 381 Fix compile warning. | |
| 382 | |
| 1307 | 383 2003-02-16 Steve Youngs <youngs@xemacs.org> |
| 384 | |
| 385 * XEmacs 21.5.11 "cabbage" is released. | |
| 386 | |
| 1294 | 387 2003-02-13 Martin Buchholz <martin@xemacs.org> |
| 388 | |
| 389 * xlwmenu.c (xlwMenuClassRec): | |
| 390 Use symbolic name `XtExposeCompressMaximal' instead of `TRUE'. | |
| 391 | |
| 1281 | 392 2003-01-31 Martin Buchholz <martin@xemacs.org> |
| 393 | |
| 394 * lwlib-Xm.c (xm_update_progress): | |
| 395 Don't define unless LWLIB_WIDGETS_MOTIF. | |
| 396 | |
| 1261 | 397 2003-02-05 Ben Wing <ben@xemacs.org> |
| 398 | |
| 399 * lwlib-Xm.c: | |
| 400 * lwlib-Xm.c (xm_pop_down_callback): | |
| 401 * lwlib-Xm.c (xm_pull_down_callback): | |
| 402 Fix compile warning. | |
| 403 | |
| 1201 | 404 2002-12-16 Ben Wing <ben@xemacs.org> |
| 405 | |
| 406 * lwlib-Xlw.c (xlw_update_one_widget): | |
| 407 * lwlib-Xm.c (xm_update_one_widget): | |
| 408 * lwlib-Xm.c (xm_update_one_value): | |
| 409 * lwlib.c: | |
| 410 * lwlib.c (merge_scrollbar_values): | |
| 411 * xlwmenu.c: | |
| 412 * xlwmenu.c (display_menu): | |
| 413 * xlwmenu.c (XlwMenuInitialize): | |
| 414 * xlwmenu.c (XlwMenuSetValues): | |
| 415 * xlwradio.c: | |
| 416 * xlwradio.c (RadioClassPartInit): | |
| 417 * xlwradio.c (RadioSet): | |
| 418 * xlwradio.c (RadioUnset): | |
| 419 class -> class_, new -> new_. | |
| 420 | |
| 1187 | 421 2003-01-04 Steve Youngs <youngs@xemacs.org> |
| 422 | |
| 423 * XEmacs 21.5.10 "burdock" is released. | |
| 424 | |
| 981 | 425 2002-08-30 Steve Youngs <youngs@xemacs.org> |
| 426 | |
| 427 * XEmacs 21.5.9 "brussels sprouts" is released. | |
| 428 | |
| 933 | 429 2002-07-27 Steve Youngs <youngs@xemacs.org> |
| 430 | |
| 431 * XEmacs 21.5.8 "broccoli" is released. | |
| 432 | |
| 903 | 433 2002-06-07 Andy Piper <andy@xemacs.org> |
| 434 | |
| 435 * lwlib-Xm.c: (xm_safe_update_label): new function. Call | |
| 436 xm_update_label if the class is appropriate. | |
| 437 (make_menu_in_widget): use it. | |
| 438 (update_one_menu_entry): ditto. | |
| 439 (xm_update_one_widget): ditto. | |
| 440 | |
| 894 | 441 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
| 442 | |
| 443 * XEmacs 21.5.7 "broccoflower" is released. | |
| 444 | |
| 872 | 445 2002-06-20 Ben Wing <ben@xemacs.org> |
| 446 | |
| 447 * lwlib.c: | |
| 448 * lwlib.c (dialog_spec_p): Fix warning. | |
| 449 | |
| 805 | 450 2002-02-13 Stephen J. Turnbull <stephen@xemacs.org> |
| 451 | |
| 452 * lwlib-Xm.c (make_dialog): Fix XmProcessTraversal crash. | |
| 453 | |
| 804 | 454 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
| 455 | |
| 456 * XEmacs 21.5.6 "bok choi" is released. | |
| 457 | |
| 774 | 458 2002-03-12 Ben Wing <ben@xemacs.org> |
| 459 | |
| 3322 | 460 * The Great Mule Merge of March 2002: |
| 461 see node by that name in the Internals Manual. | |
| 774 | 462 |
| 768 | 463 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
| 464 | |
| 465 * XEmacs 21.5.5 "beets" is released. | |
| 466 | |
| 766 | 467 2001-12-19 Valdis Kletnieks <Valdis.Kletnieks@vt.edu> |
| 468 | |
| 469 * xlwscrollbar.c: Fix Xt translations comment. | |
| 470 | |
| 725 | 471 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> |
| 472 | |
| 473 * XEmacs 21.5.4 "bamboo" is released. | |
| 474 | |
| 654 | 475 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> |
| 476 | |
| 477 * XEmacs 21.5.3 "asparagus" is released. | |
| 478 | |
| 647 | 479 2001-06-24 Ben Wing <ben@xemacs.org> |
| 480 | |
| 481 * lwlib-Xlw.c (xlw_update_tab_control): | |
| 482 * lwlib-utils.c (XtApplyUntilToWidgets): | |
| 483 * xlwgauge.c (XawGaugeSetValue): | |
| 484 * xlwgauge.c (GaugeMercury): | |
| 485 * xlwmenu.c (close_to_reference_time): | |
| 486 * xlwtabs.c (TabsSetValues): | |
| 487 * xlwtabs.c (TabsSelect): | |
| 488 * xlwtabs.c (DrawTabs): | |
| 489 Fix unsigned warnings. See src/ChangeLog for details. | |
| 490 | |
| 641 | 491 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> |
| 492 | |
| 493 * XEmacs 21.5.2 "artichoke" is released. | |
| 494 | |
| 639 | 495 2001-07-26 Andy Piper <andy@xemacs.org> |
| 496 | |
| 497 * lwlib-Xm.c (xm_update_progress): new function. Set Scale height | |
| 498 and width from normal height and width. | |
| 499 * lwlib-Xm.c (xm_create_progress): ditto. | |
| 500 * lwlib-Xm.c (xm_update_one_widget): call xm_update_progress. | |
| 501 * lwlib.c (lw_get_value_arg): new function. Return an argument | |
| 502 based on its name. | |
| 503 * lwlib.h: declare it. | |
| 504 | |
| 551 | 505 2001-05-21 Martin Buchholz <martin@xemacs.org> |
| 506 | |
| 507 * lwlib-config.c: Remove. | |
| 508 * Makefile.in.in: Remove references to lwlib-config. | |
| 509 | |
| 522 | 510 2001-05-09 Martin Buchholz <martin@xemacs.org> |
| 511 | |
| 512 * XEmacs 21.5.1 "anise" is released. | |
| 513 | |
| 487 | 514 2001-04-28 Ben Wing <ben@xemacs.org> |
| 515 | |
| 516 * lwlib-utils.c (destroy_all_children): fix warning reported by | |
| 517 Isaac Hollander <ysh@mindspring.com>. | |
| 518 | |
| 472 | 519 2001-04-18 Martin Buchholz <martin@xemacs.org> |
| 520 | |
| 521 * XEmacs 21.5.0 "alfalfa" is released. | |
| 522 | |
| 464 | 523 2001-03-30 Stephen J. Turnbull <stephen@xemacs.org> |
| 524 | |
| 525 * ChangeLog: Restore logs lost in the GTK merge. | |
| 526 | |
| 462 | 527 2001-03-21 Martin Buchholz <martin@xemacs.org> |
| 458 | 528 |
| 462 | 529 * XEmacs 21.2.46 "Urania" is released. |
| 456 | 530 |
| 464 | 531 2001-03-15 Stephen J. Turnbull <stephen@xemacs.org> |
| 532 | |
| 533 * xlwradio.c: Revert gratuitous whitespace changes from GTK merge. | |
| 534 | |
| 535 2001-02-23 Martin Buchholz <martin@xemacs.org> | |
| 536 | |
| 537 * XEmacs 21.2.45 "Thelxepeia" is released. | |
| 538 | |
| 539 2001-02-16 Raymond Toy <toy@rtp.ericsson.se> | |
| 540 | |
| 541 * lwlib-Xaw.c: Always include ATHENA_AsciiText_h_ to get the | |
| 542 text-field widget. | |
| 543 (xaw_creation_table): Always include the text-field widget | |
| 544 | |
| 545 2001-02-08 Martin Buchholz <martin@xemacs.org> | |
| 546 | |
| 547 * XEmacs 21.2.44 "Thalia" is released. | |
| 548 | |
| 549 2001-02-06 Martin Buchholz <martin@xemacs.org> | |
| 550 | |
| 551 * xlwgauge.c: | |
| 552 * xlwgcs.c: | |
| 553 * xlwgcs.c (XtAllocateGC): Fix typo for X11R4. | |
| 554 * xlwgcs.h: | |
| 555 * xlwradio.c (RadioExpose): | |
| 556 * xlwcheckbox.c: | |
| 557 Remove use of BSD-specific types. | |
| 558 s/u_(char|short|int_long)/unsigned $1/g | |
| 559 | |
| 560 2001-02-05 Martin Buchholz <martin@xemacs.org> | |
| 561 | |
| 562 * lwlib-Xm.c (xm_update_one_value): | |
| 563 Obey the man page; use XtFree instead of free. | |
| 564 | |
| 565 2001-02-02 Martin Buchholz <martin@xemacs.org> | |
| 566 | |
| 567 * config.h.in: Use "..." to include config.h | |
| 568 | |
| 569 2001-01-26 Martin Buchholz <martin@xemacs.org> | |
| 570 | |
| 571 * XEmacs 21.2.43 "Terspichore" is released. | |
| 572 | |
| 454 | 573 2001-01-20 Martin Buchholz <martin@xemacs.org> |
| 574 | |
| 575 * XEmacs 21.2.42 "Poseidon" is released. | |
| 576 | |
| 452 | 577 2001-01-17 Martin Buchholz <martin@xemacs.org> |
| 578 | |
| 579 * XEmacs 21.2.41 "Polyhymnia" is released. | |
| 580 | |
| 450 | 581 2001-01-08 Martin Buchholz <martin@xemacs.org> |
| 582 | |
| 583 * XEmacs 21.2.40 is released. | |
| 584 | |
| 585 2001-01-06 Martin Buchholz <martin@xemacs.org> | |
| 586 | |
| 587 * lwlib-Xaw.c (xaw_creation_table): Make const. | |
| 588 * lwlib-Xaw.h (xaw_creation_table): Make const. | |
| 589 * lwlib-Xlw.c (xlw_creation_table): Make const. | |
| 590 * lwlib-Xlw.h (xlw_creation_table): Make const. | |
| 591 * lwlib-Xm.c (xm_creation_table): Make const. | |
| 592 * lwlib-Xm.h (xm_creation_table): Make const. | |
| 593 * lwlib.c (find_in_table): Use const. | |
| 594 | |
| 595 2001-01-02 Andy Piper <andy@xemacs.org> | |
| 596 | |
| 597 * lwlib.h (_widget_args): add args_changed. Necessary because we | |
| 598 reference count args. | |
| 599 | |
| 600 * lwlib.c (lw_add_widget_value_arg): set args_changed flag. | |
| 601 (merge_widget_value_args): mark as changed if args_changed is | |
| 602 true. | |
| 603 (update_all_widget_values): reset args_changed. | |
| 604 (initialize_widget_instance): ditto. | |
| 605 | |
| 448 | 606 2000-12-31 Martin Buchholz <martin@xemacs.org> |
| 607 | |
| 608 * XEmacs 21.2.39 is released. | |
| 609 | |
| 610 2000-12-30 Andy Piper <andy@xemacs.org> | |
| 611 | |
| 612 * xlwtabs.c: remove assertion definitions and put them in | |
| 613 lwlib-internal.h. This has the effect of enabling assertions which | |
| 614 should have been done from the very start. | |
| 615 (TabsShuffleRows): fix duff assertion. | |
| 616 (PreferredSize3): use dimensions throughout. | |
| 617 (PreferredSize2): ditto. | |
| 618 (TabLayout): ditto. | |
| 619 (DrawFrame): be clever about the enclosing frame if the child | |
| 620 height is 0. | |
| 621 (TabsResize): don't configure children that are no visible | |
| 622 anyway. Make sure geometry calculations don't end up negative. | |
| 623 | |
| 624 * lwlib-internal.h: put in assertion definitions. | |
| 625 | |
| 446 | 626 2000-12-05 Martin Buchholz <martin@xemacs.org> |
| 627 | |
| 628 * XEmacs 21.2.38 is released. | |
| 629 | |
| 630 2000-11-30 Andy Piper <andy@xemacs.org> | |
| 631 | |
| 632 * lwlib-Xm.c (xm_update_label): Hack to stop %_ labels until | |
| 633 someone fixes it properly. | |
| 634 | |
| 635 2000-11-24 Andy Piper <andy@xemacs.org> | |
| 636 | |
| 637 * xlwtabsP.h: add visible flag, realRows and remove displayChildren. | |
| 638 | |
| 639 * xlwtabs.c (TabVisible): new macro. Consults visible flag. | |
| 640 (TabsInit): remove displayChildren, add realRows. | |
| 641 (TabsConstraintInitialize): ditto. | |
| 642 (TabsResize): ditto. | |
| 643 (TabsGeometryManager): ditto. | |
| 644 (TabsChangeManaged): ditto. | |
| 645 (TabsSelect): ditto. | |
| 646 (TabsPage): ditto. | |
| 647 (TabsHighlight): ditto. | |
| 648 (DrawTabs): ditto. | |
| 649 (TabLayout): Caclulate rows for all children and whether they | |
| 650 should be visible or not.. | |
| 651 (TabsShuffleRows): shuffle rows based on both real and displayed | |
| 652 rows. Adjust visibility of all children. | |
| 653 (PreferredSize): ditto. | |
| 654 | |
| 655 2000-11-19 Martin Buchholz <martin@xemacs.org> | |
| 656 | |
| 657 * xlwtabs.c (TabsResize): Don't delete `tab', mark unused instead. | |
| 658 | |
| 659 2000-11-18 Martin Buchholz <martin@xemacs.org> | |
| 660 | |
| 661 * xlwmenu.c (make_windows_if_needed): | |
| 662 (XlwMenuRealize): | |
| 663 The proper type for `mask' is `unsigned long', not `int'. | |
| 664 | |
| 665 2000-11-18 Martin Buchholz <martin@xemacs.org> | |
| 666 | |
| 667 * xlwtabs.c (defaultAccelerators): Add #### to unused var. | |
| 668 (TabsResize): Remove unused var. | |
| 669 * xlwmenu.c (XlwMenuInitialize): Remove unused vars. | |
| 670 * lwlib-Xlw.c (xlw_update_one_widget): Add #### for probable bug. | |
| 671 | |
| 444 | 672 2000-11-14 Martin Buchholz <martin@xemacs.org> |
| 673 | |
| 674 * XEmacs 21.2.37 is released. | |
| 675 | |
| 676 2000-11-02 Stephen J. Turnbull <stephen@xemacs.org> | |
| 677 | |
| 678 * lwlib.h: Typo fixes and tiny clarifications. | |
| 679 | |
| 442 | 680 2000-10-04 Martin Buchholz <martin@xemacs.org> |
| 681 | |
| 682 * XEmacs 21.2.36 is released. | |
| 683 | |
| 444 | 684 2000-09-21 Andy Piper <andy@xemacs.org> |
| 685 | |
| 686 * lwlib.h: declare copy_widget_value_tree. | |
| 687 | |
| 688 * lwlib.c (copy_widget_value_tree): make non-static. | |
| 689 | |
| 442 | 690 2000-09-19 Martin Buchholz <martin@xemacs.org> |
| 691 | |
| 692 * *: Spelling mega-patch | |
| 693 | |
| 694 2000-09-16 Martin Buchholz <martin@xemacs.org> | |
| 695 | |
| 696 * lwlib.c (ascii_strcasecmp): New. | |
| 697 * lwlib.c (find_in_table): Use ascii_strcasecmp. | |
| 698 Avoid using non-standard non-portable strcasecmp. | |
| 699 | |
| 700 2000-08-02 Stephen J. Turnbull <stephen@xemacs.org> | |
| 701 | |
| 702 * xlwmenu.c (XlwMenuInitialize): make comment on algorithm for | |
| 703 setting fontList match code. Suggest using same algorithm for | |
| 704 X Font Set resources in native lw code. | |
| 705 | |
| 706 2000-07-30 Ben Wing <ben@xemacs.org> | |
| 707 | |
| 708 * lwlib-Xaw.c (xaw_update_one_widget): | |
| 709 Remove accelerator specs from buttons, since Athena doesn't handle | |
| 710 them. | |
| 711 | |
| 712 * lwlib.c (lw_remove_accelerator_spec): | |
| 713 * lwlib.h: | |
| 714 Define function and prototype to do this. | |
| 715 | |
| 716 2000-07-15 Ben Wing <ben@xemacs.org> | |
| 717 | |
| 718 * xlwradioP.h: | |
| 719 Remove duplicate definition of streq(). | |
| 720 | |
| 721 2000-07-19 Martin Buchholz <martin@xemacs.org> | |
| 722 | |
| 723 * XEmacs 21.2.35 is released. | |
| 724 | |
| 725 2000-07-09 Martin Buchholz <martin@xemacs.org> | |
| 726 | |
| 727 * xlwcheckbox.c: | |
| 728 * xlwgauge.h: | |
| 729 * xlwgaugeP.h: | |
| 730 * xlwradio.h: | |
| 731 * xlwradioP.h: | |
| 732 * xlwgauge.c: | |
| 733 * config.h.in: | |
| 734 * xlwradio.c: | |
| 735 * lwlib-Xaw.c: | |
| 736 Replace SMART_INCLUDE with a dumber, but more reliable method. | |
| 737 | |
| 738 * xlwmenu.c (parameterize_string): Fix C++ compilation warnings. | |
| 739 | |
| 740 2000-06-10 Ben Wing <ben@xemacs.org> | |
| 741 | |
| 742 * lwlib-Xaw.c (xaw_create_label): add sanity check on arg limit. | |
| 743 (xaw_update_one_value): fix crash due to incorrect arg count. | |
| 744 | |
| 745 2000-05-28 Martin Buchholz <martin@xemacs.org> | |
| 746 | |
| 747 * XEmacs 21.2.34 is released. | |
| 748 | |
| 749 2000-05-01 Martin Buchholz <martin@xemacs.org> | |
| 750 | |
| 751 * XEmacs 21.2.33 is released. | |
| 752 | |
| 753 2000-04-19 Martin Buchholz <martin@xemacs.org> | |
| 754 | |
| 755 * lwlib.c (lw_destroy_everything): Always use full ANSI prototypes. | |
| 756 * lwlib.c (lw_destroy_all_pop_ups): Always use full ANSI prototypes. | |
| 757 | |
| 758 2000-04-12 Andy Piper <andy@xemacs.org> | |
| 759 | |
| 760 * lwlib-Xaw.c (xaw_update_one_widget): no-op for text widgets. | |
| 761 (xaw_update_one_value): Get strings safely. | |
| 762 (xaw_create_text_field): add some extra properties. | |
| 763 | |
| 764 2000-04-05 Andy Piper <andy@xemacs.org> | |
| 765 | |
| 766 * lwlib-Xaw.c (lw_xaw_widget_p): include asciiTextWidgetClass as | |
| 767 an athena widget. | |
| 768 | |
| 769 2000-04-05 Andy Piper <andy@xemacs.org> | |
| 770 | |
| 771 * xlwradio.c (RadioSetValues): resize if position information has | |
| 772 changed. | |
| 773 | |
| 774 * lwlib-Xm.c (xm_create_text_field): text fields should be enabled | |
| 775 even if there is no callback. | |
| 776 * lwlib-Xaw.c (xaw_create_text_field): ditto. | |
| 777 | |
| 778 2000-04-03 Andy Piper <andy@xemacs.org> | |
| 779 | |
| 780 * lwlib.c (merge_widget_value_args): only merge when the two args | |
| 781 are actually different. | |
| 782 | |
| 783 2000-03-21 Didier Verna <didier@xemacs.org> | |
| 784 | |
| 785 * config.h.in: move INCLUDE_GLUE_1 and INCLUDE_GLUE_2 to | |
| 786 src/config.h.in. | |
| 787 * config.h.in (ATHENA_INCLUDE): use the `SMART_INCLUDE' macro. | |
| 788 | |
| 789 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
| 790 | |
| 791 * XEmacs 21.2.32 is released. | |
| 792 | |
| 793 2000-03-14 Ben Wing <ben@xemacs.org> | |
| 794 | |
| 795 * xlwmenu.c (massage_resource_name): Handle %_ and %%. | |
| 796 | |
| 797 2000-02-20 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
| 798 | |
| 799 * xlwscrollbar.c (get_gc): Always check for XmUNSPECIFIED_PIXMAP | |
| 800 even if we are only 'compatible' with the Motif resources. | |
| 801 (XmUNSPECIFIED_PIXMAP): Define unconditionally. | |
| 802 | |
| 803 2000-02-23 Martin Buchholz <martin@xemacs.org> | |
| 804 | |
| 805 * XEmacs 21.2.31 is released. | |
| 806 | |
| 807 2000-02-22 Andy Piper <andy@xemacs.org> | |
| 808 | |
| 809 * lwlib-Xm.c (xm_update_one_widget): set widget args last in case | |
| 810 anything messes with them in the meantime. | |
| 811 * lwlib-Xlw.c (xlw_update_one_widget): ditto. | |
| 812 * lwlib-Xaw.c (xaw_update_one_widget): ditto. | |
| 813 | |
| 814 2000-02-21 Martin Buchholz <martin@xemacs.org> | |
| 815 | |
| 816 * XEmacs 21.2.30 is released. | |
| 817 | |
| 818 2000-02-21 Andy Piper <andy@xemacs.org> | |
| 819 | |
| 820 * lwlib.c (merge_widget_value_args): don't delete the args before | |
| 821 copying, lw_copy_widget_value_args will do this for us if | |
| 822 necessary. | |
| 823 (lw_add_widget_value_arg): Allow existing args to be replaced. | |
| 824 (free_widget_value_args): Set args to 0 rather than 0xdeadbeef, | |
| 825 reference couting works better that way. | |
| 826 (lw_copy_widget_value_args): Do the right thing. | |
| 827 | |
| 828 * lwlib-Xm.c (xm_create_progress): Make sensitive as this looks | |
| 829 much better. | |
| 830 * lwlib-Xaw.c (xaw_create_progress): ditto. | |
| 831 | |
| 832 2000-02-12 Jan Vroonhof <vroonhof@math.ethz.ch> | |
| 833 | |
| 834 * xlwmenu.h (XmUNSPECIFIED_PIXMAP): Define this if we are using Motif | |
| 835 compatible resource names. | |
| 836 | |
| 837 * xlwmenu.c (make_shadow_gcs): Always check for XmUNSPECIFIED_PIXMAP | |
| 838 even if we are only 'compatible' with the Motif resources. | |
| 839 | |
| 840 2000-02-15 Andy Piper <andy@xemacs.org> | |
| 841 | |
| 842 * xlwgauge.c (GaugeExpose): remove shadows. | |
| 843 | |
| 844 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
| 845 | |
| 846 * XEmacs 21.2.29 is released. | |
| 847 | |
| 848 2000-02-09 Valdis Kletnieks <Valdis.Kletnieks@vt.edu> | |
| 849 | |
| 850 * config.h.in (ATHENA_INCLUDE): Workaround bugs in both xlc and | |
| 851 old gccs. | |
| 852 | |
| 440 | 853 2000-02-07 Martin Buchholz <martin@xemacs.org> |
| 854 | |
| 855 * XEmacs 21.2.28 is released. | |
| 856 | |
| 857 2000-01-25 Andy Piper <andy@xemacs.org> | |
| 858 | |
| 859 * xlwtabs.c (TabsChangeManaged): Make sure we unmanage the hilight | |
| 860 widget as well. | |
| 861 | |
| 862 2000-01-28 Martin Buchholz <martin@xemacs.org> | |
| 863 | |
| 864 * xlwgauge.c (GaugeConvert): bcopy ==> memcpy | |
| 865 | |
| 866 2000-01-24 Andy Piper <andy@xemacs.org> | |
| 867 | |
| 868 * xlwtabs.c (XawTabsSetTop): Unhighlight before changing the | |
| 869 stacking order. | |
| 870 (XawTabsSetHighlight): Don't unhighlight here. | |
| 871 | |
| 872 2000-01-22 Martin Buchholz <martin@xemacs.org> | |
| 873 | |
| 874 * *.h: Use consistent C-standards-approved guard macro names. | |
| 875 | |
| 438 | 876 2000-01-18 Martin Buchholz <martin@xemacs.org> |
| 877 | |
| 878 * XEmacs 21.2.27 is released. | |
| 879 | |
| 880 2000-01-15 Andy Piper <andy@xemacs.org> | |
| 881 | |
| 882 * lwlib-Xlw.c (lw_update_one_widget): make sure global | |
| 883 properties gets set. | |
| 884 | |
| 885 2000-01-07 Martin Buchholz <martin@xemacs.org> | |
| 886 | |
| 887 * config.h.in (ATHENA_INCLUDE): CPP trickery to make old cpps happy. | |
| 888 This extends support for gcc 2.6 (e.g. on BSD/OS 2.0) | |
| 889 | |
| 890 * lwlib.c: Fix up memset calls. | |
| 891 | |
| 892 * lwlib-Xm.c (xm_update_text): Warning suppression. | |
| 893 (xm_update_text_field): Warning suppression. | |
| 894 | |
| 895 2000-01-03 Martin Buchholz <martin@xemacs.org> | |
| 896 | |
| 897 * lwlib-Xaw.c (xaw_update_one_widget): Emergency fix for this crash: | |
| 898 (yes-or-no-p-dialog-box "Yes or No") | |
| 899 | |
| 436 | 900 1999-12-31 Martin Buchholz <martin@xemacs.org> |
| 901 | |
| 902 * XEmacs 21.2.26 is released. | |
| 903 | |
| 904 1999-12-29 Andy Piper <andy@xemacs.org> | |
| 905 | |
| 906 * xlwtabs.c (TabsHighlight): use displayChildren for highlighting | |
| 907 not num_children. | |
| 908 (TabsPage): ditto. | |
| 909 | |
| 434 | 910 1999-12-24 Martin Buchholz <martin@xemacs.org> |
| 911 | |
| 912 * XEmacs 21.2.25 is released. | |
| 913 | |
| 914 1999-12-23 Andy Piper <andy@xemacs.org> | |
| 915 | |
| 916 * lwlib.c (lw_copy_widget_value_args): don't create empty | |
| 917 widget_args just because someone might use them later. This makes | |
| 918 all widgets look like they've changed. | |
| 919 | |
| 920 1999-12-22 Andy Piper <andy@xemacs.org> | |
| 921 | |
| 922 * xlwtabs.c: Fix for X11R5 from Damon Lipparelli | |
| 923 <lipp@primus.com>. | |
| 924 | |
| 925 1999-12-21 Martin Buchholz <martin@xemacs.org> | |
| 926 | |
| 927 * xlwscrollbar.c (seg_pixel_sizes): ((expr)) ==> (expr) | |
| 928 | |
| 929 1999-12-12 Daniel Pittman <daniel@danann.net> | |
| 930 | |
| 442 | 931 * lwlib-Xaw.c: |
| 434 | 932 * xlwcheckbox.c: |
| 933 * xlwgauge.h: | |
| 934 * xlwgaugeP.h: | |
| 935 * xlwradio.c: | |
| 936 * xlwradio.h: | |
| 937 * xlwradioP.h: | |
| 938 Clean up Athena widget support: | |
| 939 - Athena headers now use dynamic include paths. | |
| 940 | |
| 941 1999-12-08 Andy Piper <andy@xemacs.org> | |
| 942 | |
| 943 * xlwtabs.c: sync with Tabs 2.2. | |
| 944 * xlwtabP.h: ditto. | |
| 945 | |
| 432 | 946 1999-12-14 Martin Buchholz <martin@xemacs.org> |
| 947 | |
| 948 * XEmacs 21.2.24 is released. | |
| 949 | |
| 950 1999-12-14 Andy Piper <andy@xemacs.org> | |
| 951 | |
| 952 * xlwtabs.c (TabsResize): reset need_layout so that we don't go | |
| 953 into infloop death. | |
| 954 | |
| 955 1999-12-14 Andy Piper <andy@xemacs.org> | |
| 956 | |
| 957 * xlwtabs.c (TabsSetValues): re-allocate GCs if font has changed. | |
| 958 | |
| 959 1999-12-13 Andy Piper <andy@xemacs.org> | |
| 960 | |
| 961 * xlwtabs.c (TabsResize): We need to expose the tabs after | |
| 962 clearing the window they are in. | |
| 963 | |
| 964 1999-12-08 Andy Piper <andy@xemacs.org> | |
| 965 | |
| 966 * xlwtabs.c: sync with Tabs 2.1. | |
| 967 | |
| 968 1999-12-07 Andy Piper <andy@xemacs.org> | |
| 969 | |
| 970 * lwlib-Xlw.c (lw_lucid_widget_p): make sure we pick up the | |
| 971 clip-window as well. | |
| 972 | |
| 430 | 973 1999-12-07 Martin Buchholz <martin@xemacs.org> |
| 974 | |
| 975 * XEmacs 21.2.23 is released. | |
| 976 | |
| 977 1999-12-05 Andy Piper <andy@xemacs.org> | |
| 978 | |
| 979 * xlwtabs.c: back up to previous rev to make syncing easier. Fix | |
| 980 gcc moans. | |
| 981 | |
| 982 * lwlib-Xaw.c (xaw_update_one_widget): use XtIsSubclass. | |
| 983 | |
| 428 | 984 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org> |
| 985 | |
| 986 * XEmacs 21.2.22 is released | |
| 987 | |
| 988 1999-11-28 Martin Buchholz <martin@xemacs.org> | |
| 989 | |
| 990 * XEmacs 21.2.21 is released. | |
| 991 | |
| 992 1999-11-26 Martin Buchholz <martin@xemacs.org> | |
| 993 | |
| 994 * xlwtabs.c: Remove unused variables. Fix warnings. | |
| 995 | |
| 996 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org> | |
| 997 | |
| 998 * XEmacs 21.2.20 is released | |
| 999 | |
| 1000 1999-09-09 Andy Piper <andy@xemacs.org> | |
| 1001 | |
| 1002 * xlwtabs.c: updated tabs widget from Ed Falk. | |
| 1003 * xlwtabs.h: ditto. | |
| 1004 * xlwtabsP.h: ditto. | |
| 1005 | |
| 1006 1999-09-22 Martin Buchholz <martin@xemacs.org> | |
| 1007 | |
| 1008 * lwlib-internal.h: | |
| 1009 * lwlib-utils.h: | |
| 1010 Move declaration of destroy_all_children from lwlib-internal.h to | |
| 1011 lwlib-utils.h, where it belongs. | |
| 1012 | |
| 1013 1999-09-21 Andy Piper <andy@xemacs.org> | |
| 1014 | |
| 1015 * lwlib-Xm.c (xm_update_label): don't clobber pixmap type labels | |
| 1016 with text. | |
| 1017 | |
| 1018 1999-09-22 Martin Buchholz <martin@xemacs.org> | |
| 1019 | |
| 1020 * xlwtabs.c: Fix C++ compilability. | |
| 1021 | |
| 1022 1999-09-18 Andy Piper <andy@xemacs.org> | |
| 1023 | |
| 1024 * xlwtabs.c: Put in tabs sync because clipping should fix useability | |
| 1025 problems. | |
| 1026 | |
| 1027 1999-09-13 Andy Piper <andy@xemacs.org> | |
| 1028 | |
| 1029 * xlwtabs.c: Back out tabs sync because of reported useability | |
| 1030 problems. | |
| 1031 | |
| 1032 1999-09-09 Andy Piper <andy@xemacs.org> | |
| 1033 | |
| 1034 * xlwtabs.c: updated tabs widget from Ed Falk. | |
| 1035 * xlwtabs.h: ditto. | |
| 1036 * xlwtabsP.h: ditto. | |
| 1037 * xlwgcs.c: ditto. | |
| 1038 * xlwgcs.h: ditto. | |
| 1039 | |
| 1040 1999-09-03 Martin Buchholz <martin@xemacs.org> | |
| 1041 | |
| 1042 * xlwgauge.c: Ansify. | |
| 1043 Include <stdlib.h> to get prototype for atoi(). | |
| 1044 (GaugeSelect): Call GaugeExpose with the right number of args. | |
| 1045 (GaugeLoseSel): Call GaugeExpose with the right number of args. | |
| 442 | 1046 (GaugeConvert): This is a XtConvertSelectionProc, |
| 428 | 1047 so 5th parameter must be of type XtPointer, not XPointer. |
| 442 | 1048 (GaugeGetValue): This is a XtTimerCallbackProc, |
| 428 | 1049 so 2nd parameter must be of type XtIntervalId *, not XtIntervalId. |
| 442 | 1050 |
| 428 | 1051 |
| 1052 1999-09-01 Martin Buchholz <martin@xemacs.org> | |
| 1053 | |
| 1054 * lwlib.c (free_widget_value_contents): Use proper type for cast. | |
| 1055 | |
| 1056 * xlwradio.c: Use function prototypes everywhere. | |
| 1057 * xlwcheckbox.c: | |
| 1058 * xlwradio.c: | |
| 1059 * xlwradioP.h: Move declarations of non-static functions defined | |
| 1060 in xlwradio.c into xlwradioP.h. | |
| 1061 | |
| 1062 1999-09-02 Andy Piper <andy@xemacs.org> | |
| 1063 | |
| 1064 * xlwgcs.c: include xmu.h | |
| 1065 | |
| 1066 1999-09-01 Andy Piper <andy@xemacs.org> | |
| 1067 | |
| 1068 * xlwgauge.c: rearrange headers yet again. | |
| 1069 * xlwcheckbox.c: ditto. | |
| 1070 * xlwradio.c: ditto. | |
| 1071 * xlwtabs.c: ditto. | |
| 1072 | |
| 1073 1999-09-01 Andy Piper <andy@xemacs.org> | |
| 1074 | |
| 1075 * xlwgauge.c: use xmu.h | |
| 1076 * xlwcheckbox.c: ditto. | |
| 1077 * xlwradio.c: ditto. | |
| 1078 | |
| 1079 1999-08-31 Andy Piper <andy@xemacs.org> | |
| 1080 | |
| 1081 * xlwtabs.c: | |
| 1082 * xlwgcs.c: | |
| 1083 * xlwradio.c: | |
| 1084 * xlwcheckbox.c: | |
| 1085 * xlwgauge.c: Fix for losing systems without Xmu. | |
| 442 | 1086 |
| 428 | 1087 1999-08-31 Andy Piper <andy@xemacs.org> |
| 1088 | |
| 1089 * lwlib-Xm.c (xm_update_one_widget): fix for AIX compiler lossage. | |
| 1090 | |
| 1091 1999-08-30 Andy Piper <andy@xemacs.org> | |
| 1092 | |
| 1093 * lwlib.c (free_widget_value_contents): be more precise about | |
| 1094 freeing user defined args. | |
| 1095 | |
| 1096 * lwlib-Xaw.c (xaw_update_one_widget): make sure we use val not | |
| 1097 its contents for hierarchies one deep. | |
| 1098 | |
| 1099 1999-08-29 Andy Piper <andy@xemacs.org> | |
| 1100 | |
| 1101 * xlwtabs.c: temporary fixes pending a new release. | |
| 1102 * xlwtabsP.h: ditto. | |
| 1103 | |
| 1104 * lwlib-Xm.c (xm_update_one_widget): update user defined args. | |
| 1105 (xm_create_label): set args after creation as well as before. | |
| 1106 | |
| 1107 * lwlib-Xlw.c (xlw_create_tab_control): orient tabs horizontally. | |
| 1108 (xlw_update_tab_control): actually update the children rather than | |
| 1109 the parent. | |
| 1110 | |
| 1111 * lwlib-Xaw.c (xaw_update_one_widget): update user defined args. | |
| 1112 (xaw_create_label): set args after creation as well as before. | |
| 1113 | |
| 1114 1999-08-23 Andy Piper <andy@xemacs.org> | |
| 1115 | |
| 1116 * lwlib-Xm.c (xm_update_label): don't concatenate value to itself. | |
| 1117 | |
| 1118 * lwlib-Xm.c (xm_create_label_field): new function for creating labels. | |
| 1119 (xm_creation_table): use it. | |
| 1120 | |
| 1121 * lwlib-Xaw.c (xaw_create_label_field): new function for creating labels. | |
| 1122 (xaw_creation_table): use it. | |
| 1123 | |
| 1124 1999-08-16 Andy Piper <andy@xemacs.org> | |
| 1125 | |
| 1126 * lwlib.h: declare free_widget_value_tree. | |
| 1127 | |
| 1128 * lwlib.c (free_widget_value_tree): make non-static. | |
| 1129 | |
| 1130 * lwlib-Xm.c (xm_update_label): free val_string when updating. | |
| 1131 | |
| 1132 1999-08-04 Andy Piper <andy@xemacs.org> | |
| 1133 | |
| 1134 * lwlib-Xm.c (mark_dead_instance_destroyed): change so that its | |
| 1135 defined for widgets. | |
| 1136 (xm_nosel_callback): ditto. | |
| 1137 | |
| 1138 * xlwtabsP.h: sync with 1.5. | |
| 1139 | |
| 1140 * xlwtabs.c: sync with 1.18. | |
| 1141 | |
| 1142 1999-07-28 Andy Piper <andy@xemacs.org> | |
| 1143 | |
| 1144 * xlwtabs.c: new lucid tabs widget from Ed Falk. | |
| 1145 * xlwtabs.h: ditto. | |
| 1146 * xlwtabsP.h: ditto. | |
| 1147 * xlwgcs.c: GC manipulation for tab widgets. | |
| 1148 * xlwgcs.h: ditto. | |
| 1149 | |
| 1150 * xlwgauge.c: new athena gauge widget from Ed Falk. | |
| 1151 * xlwgauge.h: ditto. | |
| 1152 * xlwgaugeP.h: ditto. | |
| 1153 | |
| 1154 * xlwradio.c: new athena radio widget from Ed Falk. | |
| 1155 * xlwradio.h: ditto. | |
| 1156 * xlwradioP.h: ditto. | |
| 1157 | |
| 1158 * xlwcheckbox.c: new athena checkbox widget from Ed Falk. | |
| 1159 * xlwcheckbox.h: ditto. | |
| 1160 * xlwcheckboxP.h: ditto. | |
| 1161 | |
| 1162 * lwlib-utils.c (destroy_all_children): moved from lwlib-Xm.c. | |
| 1163 | |
| 1164 * lwlib-internal.h: declare destroy_all_children. | |
| 1165 | |
| 1166 * lwlib-config.c: add widget checks. | |
| 1167 | |
| 1168 * lwlib-Xm.h: declare xm_create_label; | |
| 1169 | |
| 1170 * lwlib-Xm.c (destroy_all_children): move to lwlib-utils.c. | |
| 1171 (xm_update_label): enable for widgets. | |
| 1172 (xm_update_one_widget): ditto. | |
| 1173 (xm_create_button): rename in line with lwlib-Xaw.c | |
| 1174 (xm_create_progress): ditto. | |
| 1175 (xm_create_text_field): ditto. | |
| 1176 (xm_create_combo_box): ditto. | |
| 1177 (xm_create_label): new function. | |
| 1178 (xm_creation_table): rename widget creation functions. | |
| 1179 (xm_destroy_instance): enable for widgets. | |
| 1180 (xm_generic_callback): ditto. | |
| 1181 (xm_generic_callback): ditto. | |
| 1182 | |
| 1183 * lwlib-Xlw.c (xlw_tab_control_callback): new function. a special | |
| 1184 callback that calls the correct function depending on what tab is | |
| 1185 selected. | |
| 1186 (xlw_create_tab_control): new function. | |
| 1187 (build_tabs_in_widget): new function. puts tabs in a tab widget, | |
| 1188 uses Xaw or Xm depending on how XEmacs was compiled. | |
| 1189 (xlw_update_tab_control): update the resources for each | |
| 1190 tab. optionally rebuild the contents of the tab widget. | |
| 1191 (xlw_creation_table): add tab widget creation function. | |
| 1192 (lw_lucid_widget_p): add tab widget. | |
| 1193 (xlw_update_one_widget): ditto. | |
| 1194 | |
| 1195 * lwlib-Xaw.h: declare xaw_create_label; | |
| 1196 | |
| 1197 * lwlib-Xaw.c (lw_xaw_widget_p): add widgets classes. | |
| 1198 (xaw_update_one_widget): ditto. | |
| 1199 (xaw_update_one_value): add code from the Xm version. | |
| 1200 (xaw_generic_callback): add Xm hack for setting command | |
| 1201 states. beef up lookup of call data. | |
| 1202 (xaw_create_button): new function. | |
| 1203 (xaw_create_label): new function for use by tab widget. | |
| 1204 (xaw_create_progress): new function. | |
| 1205 (xaw_create_text_field): new function. | |
| 1206 (xaw_creation_table): add new widget type creation functions. | |
| 1207 | |
| 1208 * Makefile.in.in: add dependencies for new lw widgets. | |
| 1209 | |
| 1210 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org> | |
| 1211 | |
| 1212 * XEmacs 21.2.19 is released | |
| 1213 | |
| 1214 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org> | |
| 1215 | |
| 1216 * XEmacs 21.2.18 is released | |
| 1217 | |
| 442 | 1218 1999-07-05 Didier Verna <didier@xemacs.org> |
| 428 | 1219 |
| 1220 * lwlib-Xm.c (xm_update_one_widget): add missing #ifdefs around | |
| 1221 call to xm_update_label. | |
| 1222 | |
| 1223 1999-06-28 Andy Piper <andy@xemacs.org> | |
| 1224 | |
| 1225 * lwlib-Xm.c: unconditionally enable text field & list code. | |
| 1226 (make_progress): new function. creates a slider. | |
| 1227 (make_text_field): new function. creates an edit field. | |
| 1228 (make_combo_box): new function. creates a combo box. | |
| 1229 (xm_creation_table): add new widget functions. | |
| 1230 | |
| 1231 1999-06-25 Andy Piper <andy@xemacs.org> | |
| 1232 | |
| 1233 * lwlib.h (_widget_value): add arglist slots. | |
| 1234 declare new functions. | |
| 1235 | |
| 1236 * lwlib.c (free_widget_value_contents): handle arglists when | |
| 1237 freeing. | |
| 1238 (lw_add_value_args_to_args): new function. add arglist entries | |
| 1239 from a widget_value structure. | |
| 1240 | |
| 1241 * lwlib-Xm.c (make_button): new function, create a motif button | |
| 1242 for display in a buffer as a glyph. | |
| 1243 (xm_creation_table): add make_button. | |
| 1244 | |
| 1245 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org> | |
| 1246 | |
| 1247 * XEmacs 21.2.17 is released | |
| 1248 | |
| 1249 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org> | |
| 1250 | |
| 1251 * XEmacs 21.2.16 is released | |
| 1252 | |
| 1253 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org> | |
| 1254 | |
| 1255 * XEmacs 21.2.15 is released | |
| 1256 | |
| 1257 1999-05-17 Jerry James <jerry@cs.ucsb.edu> | |
| 1258 | |
| 1259 * xlwmenu.c (make_shadow_gcs): Test bottom_shadow_pixmap before | |
| 1260 using it. | |
| 1261 | |
| 1262 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org> | |
| 1263 | |
| 1264 * XEmacs 21.2.14 is released | |
| 1265 | |
| 1266 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org> | |
| 1267 | |
| 1268 * XEmacs 21.2.13 is released | |
| 1269 | |
| 1270 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
| 1271 | |
| 1272 * XEmacs 21.2.12 is released | |
| 1273 | |
| 1274 1999-02-18 Martin Buchholz <martin@xemacs.org> | |
| 1275 | |
| 1276 * lwlib/xlwmenu.c (massage_resource_name): Fix compiler warning | |
| 1277 - Have to toupper ((int) (unsigned char) x) to be portable. |
