Mercurial > hg > xemacs-beta
view src/dialog-msw.c @ 2367:ecf1ebac70d8
[xemacs-hg @ 2004-11-04 23:05:23 by ben]
commit mega-patch
configure.in: Turn off -Winline and -Wchar-subscripts.
Use the right set of cflags when compiling modules.
Rewrite ldap configuration to separate the inclusion of lber
(needed in recent Cygwin) from the basic checks for the
needed libraries.
add a function for MAKE_JUNK_C; initially code was added to
generate xemacs.def using this, but it will need to be rewritten.
add an rm -f for junk.c to avoid weird Cygwin bug with cp -f onto
an existing file.
Sort list of auto-detected functions and eliminate unused checks for
stpcpy, setlocale and getwd.
Add autodetection of Cygwin scanf problems
BETA: Rewrite section on configure to indicate what flags are important
and what not.
digest-doc.c, make-dump-id.c, profile.c, sorted-doc.c: Add proper decls for main().
make-msgfile.c: Document that this is old junk.
Move proposal to text.c.
make-msgfile.lex: Move proposal to text.c.
make-mswin-unicode.pl: Convert error-generating code so that the entire message will
be seen as a single unrecognized token.
mule/mule-ccl.el: Update docs.
lispref/mule.texi: Update CCL docs.
ldap/eldap.c: Mule-ize.
Use EXTERNAL_LIST_LOOP_2 instead of deleted EXTERNAL_LIST_LOOP.
* XEmacs 21.5.18 "chestnut" is released.
---------------------------------------------------------------
MULE-RELATED WORK:
---------------------------------------------------------------
---------------------------
byte-char conversion
---------------------------
buffer.c, buffer.h, insdel.c, text.c: Port FSF algorithm for byte-char conversion, replacing broken
previous version. Track the char position of the gap. Add
functions to do char-byte conversion downwards as well as upwards.
Move comments about algorithm workings to internals manual.
---------------------------
work on types
---------------------------
alloc.c, console-x-impl.h, dump-data.c, dump-data.h, dumper.c, dialog-msw.c, dired-msw.c, doc.c, editfns.c, esd.c, event-gtk.h, event-msw.c, events.c, file-coding.c, file-coding.h, fns.c, glyphs-eimage.c, glyphs-gtk.c, glyphs-msw.c, glyphs-shared.c, glyphs-x.c, glyphs.c, glyphs.h, gui.c, hpplay.c, imgproc.c, intl-win32.c, lrecord.h, lstream.c, keymap.c, lisp.h, libsst.c, linuxplay.c, miscplay.c, miscplay.h, mule-coding.c, nas.c, nt.c, ntheap.c, ntplay.c, objects-msw.c, objects-tty.c, objects-x.c, print.c, process-nt.c, process.c, redisplay.h, select-common.h, select-gtk.c, select-x.c, sgiplay.c, sound.c, sound.h, sunplay.c, sysfile.h, sysdep.c, syswindows.h, text.c, unexnt.c, win32.c, xgccache.c: Further work on types. This creates a full set of types for all
the basic semantics of `char' that I have so far identified, so that
its semantics can always be identified for the purposes of proper
Mule-safe code, and the raw use of `char' always avoided.
(1) More type renaming, for consistency of naming.
Char_ASCII -> Ascbyte
UChar_ASCII -> UAscbyte
Char_Binary -> CBinbyte
UChar_Binary -> Binbyte
SChar_Binary -> SBinbyte
(2) Introduce Rawbyte, CRawbyte, Boolbyte, Chbyte, UChbyte, and
Bitbyte and use them.
(3) New types Itext, Wexttext and Textcount for separating out
the concepts of bytes and textual units (different under UTF-16
and UTF-32, which are potential internal encodings).
(4) qxestr*_c -> qxestr*_ascii.
lisp.h: New; goes with other qxe() functions. #### Maybe goes in a
different section.
lisp.h: Group generic int-type defs together with EMACS_INT defs.
lisp.h: * lisp.h (WEXTTEXT_IS_WIDE)
New defns.
lisp.h: New type to replace places where int occurs as a boolean.
It's signed because occasionally people may want to use -1 as
an error value, and because unsigned ints are viral -- see comments
in the internals manual against using them.
dynarr.c: int -> Bytecount.
---------------------------
Mule-izing
---------------------------
device-x.c: Partially Mule-ize.
dumper.c, dumper.h: Mule-ize. Use Rawbyte. Use stderr_out not printf. Use wext_*().
sysdep.c, syswindows.h, text.c: New Wexttext API for manipulation of external text that may be
Unicode (e.g. startup code under Windows).
emacs.c: Mule-ize. Properly deal with argv in external encoding.
Use wext_*() and Wexttext. Use Rawbyte.
#if 0 some old junk on SCO that is unlikely to be correct.
Rewrite allocation code in run-temacs.
emacs.c, symsinit.h, win32.c: Rename win32 init function and call it even earlier, to
initialize mswindows_9x_p even earlier, for use in startup code
(XEUNICODE_P).
process.c: Use _wenviron not environ under Windows, to get Unicode environment
variables.
event-Xt.c: Mule-ize drag-n-drop related stuff.
dragdrop.c, dragdrop.h, frame-x.c: Mule-ize.
text.h: Add some more stand-in defines for particular kinds of conversion;
use in Mule-ization work in frame-x.c etc.
---------------------------
Freshening
---------------------------
intl-auto-encap-win32.c, intl-auto-encap-win32.h: Regenerate.
---------------------------
Unicode-work
---------------------------
intl-win32.c, syswindows.h: Factor out common options to MultiByteToWideChar and
WideCharToMultiByte. Add convert_unicode_to_multibyte_malloc()
and convert_unicode_to_multibyte_dynarr() and use. Add stuff for
alloca() conversion of multibyte/unicode.
alloc.c: Use dfc_external_data_len() in case of unicode coding system.
alloc.c, mule-charset.c: Don't zero out and reinit charset Unicode tables. This fucks up
dump-time loading. Anyway, either we load them at dump time or
run time, never both.
unicode.c: Dump the blank tables as well.
---------------------------------------------------------------
DOCUMENTATION, MOSTLY MULE-RELATED:
---------------------------------------------------------------
EmacsFrame.c, emodules.c, event-Xt.c, fileio.c, input-method-xlib.c, mule-wnnfns.c, redisplay-gtk.c, redisplay-tty.c, redisplay-x.c, regex.c, sysdep.c: Add comment about Mule work needed.
text.h: Add more documentation describing why DFC routines were not written
to return their value. Add some other DFC documentation.
console-msw.c, console-msw.h: Add pointer to docs in win32.c.
emacs.c: Add comments on sources of doc info.
text.c, charset.h, unicode.c, intl-win32.c, intl-encap-win32.c, text.h, file-coding.c, mule-coding.c: Collect background comments and related to text matters and
internationalization, and proposals for work to be done, in text.c
or Internals manual, stuff related to specific textual API's in
text.h, and stuff related to internal implementation of Unicode
conversion in unicode.c. Put lots of pointers to the comments to
make them easier to find.
s/mingw32.h, s/win32-common.h, s/win32-native.h, s/windowsnt.h, win32.c: Add bunches of new documentation on the different kinds of
builds and environments under Windows and how they work.
Collect this info in win32.c. Add pointers to these docs in
the relevant s/* files.
emacs.c: Document places with long comments.
Remove comment about exiting, move to internals manual, put
in pointer.
event-stream.c: Move docs about event queues and focus to internals manual, put
in pointer.
events.h: Move docs about event stream callbacks to internals manual, put
in pointer.
profile.c, redisplay.c, signal.c: Move documentation to the Internals manual.
process-nt.c: Add pointer to comment in win32-native.el.
lisp.h: Add comments about some comment conventions.
lisp.h: Add comment about the second argument.
device-msw.c, redisplay-msw.c: @@#### comments are out-of-date.
---------------------------------------------------------------
PDUMP WORK (MOTIVATED BY UNICODE CHANGES)
---------------------------------------------------------------
alloc.c, buffer.c, bytecode.c, console-impl.h, console.c, device.c, dumper.c, lrecord.h, elhash.c, emodules.h, events.c, extents.c, frame.c, glyphs.c, glyphs.h, mule-charset.c, mule-coding.c, objects.c, profile.c, rangetab.c, redisplay.c, specifier.c, specifier.h, window.c, lstream.c, file-coding.h, file-coding.c: PDUMP:
Properly implement dump_add_root_block(), which never worked before,
and is necessary for dumping Unicode tables.
Pdump name changes for accuracy:
XD_STRUCT_PTR -> XD_BLOCK_PTR.
XD_STRUCT_ARRAY -> XD_BLOCK_ARRAY.
XD_C_STRING -> XD_ASCII_STRING.
*_structure_* -> *_block_*.
lrecord.h: some comments added about
dump_add_root_block() vs dump_add_root_block_ptr().
extents.c: remove incorrect comment about pdump problems with gap array.
---------------------------------------------------------------
ALLOCATION
---------------------------------------------------------------
abbrev.c, alloc.c, bytecode.c, casefiddle.c, device-msw.c, device-x.c, dired-msw.c, doc.c, doprnt.c, dragdrop.c, editfns.c, emodules.c, file-coding.c, fileio.c, filelock.c, fns.c, glyphs-eimage.c, glyphs-gtk.c, glyphs-msw.c, glyphs-x.c, gui-msw.c, gui-x.c, imgproc.c, intl-win32.c, lread.c, menubar-gtk.c, menubar.c, nt.c, objects-msw.c, objects-x.c, print.c, process-nt.c, process-unix.c, process.c, realpath.c, redisplay.c, search.c, select-common.c, symbols.c, sysdep.c, syswindows.h, text.c, text.h, ui-byhand.c: New macros {alloca,xnew}_{itext,{i,ext,raw,bin,asc}bytes} for
more convenient allocation of these commonly requested items.
Modify functions to use alloca_ibytes, alloca_array, alloca_extbytes,
xnew_ibytes, etc. also XREALLOC_ARRAY, xnew.
alloc.c: Rewrite the allocation functions to factor out repeated code.
Add assertions for freeing dumped data.
lisp.h: Moved down and consolidated with other allocation stuff.
lisp.h, dynarr.c: New functions for allocation that's very efficient when mostly in
LIFO order.
lisp.h, text.c, text.h: Factor out some stuff for general use by alloca()-conversion funs.
text.h, lisp.h: Fill out convenience routines for allocating various kinds of
bytes and put them in lisp.h. Use them in place of xmalloc(),
ALLOCA().
text.h: Fill out the convenience functions so the _MALLOC() kinds match
the alloca() kinds.
---------------------------------------------------------------
ERROR-CHECKING
---------------------------------------------------------------
text.h: Create ASSERT_ASCTEXT_ASCII() and ASSERT_ASCTEXT_ASCII_LEN()
from similar Eistring checkers and change the Eistring checkers to
use them instead.
---------------------------------------------------------------
MACROS IN LISP.H
---------------------------------------------------------------
lisp.h: Redo GCPRO declarations. Create a "base" set of functions that can
be used to generate any kind of gcpro sets -- regular, ngcpro,
nngcpro, private ones used in GC_EXTERNAL_LIST_LOOP_2.
buffer.c, callint.c, chartab.c, console-msw.c, device-x.c, dialog-msw.c, dired.c, extents.c, ui-gtk.c, rangetab.c, nt.c, mule-coding.c, minibuf.c, menubar-msw.c, menubar.c, menubar-gtk.c, lread.c, lisp.h, gutter.c, glyphs.c, glyphs-widget.c, fns.c, fileio.c, file-coding.c, specifier.c: Eliminate EXTERNAL_LIST_LOOP, which does not check for circularities.
Use EXTERNAL_LIST_LOOP_2 instead or EXTERNAL_LIST_LOOP_3
or EXTERNAL_PROPERTY_LIST_LOOP_3 or GC_EXTERNAL_LIST_LOOP_2
(new macro). Removed/redid comments on EXTERNAL_LIST_LOOP.
---------------------------------------------------------------
SPACING FIXES
---------------------------------------------------------------
callint.c, hftctl.c, number-gmp.c, process-unix.c: Spacing fixes.
---------------------------------------------------------------
FIX FOR GEOMETRY PROBLEM IN FIRST FRAME
---------------------------------------------------------------
unicode.c: Add workaround for newlib bug in sscanf() [should be fixed by
release 1.5.12 of Cygwin].
toolbar.c: bug fix for problem of initial frame being 77 chars wide on Windows.
will be overridden by my other ws.
---------------------------------------------------------------
FIX FOR LEAKING PROCESS HANDLES:
---------------------------------------------------------------
process-nt.c: Fixes for leaking handles. Inspired by work done by Adrian Aichner
<adrian@xemacs.org>.
---------------------------------------------------------------
FIX FOR CYGWIN BUG (Unicode-related):
---------------------------------------------------------------
unicode.c: Add workaround for newlib bug in sscanf() [should be fixed by
release 1.5.12 of Cygwin].
---------------------------------------------------------------
WARNING FIXES:
---------------------------------------------------------------
console-stream.c: `reinit' is unused.
compiler.h, event-msw.c, frame-msw.c, intl-encap-win32.c, text.h: Add stuff to deal with ANSI-aliasing warnings I got.
regex.c: Gather includes together to avoid warning.
---------------------------------------------------------------
CHANGES TO INITIALIZATION ROUTINES:
---------------------------------------------------------------
buffer.c, emacs.c, console.c, debug.c, device-x.c, device.c, dragdrop.c, emodules.c, eval.c, event-Xt.c, event-gtk.c, event-msw.c, event-stream.c, event-tty.c, events.c, extents.c, faces.c, file-coding.c, fileio.c, font-lock.c, frame-msw.c, glyphs-widget.c, glyphs.c, gui-x.c, insdel.c, lread.c, lstream.c, menubar-gtk.c, menubar-x.c, minibuf.c, mule-wnnfns.c, objects-msw.c, objects.c, print.c, scrollbar-x.c, search.c, select-x.c, text.c, undo.c, unicode.c, window.c, symsinit.h: Call reinit_*() functions directly from emacs.c, for clarity.
Factor out some redundant init code. Move disallowed stuff
that had crept into vars_of_glyphs() into complex_vars_of_glyphs().
Call init_eval_semi_early() from eval.c not in the middle of
vars_of_() in emacs.c since there should be no order dependency
in the latter calls.
---------------------------------------------------------------
ARMAGEDDON:
---------------------------------------------------------------
alloc.c, emacs.c, lisp.h, print.c: Rename inhibit_non_essential_printing_operations to
inhibit_non_essential_conversion_operations.
text.c: Assert on !inhibit_non_essential_conversion_operations.
console-msw.c, print.c: Don't do conversion in SetConsoleTitle or FindWindow to avoid
problems during armageddon. Put #errors for NON_ASCII_INTERNAL_FORMAT
in places where problems would arise.
---------------------------------------------------------------
CHANGES TO THE BUILD PROCEDURE:
---------------------------------------------------------------
config.h.in, s/cxux.h, s/usg5-4-2.h, m/powerpc.h: Add comment about correct ordering of this file.
Rearrange everything to follow this -- put all #undefs together
and before the s&m files. Add undefs for HAVE_ALLOCA, C_ALLOCA,
BROKEN_ALLOCA_IN_FUNCTION_CALLS, STACK_DIRECTION. Remove unused
HAVE_STPCPY, HAVE_GETWD, HAVE_SETLOCALE.
m/gec63.h: Deleted; totally broken, not used at all, not in FSF.
m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/altos.h, m/amdahl.h, m/apollo.h, m/att3b.h, m/aviion.h, m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h, m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/ews4800r.h, m/gould.h, m/hp300bsd.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h, m/intel386.h, m/iris4d.h, m/iris5d.h, m/iris6d.h, m/irist.h, m/isi-ov.h, m/luna88k.h, m/m68k.h, m/masscomp.h, m/mg1.h, m/mips-nec.h, m/mips-siemens.h, m/mips.h, m/news.h, m/nh3000.h, m/nh4000.h, m/ns32000.h, m/orion105.h, m/pfa50.h, m/plexus.h, m/pmax.h, m/powerpc.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h, m/sgi-challenge.h, m/symmetry.h, m/tad68k.h, m/tahoe.h, m/targon31.h, m/tekxd88.h, m/template.h, m/tower32.h, m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/xps100.h: Delete C_ALLOCA, HAVE_ALLOCA, STACK_DIRECTION,
BROKEN_ALLOCA_IN_FUNCTION_CALLS. All of this is auto-detected.
When in doubt, I followed recent FSF sources, which also have
these things deleted.
author | ben |
---|---|
date | Thu, 04 Nov 2004 23:08:28 +0000 |
parents | 04bc9d2f42c7 |
children | ab71ad6ff3dd |
line wrap: on
line source
/* Implements elisp-programmable dialog boxes -- MS Windows interface. Copyright (C) 1998 Kirill M. Katsnelson <kkm@kis.ru> Copyright (C) 2000, 2001, 2002, 2003 Ben Wing. This file is part of XEmacs. XEmacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. XEmacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with XEmacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Synched up with: Not in FSF. */ /* This file essentially Mule-ized (except perhaps some Unicode splitting). 5-2000. */ /* Author: Initially written by kkm, May 1998 */ #include <config.h> #include "lisp.h" #include "buffer.h" #include "frame-impl.h" #include "gui.h" #include "opaque.h" #include "console-msw-impl.h" #include "sysfile.h" Lisp_Object Qdialog_box_error; static Lisp_Object Q_initial_directory; static Lisp_Object Q_initial_filename; static Lisp_Object Q_filter_list; static Lisp_Object Q_allow_multi_select; static Lisp_Object Q_create_prompt_on_nonexistent; static Lisp_Object Q_overwrite_prompt; static Lisp_Object Q_file_must_exist; static Lisp_Object Q_no_network_button; static Lisp_Object Q_no_read_only_return; /* List containing all dialog data structures of currently popped up dialogs. */ static Lisp_Object Vdialog_data_list; /* List of popup frames wanting keyboard traversal handled */ static Lisp_Object Vpopup_frame_list; Lisp_Object Vdefault_file_dialog_filter_alist; /* DLUs per character metrics */ #define X_DLU_PER_CHAR 4 #define Y_DLU_PER_CHAR 8 /* Button metrics -------------- All buttons have height of 15 DLU. The minimum width for a button is 32 DLU, but it can be expanded to accommodate its text, so the width is calculated as 8 DLU per button plus 4 DLU per character. max (32, 6 * text_length). The factor of six is rather empirical, but it works better than 8 which comes from the definition of a DLU. Buttons are spaced with 6 DLU gap. Minimum distance from the button to the left or right dialog edges is 6 DLU, and the distance between the dialog bottom edge and buttons is 7 DLU. */ #define X_MIN_BUTTON 32 #define X_BUTTON_MARGIN 8 #define Y_BUTTON 15 #define X_BUTTON_SPACING 6 #define X_BUTTON_FROM_EDGE 6 #define Y_BUTTON_FROM_EDGE 7 /* Text field metrics ------------------ Text distance from left and right edges is the same as for buttons, and the top margin is 11 DLU. The static control has height of 2 DLU per control plus 8 DLU per each line of text. Distance between the bottom edge of the control and the button row is 15 DLU. Minimum width of the static control is 100 DLU, thus giving minimum dialog weight of 112 DLU. Maximum width is 300 DLU, and, if the text is wider than that, the text is wrapped on the next line. Each character in the text is considered 4 DLU wide. */ #define X_MIN_TEXT 100 #define X_AVE_TEXT 200 #define X_MAX_TEXT 300 #define X_TEXT_FROM_EDGE X_BUTTON_FROM_EDGE #define Y_TEXT_FROM_EDGE 11 #define Y_TEXT_MARGIN 2 #define Y_TEXT_FROM_BUTTON 15 #define X_MIN_TEXT_CHAR (X_MIN_TEXT / X_DLU_PER_CHAR) #define X_AVE_TEXT_CHAR (X_AVE_TEXT / X_DLU_PER_CHAR) #define X_MAX_TEXT_CHAR (X_MAX_TEXT / X_DLU_PER_CHAR) /* Layout algorithm ---------------- First we calculate the minimum width of the button row, excluding "from edge" distances. Note that the static control text can be narrower than X_AVE_TEXT only if both text and button row are narrower than that (so, even if text *can* be wrapped into 2 rows narrower than ave width, it is not done). Let WBR denote the width of the button row. Next, the width of the static field is determined. First, if all lines of text fit into max (WBR, X_MAX_TEXT), the width of the control is the same as the width of the longest line. Second, if all lines of text are narrower than X_MIN_TEXT, then width of the control is set to X_MIN_TEXT. Otherwise, width is set to max(WBR, X_AVE_TEXT). In this case, line wrapping will happen. If width of the text control is larger than that of the button row, then the latter is centered across the dialog, by giving it extra edge margins. Otherwise, minimal margins are given to the button row. */ #define ID_ITEM_BIAS 32 void mswindows_register_popup_frame (Lisp_Object frame) { Vpopup_frame_list = Fcons (frame, Vpopup_frame_list); } void mswindows_unregister_popup_frame (Lisp_Object frame) { Vpopup_frame_list = delq_no_quit (frame, Vpopup_frame_list); } /* Dispatch message to any dialog boxes. Return non-zero if dispatched. */ int mswindows_is_dialog_msg (MSG *msg) { LIST_LOOP_2 (data, Vdialog_data_list) { if (qxeIsDialogMessage (XMSWINDOWS_DIALOG_ID (data)->hwnd, msg)) return 1; } { LIST_LOOP_2 (popup, Vpopup_frame_list) { HWND hwnd = FRAME_MSWINDOWS_HANDLE (XFRAME (popup)); /* This is a windows feature that allows dialog type processing to be applied to standard windows containing controls. */ if (qxeIsDialogMessage (hwnd, msg)) return 1; } } return 0; } static const struct memory_description mswindows_dialog_id_description [] = { { XD_LISP_OBJECT, offsetof (struct mswindows_dialog_id, frame) }, { XD_LISP_OBJECT, offsetof (struct mswindows_dialog_id, callbacks) }, { XD_END } }; static Lisp_Object mark_mswindows_dialog_id (Lisp_Object obj) { struct mswindows_dialog_id *data = XMSWINDOWS_DIALOG_ID (obj); mark_object (data->frame); return data->callbacks; } DEFINE_LRECORD_IMPLEMENTATION ("mswindows-dialog-id", mswindows_dialog_id, 0, /* dump-able flag */ mark_mswindows_dialog_id, internal_object_printer, 0, 0, 0, mswindows_dialog_id_description, struct mswindows_dialog_id); /* Dialog procedure */ static BOOL CALLBACK dialog_proc (HWND hwnd, UINT msg, WPARAM w_param, LPARAM l_param) { switch (msg) { case WM_INITDIALOG: qxeSetWindowLong (hwnd, DWL_USER, l_param); break; case WM_DESTROY: { Lisp_Object data; data = VOID_TO_LISP ((void *) qxeGetWindowLong (hwnd, DWL_USER)); Vdialog_data_list = delq_no_quit (data, Vdialog_data_list); } break; case WM_COMMAND: { Lisp_Object fn, arg, data; struct mswindows_dialog_id *did; data = VOID_TO_LISP ((void *) qxeGetWindowLong (hwnd, DWL_USER)); did = XMSWINDOWS_DIALOG_ID (data); if (w_param != IDCANCEL) /* user pressed escape */ { assert (w_param >= ID_ITEM_BIAS && (EMACS_INT) w_param < XVECTOR_LENGTH (did->callbacks) + ID_ITEM_BIAS); get_gui_callback (XVECTOR_DATA (did->callbacks) [w_param - ID_ITEM_BIAS], &fn, &arg); mswindows_enqueue_misc_user_event (did->frame, fn, arg); } else mswindows_enqueue_misc_user_event (did->frame, Qrun_hooks, Qmenu_no_selection_hook); va_run_hook_with_args_trapping_problems (Qdialog, Qdelete_dialog_box_hook, 1, data, 0); DestroyWindow (hwnd); } break; default: return FALSE; } return TRUE; } /* Helper function which converts the supplied string STRING into Unicode and pushes it at the end of DYNARR */ static void push_lisp_string_as_unicode (unsigned_char_dynarr *dynarr, Lisp_Object string) { int length; Extbyte *uni_string; TO_EXTERNAL_FORMAT (LISP_STRING, string, ALLOCA, (uni_string, length), Qmswindows_unicode); Dynarr_add_many (dynarr, uni_string, length); Dynarr_add (dynarr, '\0'); Dynarr_add (dynarr, '\0'); } /* Given button TEXT, return button width in DLU */ static int button_width (Lisp_Object text) { /* !!#### do Japanese chars count as two? */ int width = X_DLU_PER_CHAR * ibyte_string_displayed_columns (XSTRING_DATA (text), XSTRING_LENGTH (text)); return max (X_MIN_BUTTON, width); } /* Unwind protection routine frees a dynarr opaqued into arg */ static Lisp_Object free_dynarr_opaque_ptr (Lisp_Object arg) { Dynarr_free (get_opaque_ptr (arg)); return arg; } /* Unwind protection decrements dialog count */ static Lisp_Object dialog_popped_down (Lisp_Object UNUSED (arg)) { popup_up_p--; return Qnil; } #define ALIGN_TEMPLATE \ { \ int slippage = Dynarr_length (template_) & 3; \ if (slippage) \ Dynarr_add_many (template_, &zeroes, slippage); \ } static struct { DWORD errmess; Ascbyte *errname; } common_dialog_errors[] = { { CDERR_DIALOGFAILURE, "CDERR_DIALOGFAILURE" }, { CDERR_FINDRESFAILURE, "CDERR_FINDRESFAILURE" }, { CDERR_INITIALIZATION, "CDERR_INITIALIZATION" }, { CDERR_LOADRESFAILURE, "CDERR_LOADRESFAILURE" }, { CDERR_LOADSTRFAILURE, "CDERR_LOADSTRFAILURE" }, { CDERR_LOCKRESFAILURE, "CDERR_LOCKRESFAILURE" }, { CDERR_MEMALLOCFAILURE, "CDERR_MEMALLOCFAILURE" }, { CDERR_MEMLOCKFAILURE, "CDERR_MEMLOCKFAILURE" }, { CDERR_NOHINSTANCE, "CDERR_NOHINSTANCE" }, { CDERR_NOHOOK, "CDERR_NOHOOK" }, { CDERR_NOTEMPLATE, "CDERR_NOTEMPLATE" }, { CDERR_REGISTERMSGFAIL, "CDERR_REGISTERMSGFAIL" }, { CDERR_STRUCTSIZE, "CDERR_STRUCTSIZE" }, { PDERR_CREATEICFAILURE, "PDERR_CREATEICFAILURE" }, { PDERR_DEFAULTDIFFERENT, "PDERR_DEFAULTDIFFERENT" }, { PDERR_DNDMMISMATCH, "PDERR_DNDMMISMATCH" }, { PDERR_GETDEVMODEFAIL, "PDERR_GETDEVMODEFAIL" }, { PDERR_INITFAILURE, "PDERR_INITFAILURE" }, { PDERR_LOADDRVFAILURE, "PDERR_LOADDRVFAILURE" }, { PDERR_NODEFAULTPRN, "PDERR_NODEFAULTPRN" }, { PDERR_NODEVICES, "PDERR_NODEVICES" }, { PDERR_PARSEFAILURE, "PDERR_PARSEFAILURE" }, { PDERR_PRINTERNOTFOUND, "PDERR_PRINTERNOTFOUND" }, { PDERR_RETDEFFAILURE, "PDERR_RETDEFFAILURE" }, { PDERR_SETUPFAILURE, "PDERR_SETUPFAILURE" }, { CFERR_MAXLESSTHANMIN, "CFERR_MAXLESSTHANMIN" }, { CFERR_NOFONTS, "CFERR_NOFONTS" }, { FNERR_BUFFERTOOSMALL, "FNERR_BUFFERTOOSMALL" }, { FNERR_INVALIDFILENAME, "FNERR_INVALIDFILENAME" }, { FNERR_SUBCLASSFAILURE, "FNERR_SUBCLASSFAILURE" }, { FRERR_BUFFERLENGTHZERO, "FRERR_BUFFERLENGTHZERO" }, }; struct param_data { Extbyte *fname; Extbyte *unknown_fname; int validate; }; static int CALLBACK handle_directory_proc (HWND hwnd, UINT msg, LPARAM lParam, LPARAM lpData) { Extbyte szDir[MAX_PATH * MAX_XETCHAR_SIZE]; struct param_data *pd = (struct param_data *) lpData; switch (msg) { case BFFM_INITIALIZED: /* WParam is TRUE since you are passing a path. It would be FALSE if you were passing a pidl. */ qxeSendMessage (hwnd, BFFM_SETSELECTION, TRUE, (LPARAM) pd->fname); break; case BFFM_SELCHANGED: /* Set the status window to the currently selected path. */ if (qxeSHGetPathFromIDList ((LPITEMIDLIST) lParam, szDir)) qxeSendMessage (hwnd, BFFM_SETSTATUSTEXT, 0, (LPARAM) szDir); break; case BFFM_VALIDATEFAILED: if (pd->validate) return TRUE; else pd->unknown_fname = xetcsdup ((Extbyte *) lParam); break; default: break; } return 0; } static Lisp_Object handle_directory_dialog_box (struct frame *f, Lisp_Object keys) { Lisp_Object ret = Qnil; BROWSEINFOW bi; LPITEMIDLIST pidl; LPMALLOC pMalloc; struct param_data pd; xzero (pd); xzero (bi); bi.lParam = (LPARAM) &pd; bi.hwndOwner = FRAME_MSWINDOWS_HANDLE (f); bi.pszDisplayName = 0; bi.pidlRoot = 0; bi.ulFlags = BIF_RETURNONLYFSDIRS | BIF_STATUSTEXT | BIF_EDITBOX | BIF_NEWDIALOGSTYLE; bi.lpfn = handle_directory_proc; LOCAL_FILE_FORMAT_TO_TSTR (Fexpand_file_name (build_string (""), Qnil), pd.fname); { EXTERNAL_PROPERTY_LIST_LOOP_3 (key, value, keys) { if (EQ (key, Q_title)) { CHECK_STRING (value); LISP_STRING_TO_EXTERNAL (value, bi.lpszTitle, Qmswindows_tstr); } else if (EQ (key, Q_initial_directory)) LOCAL_FILE_FORMAT_TO_TSTR (Fexpand_file_name (value, Qnil), pd.fname); else if (EQ (key, Q_initial_filename)) ; /* do nothing */ else if (EQ (key, Q_file_must_exist)) { if (!NILP (value)) { pd.validate = TRUE; bi.ulFlags |= BIF_VALIDATE; } else bi.ulFlags &= ~BIF_VALIDATE; } else invalid_constant ("Unrecognized directory-dialog keyword", key); } } if (SHGetMalloc (&pMalloc) == NOERROR) { pidl = qxeSHBrowseForFolder (&bi); if (pidl) { Extbyte *szDir = alloca_extbytes (MAX_PATH * MAX_XETCHAR_SIZE); if (qxeSHGetPathFromIDList (pidl, szDir)) ret = tstr_to_local_file_format (szDir); XECOMCALL1 (pMalloc, Free, pidl); XECOMCALL0 (pMalloc, Release); return ret; } else if (pd.unknown_fname != 0) { ret = tstr_to_local_file_format (pd.unknown_fname); xfree (pd.unknown_fname, Extbyte *); } else while (1) signal_quit (); } else signal_error (Qdialog_box_error, "Unable to create folder browser", make_int (0)); return ret; } static Lisp_Object handle_file_dialog_box (struct frame *f, Lisp_Object keys) { OPENFILENAMEW ofn; Extbyte fnbuf[8000]; xzero (ofn); ofn.lStructSize = sizeof (ofn); ofn.Flags = OFN_EXPLORER; ofn.hwndOwner = FRAME_MSWINDOWS_HANDLE (f); ofn.lpstrFile = (XELPTSTR) fnbuf; ofn.nMaxFile = sizeof (fnbuf) / XETCHAR_SIZE; xetcscpy (fnbuf, XETEXT ("")); LOCAL_FILE_FORMAT_TO_TSTR (Fexpand_file_name (build_string (""), Qnil), ofn.lpstrInitialDir); { EXTERNAL_PROPERTY_LIST_LOOP_3 (key, value, keys) { if (EQ (key, Q_initial_filename)) { Extbyte *fnout; CHECK_STRING (value); LOCAL_FILE_FORMAT_TO_TSTR (value, fnout); xetcscpy (fnbuf, fnout); } else if (EQ (key, Q_title)) { CHECK_STRING (value); LISP_STRING_TO_TSTR (value, ofn.lpstrTitle); } else if (EQ (key, Q_initial_directory)) LOCAL_FILE_FORMAT_TO_TSTR (Fexpand_file_name (value, Qnil), ofn.lpstrInitialDir); else if (EQ (key, Q_file_must_exist)) { if (!NILP (value)) ofn.Flags |= OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST; else ofn.Flags &= ~(OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST); } else invalid_constant ("Unrecognized file-dialog keyword", key); } } if (!qxeGetOpenFileName (&ofn)) { DWORD err = CommDlgExtendedError (); if (!err) { while (1) signal_quit (); } else { int i; for (i = 0; i < countof (common_dialog_errors); i++) { if (common_dialog_errors[i].errmess == err) signal_error (Qdialog_box_error, "Creating file-dialog-box", build_msg_string (common_dialog_errors[i].errname)); } signal_error (Qdialog_box_error, "Unknown common dialog box error???", make_int (err)); } } return tstr_to_local_file_format ((Extbyte *) ofn.lpstrFile); } static Lisp_Object handle_question_dialog_box (struct frame *f, Lisp_Object keys) { Lisp_Object_dynarr *dialog_items = Dynarr_new (Lisp_Object); unsigned_char_dynarr *template_ = Dynarr_new (unsigned_char); int button_row_width = 0; int text_width, text_height; Lisp_Object question = Qnil, title = Qnil; int unbind_count = specpdl_depth (); record_unwind_protect (free_dynarr_opaque_ptr, make_opaque_ptr (dialog_items)); record_unwind_protect (free_dynarr_opaque_ptr, make_opaque_ptr (template_)); /* A big NO NEED to GCPRO gui_items stored in the array: they are just pointers into KEYS list, which is GC-protected by the caller */ { EXTERNAL_PROPERTY_LIST_LOOP_3 (key, value, keys) { if (EQ (key, Q_question)) { CHECK_STRING (value); question = value; } else if (EQ (key, Q_title)) { CHECK_STRING (value); title = value; } else if (EQ (key, Q_buttons)) { /* Parse each item in the dialog into gui_item structs, and stuff a dynarr of these. Calculate button row width in this loop too */ EXTERNAL_LIST_LOOP_2 (item, value) { if (!NILP (item)) { Lisp_Object gitem = gui_parse_item_keywords (item); Dynarr_add (dialog_items, gitem); button_row_width += button_width (XGUI_ITEM (gitem)->name) + X_BUTTON_MARGIN; } } button_row_width -= X_BUTTON_MARGIN; } else invalid_constant ("Unrecognized question-dialog keyword", key); } } if (Dynarr_length (dialog_items) == 0) sferror ("Dialog descriptor provides no buttons", keys); if (NILP (question)) sferror ("Dialog descriptor provides no question", keys); /* Determine the final width layout */ { Ibyte *p = XSTRING_DATA (question); Charcount string_max = 0, this_length = 0; while (1) { Ichar ch = itext_ichar (p); INC_IBYTEPTR (p); if (ch == (Ichar)'\n' || ch == (Ichar)'\0') { string_max = max (this_length, string_max); this_length = 0; } else ++this_length; if (ch == (Ichar)'\0') break; } if (string_max * X_DLU_PER_CHAR > max (X_MAX_TEXT, button_row_width)) text_width = X_AVE_TEXT; else if (string_max * X_DLU_PER_CHAR < X_MIN_TEXT) text_width = X_MIN_TEXT; else text_width = string_max * X_DLU_PER_CHAR; text_width = max (text_width, button_row_width); } /* Now calculate the height for the text control */ { Ibyte *p = XSTRING_DATA (question); Charcount break_at = text_width / X_DLU_PER_CHAR; Charcount char_pos = 0; int num_lines = 1; Ichar ch; while ((ch = itext_ichar (p)) != (Ichar) '\0') { INC_IBYTEPTR (p); char_pos += ch != (Ichar) '\n'; if (ch == (Ichar) '\n' || char_pos == break_at) { ++num_lines; char_pos = 0; } } text_height = Y_TEXT_MARGIN + Y_DLU_PER_CHAR * num_lines; } /* Ok, now we are ready to stuff the dialog template and lay out controls */ { DLGTEMPLATE dlg_tem; DLGITEMTEMPLATE item_tem; int i; const unsigned int zeroes = 0; const unsigned int ones = 0xFFFFFFFF; const WORD static_class_id = 0x0082; const WORD button_class_id = 0x0080; /* Create and stuff in DLGTEMPLATE header */ dlg_tem.style = (DS_CENTER | DS_MODALFRAME | WS_CAPTION | WS_POPUP | WS_VISIBLE); dlg_tem.dwExtendedStyle = 0; dlg_tem.cdit = Dynarr_length (dialog_items) + 1; dlg_tem.x = 0; dlg_tem.y = 0; dlg_tem.cx = text_width + 2 * X_TEXT_FROM_EDGE; dlg_tem.cy = (Y_TEXT_FROM_EDGE + text_height + Y_TEXT_FROM_BUTTON + Y_BUTTON + Y_BUTTON_FROM_EDGE); Dynarr_add_many (template_, &dlg_tem, sizeof (dlg_tem)); /* We want no menu and standard class */ Dynarr_add_many (template_, &zeroes, 4); /* And the third is the dialog title. "XEmacs" unless one is supplied. Note that the string must be in Unicode. */ if (NILP (title)) Dynarr_add_many (template_, L"XEmacs", 14); else push_lisp_string_as_unicode (template_, title); /* Next add text control. */ item_tem.style = WS_CHILD | WS_VISIBLE | SS_LEFT | SS_NOPREFIX; item_tem.dwExtendedStyle = 0; item_tem.x = X_TEXT_FROM_EDGE; item_tem.y = Y_TEXT_FROM_EDGE; item_tem.cx = text_width; item_tem.cy = text_height; item_tem.id = 0xFFFF; ALIGN_TEMPLATE; Dynarr_add_many (template_, &item_tem, sizeof (item_tem)); /* Right after class id follows */ Dynarr_add_many (template_, &ones, 2); Dynarr_add_many (template_, &static_class_id, sizeof (static_class_id)); /* Next thing to add is control text, as Unicode string */ push_lisp_string_as_unicode (template_, question); /* Specify 0 length creation data */ Dynarr_add_many (template_, &zeroes, 2); /* Now it's the button time */ item_tem.y = Y_TEXT_FROM_EDGE + text_height + Y_TEXT_FROM_BUTTON; item_tem.x = X_BUTTON_FROM_EDGE + (button_row_width < text_width ? (text_width - button_row_width) / 2 : 0); item_tem.cy = Y_BUTTON; item_tem.dwExtendedStyle = 0; for (i = 0; i < Dynarr_length (dialog_items); ++i) { Lisp_Object *gui_item = Dynarr_atp (dialog_items, i); Lisp_Gui_Item *pgui_item = XGUI_ITEM (*gui_item); item_tem.style = (WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON | (gui_item_active_p (*gui_item) ? 0 : WS_DISABLED)); item_tem.cx = button_width (pgui_item->name); /* Item ids are indices into dialog_items plus offset, to avoid having items by reserved ids (IDOK, IDCANCEL) */ item_tem.id = i + ID_ITEM_BIAS; ALIGN_TEMPLATE; Dynarr_add_many (template_, &item_tem, sizeof (item_tem)); /* Right after 0xFFFF and class id atom follows */ Dynarr_add_many (template_, &ones, 2); Dynarr_add_many (template_, &button_class_id, sizeof (button_class_id)); /* Next thing to add is control text, as Unicode string */ { Ichar accel_unused; push_lisp_string_as_unicode (template_, mswindows_translate_menu_or_dialog_item (pgui_item->name, &accel_unused)); } /* Specify 0 length creation data. */ Dynarr_add_many (template_, &zeroes, 2); item_tem.x += item_tem.cx + X_BUTTON_SPACING; } } /* Now the Windows dialog structure is ready. We need to prepare a data structure for the new dialog, which will contain callbacks and the frame for these callbacks. This structure has to be GC-protected and thus it is put into a statically protected list. */ { Lisp_Object dialog_data; int i; struct mswindows_dialog_id *did = alloc_lcrecord_type (struct mswindows_dialog_id, &lrecord_mswindows_dialog_id); dialog_data = wrap_mswindows_dialog_id (did); did->frame = wrap_frame (f); did->callbacks = make_vector (Dynarr_length (dialog_items), Qunbound); for (i = 0; i < Dynarr_length (dialog_items); i++) XVECTOR_DATA (did->callbacks) [i] = XGUI_ITEM (*Dynarr_atp (dialog_items, i))->callback; /* Woof! Everything is ready. Pop pop pop in now! */ did->hwnd = qxeCreateDialogIndirectParam (NULL, (LPDLGTEMPLATE) Dynarr_atp (template_, 0), FRAME_MSWINDOWS_HANDLE (f), dialog_proc, (LPARAM) LISP_TO_VOID (dialog_data)); if (!did->hwnd) /* Something went wrong creating the dialog */ signal_error (Qdialog_box_error, "Creating dialog", keys); Vdialog_data_list = Fcons (dialog_data, Vdialog_data_list); /* Cease protection and free dynarrays */ unbind_to (unbind_count); return dialog_data; } } static Lisp_Object mswindows_make_dialog_box_internal (struct frame* f, Lisp_Object type, Lisp_Object keys) { int unbind_count = specpdl_depth (); record_unwind_protect (dialog_popped_down, Qnil); popup_up_p++; if (EQ (type, Qfile)) return unbind_to_1 (unbind_count, handle_file_dialog_box (f, keys)); else if (EQ (type, Qdirectory)) return unbind_to_1 (unbind_count, handle_directory_dialog_box (f, keys)); else if (EQ (type, Qquestion)) return unbind_to_1 (unbind_count, handle_question_dialog_box (f, keys)); else if (EQ (type, Qprint)) return unbind_to_1 (unbind_count, mswindows_handle_print_dialog_box (f, keys)); else if (EQ (type, Qpage_setup)) return unbind_to_1 (unbind_count, mswindows_handle_page_setup_dialog_box (f, keys)); else signal_error (Qunimplemented, "Dialog box type", type); return Qnil; } void console_type_create_dialog_mswindows (void) { CONSOLE_HAS_METHOD (mswindows, make_dialog_box_internal); } void syms_of_dialog_mswindows (void) { INIT_LRECORD_IMPLEMENTATION (mswindows_dialog_id); DEFKEYWORD (Q_initial_directory); DEFKEYWORD (Q_initial_filename); DEFKEYWORD (Q_filter_list); DEFKEYWORD (Q_title); DEFKEYWORD (Q_allow_multi_select); DEFKEYWORD (Q_create_prompt_on_nonexistent); DEFKEYWORD (Q_overwrite_prompt); DEFKEYWORD (Q_file_must_exist); DEFKEYWORD (Q_no_network_button); DEFKEYWORD (Q_no_read_only_return); /* Errors */ DEFERROR_STANDARD (Qdialog_box_error, Qgui_error); } void vars_of_dialog_mswindows (void) { Vpopup_frame_list = Qnil; staticpro (&Vpopup_frame_list); Vdialog_data_list = Qnil; staticpro (&Vdialog_data_list); DEFVAR_LISP ("default-file-dialog-filter-alist", &Vdefault_file_dialog_filter_alist /* */ ); Vdefault_file_dialog_filter_alist = list5 (Fcons (build_msg_string ("Text Files"), build_string ("*.txt")), Fcons (build_msg_string ("C Files"), build_string ("*.c;*.h")), Fcons (build_msg_string ("Elisp Files"), build_string ("*.el")), Fcons (build_msg_string ("HTML Files"), build_string ("*.html;*.html")), Fcons (build_msg_string ("All Files"), build_string ("*.*"))); }