Mercurial > emacs
annotate oldXMenu/ChgSel.c @ 26058:c11f0832a7c5
(Fconstrain_to_field): Make sure we don't violate the
argument preconditions of find_before_next_newline in the case
where both ONLY_IN_LINE and ESCAPE_FROM_EDGE are set and OLD_POS
was indeed at the edge.
(text_property_eq, text_property_stickiness): Don't
use initializers for auto variables of type Lisp_Object.
(find_field): Likewise. Use braces around nested ifs.
(Fline_end_position): Store the raw eol in a variable, so that the
final expression doesn't look so ugly.
(Fconstrain_to_field): Doc fix.
(preceding_pos): Renamed from `preceeding_pos'.
(text_property_stickiness, find_field): Call preceding_pos,
not preceeding_pos.
(Ffield_string_no_properties): New function.
(text_property_stickiness, preceeding_pos): New functions.
(Ffield_string): Remove PROPS parameter.
(find_field): Add MERGE_AT_BOUNDARY parameter.
Rewrite to use stickiness of `field' property to resolve
ambiguous cases.
(Ffield_beginning, Ffield_end): Add ESCAPE_FROM_EDGE parameter.
(Fconstrain_to_field): Likewise.
(syms_of_editfns): Init Sfield_string_no_properties.
(Ffield_string, Ferase_field, Ffield_end):
Supply new MERGE_AT_BOUNDARY argument to find_field.
(Fline_beginning_position, Fline_end_position): Supply new
ESCAPE_FROM_EDGE parameter to Fconstrain_to_field.
Pass a value of Qt for the ONLY_IN_LINE argument to
Fconstrain_to_field (only matters if N != 1).
(Fconstrain_to_field): Add get/set-current-point
behavior when NEW_POS is nil.
(find_field): Use XSETFASTINT instead of make_number.
(Qfield): New variable.
(find_field, Ferase_field, Ffield_string,
Ffield_beginning, Ffield_end, Fconstrain_to_field): New functions.
(Fline_beginning_position, Fline_end_position): Constrain to any field.
(make_buffer_string_both): Remove minibuffer-prompt hack.
(syms_of_editfns): Initialize Qfield, and subr entries for
field functions above.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Sun, 17 Oct 1999 12:55:00 +0000 |
parents | bbce331da1be |
children | 23a1cea22d13 |
rev | line source |
---|---|
25858 | 1 #include "copyright.h" |
2 | |
3 /* $Header: /u/src/emacs/19.0/oldXMenu/RCS/ChgSel.c,v 1.1 1992/04/11 22:10:17 jimb Exp $ */ | |
4 /* Copyright Massachusetts Institute of Technology 1985 */ | |
5 | |
6 /* | |
7 * XMenu: MIT Project Athena, X Window system menu package | |
8 * | |
9 * XMenuChangeSelection - Change a menu selection. | |
10 * | |
11 * Author: Tony Della Fera, DEC | |
12 * December 19, 1985 | |
13 * | |
14 */ | |
15 | |
16 #include "XMenuInt.h" | |
17 | |
18 int | |
19 XMenuChangeSelection(display, menu, p_num, s_num, data, data_sw, label, label_sw) | |
20 Display *display; /* previously opened display. */ | |
21 register XMenu *menu; /* Menu object to be modified. */ | |
22 register int p_num; /* Pane number to be modified. */ | |
23 register int s_num; /* Selection number to modified. */ | |
24 char *data; /* Data value. */ | |
25 int data_sw; /* Change to new data value? */ | |
26 char *label; /* Selection label. */ | |
27 int label_sw; /* Change to new label? */ | |
28 { | |
29 register XMPane *p_ptr; /* XMPane pointer. */ | |
30 register XMSelect *s_ptr; /* XMSelect pointer. */ | |
31 | |
32 int label_length; /* Label length in characters. */ | |
33 int label_width; /* Label width in pixels. */ | |
34 | |
35 /* | |
36 * Check for NULL pointers! | |
37 */ | |
38 if (label == NULL) { | |
39 _XMErrorCode = XME_ARG_BOUNDS; | |
40 return(XM_FAILURE); | |
41 } | |
42 | |
43 /* | |
44 * Find the right pane. | |
45 */ | |
46 p_ptr = _XMGetPanePtr(menu, p_num); | |
47 if (p_ptr == NULL) return(XM_FAILURE); | |
48 | |
49 /* | |
50 * Find the right selection. | |
51 */ | |
52 s_ptr = _XMGetSelectionPtr(p_ptr, s_num); | |
53 if (s_ptr == NULL) return(XM_FAILURE); | |
54 | |
55 /* | |
56 * Reset the label? | |
57 */ | |
58 if (label_sw) { | |
59 /* | |
60 * Determine label size. | |
61 */ | |
62 label_length = strlen(label); | |
63 label_width = XTextWidth(menu->s_fnt_info, label, label_length); | |
64 | |
65 /* | |
66 * Change the selection data. | |
67 */ | |
68 s_ptr->label = label; | |
69 s_ptr->label_width = label_width; | |
70 s_ptr->label_length = label_length; | |
71 | |
72 /* | |
73 * Schedule a recompute. | |
74 */ | |
75 menu->recompute = 1; | |
76 } | |
77 | |
78 /* | |
79 * Reset the data? | |
80 */ | |
81 if (data_sw) s_ptr->data = data; | |
82 | |
83 /* | |
84 * Return successfully. | |
85 */ | |
86 _XMErrorCode = XME_NO_ERROR; | |
87 return(s_num); | |
88 } |