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