Mercurial > hg > xemacs-beta
annotate nt/installer/Wise/README @ 964:8d610ea37af8
[xemacs-hg @ 2002-08-16 08:15:18 by michaels]
2002-08-13 David Bush <David.Bush@intel.com>
* device-msw.c: Correct initialization list for devmode_description
Add dumpable flag to msprinter-settings for USE_KKCC
* dialog-msw.c: Add dumpable flag to mswindows-dialog-id for USE_KKCC
* event-msw.c (mswindows_enqueue_misc_user_event): With USE_KKCC
use mutator macros to set event parameters
* event-msw.c (mswindows_enqueue_magic_event): With USE_KKCC
use mutator macros to set event parameters
* event-msw.c (mswindows_enqueue_process_event): With USE_KKCC
use mutator macros to set event parameters
* event-msw.c (mswindows_enqueue_mouse_button_event): Reorder
event setup so event type is set first to support USE_KKCC.
For USE_KKCC use mutator macros to set event parameters
* event-msw.c (mswindows_enqueue_keypress_event): With USE_KKCC
use mutator macros to set event parameters
* event-msw.c (mswindows_dequeue_dispatch_event): With USE_KKCC
use accessor to get and mutator macros to set event parameters
* event-msw.c (mswindows_cancel_dispatch_event): With USE_KKCC
use accessor macros to get event parameters
* event-msw.c (mswindows_wm_timer_callback): With USE_KKCC
use mutator macros to set event parameters
* event-msw.c (mswindows_dde_callback): With USE_KKCC
use mutator macros to set event parameters
* event-msw.c (mswindows_wnd_proc): With USE_KKCC
use mutator macros to set event parameters
* event-msw.c (emacs_mswindows_remove_timeout): With USE_KKCC
use mutator macros to set event parameters
* event-msw.c (emacs_mswindows_format_magic_event): With USE_KKCC
use accessor macro to access magic event type
* event-msw.c (emacs_mswindows_compare_magic_event): With USE_KKCC
use accessor macro to access magic event type
* event-msw.c (emacs_mswindows_hash_magic_event): With USE_KKCC
use accessor macro to access magic event type
* event-msw.c (emacs_mswindows_handle_magic_event): With USE_KKCC
use accessor macro to access magic event type and event data
* event-msw.c (emacs_mswindows_quit_p): With USE_KKCC use event
accessor and mutator macros to get/set event parameters
* gui-msw.c (mswindows_handle_gui_wm_command): For USE_KKCC
use mutator macros to set event parameters. Make the event
data type match the event type.
* menubar-msw.c (mswindows_popup_menu): With USE_KKCC use
accessor macros to extract button position
author | michaels |
---|---|
date | Fri, 16 Aug 2002 08:15:42 +0000 |
parents | 74fd4e045ea6 |
children |
rev | line source |
---|---|
398 | 1 To use: |
2 | |
3 You need to build and install the XEmacs distribution. Also you need | |
4 the xemacs packages in both source and installed versions. | |
5 | |
6 Edit "dirs.py" to reflect the locations of the above components. | |
7 | |
8 Edit "version.py" to reflect the current version, as well as the | |
9 welcome message. | |
10 | |
11 Run | |
12 python pre_wise.py > xemacs-XXX.wse | |
13 | |
14 (for XXX use a version or date code of your choosing) | |
15 | |
16 Run | |
17 cmd /c xemacs-XXX.wse | |
18 | |
19 to produce xemacs-XXX.exe | |
20 | |
21 | |
22 "pre_wise.py" is a preprocessor for the Wise installer maker. It | |
23 reads "xemacs.tmpl" which is a Wise input file, except that certain | |
24 portions are enclosed in triple angle brackets <<<like this>>> | |
25 | |
26 These portions are evaluated as Python expressions and replaced by the | |
27 string representations of the resulting value. This allows for | |
28 things to change from release to release without having to re-do the | |
29 Wise installation each time. Also it keeps you from having to | |
30 manually drag-n-drop all the package files, which is rather tedious! | |
31 |