Mercurial > emacs
annotate oldXMenu/ChgSel.c @ 94940:061d44df20b7
Include <stdlib.h> and "ccl.h".
(struct xfont_info): New structure.
(xfont_query_font): Deleted.
(xfont_find_ccl_program): Renamed from x_find_ccl_program and
moved from xterm.c.
(xfont_driver): Adjusted for the change of struct font_driver.
(compare_font_names): New function.
(xfont_list_pattern): Sort font names case insensitively. Make
font_entity by calling font_make_entity. Avoid auto-scaled fonts.
(xfont_list): Return a list, not vector.
(xfont_match): If the font doesn't have QCname property, generate
a name from the other font properties.
(xfont_open): Return a font-ojbect. Adjusted for the change of
struct font. Get underline_thickness and underline_position from
font property. Don't update dpyinfo->smallest_font_height and
dpyinfo->smallest_char_width.
(xfont_close): Don't free struct font.
(xfont_prepare_face): Adjusted for the change of struct font.
(xfont_done_face): Deleted.
(xfont_has_char): Adjusted for the change of struct font.
(xfont_encode_char, xfont_draw): Likewise.
(xfont_check): New function.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 14 May 2008 01:42:33 +0000 |
parents | d4f6522bb9d2 |
children | e9f94688a064 5cc91198ffb2 |
rev | line source |
---|---|
76174
fec5e03aaf59
Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
1 /* Copyright Massachusetts Institute of Technology 1985 */ |
fec5e03aaf59
Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
2 |
25858 | 3 #include "copyright.h" |
4 | |
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 | |
77868
d4f6522bb9d2
Quiet --with-x-toolkit=no compilation warnings: #include <config.h>.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
76174
diff
changeset
|
16 #include <config.h> |
25858 | 17 #include "XMenuInt.h" |
18 | |
19 int | |
20 XMenuChangeSelection(display, menu, p_num, s_num, data, data_sw, label, label_sw) | |
21 Display *display; /* previously opened display. */ | |
22 register XMenu *menu; /* Menu object to be modified. */ | |
23 register int p_num; /* Pane number to be modified. */ | |
24 register int s_num; /* Selection number to modified. */ | |
25 char *data; /* Data value. */ | |
26 int data_sw; /* Change to new data value? */ | |
27 char *label; /* Selection label. */ | |
28 int label_sw; /* Change to new label? */ | |
29 { | |
30 register XMPane *p_ptr; /* XMPane pointer. */ | |
31 register XMSelect *s_ptr; /* XMSelect pointer. */ | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
32 |
25858 | 33 int label_length; /* Label length in characters. */ |
34 int label_width; /* Label width in pixels. */ | |
35 | |
36 /* | |
37 * Check for NULL pointers! | |
38 */ | |
39 if (label == NULL) { | |
40 _XMErrorCode = XME_ARG_BOUNDS; | |
41 return(XM_FAILURE); | |
42 } | |
43 | |
44 /* | |
45 * Find the right pane. | |
46 */ | |
47 p_ptr = _XMGetPanePtr(menu, p_num); | |
48 if (p_ptr == NULL) return(XM_FAILURE); | |
49 | |
50 /* | |
51 * Find the right selection. | |
52 */ | |
53 s_ptr = _XMGetSelectionPtr(p_ptr, s_num); | |
54 if (s_ptr == NULL) return(XM_FAILURE); | |
55 | |
56 /* | |
57 * Reset the label? | |
58 */ | |
59 if (label_sw) { | |
60 /* | |
61 * Determine label size. | |
62 */ | |
63 label_length = strlen(label); | |
64 label_width = XTextWidth(menu->s_fnt_info, label, label_length); | |
65 | |
66 /* | |
67 * Change the selection data. | |
68 */ | |
69 s_ptr->label = label; | |
70 s_ptr->label_width = label_width; | |
71 s_ptr->label_length = label_length; | |
72 | |
73 /* | |
74 * Schedule a recompute. | |
75 */ | |
76 menu->recompute = 1; | |
77 } | |
78 | |
79 /* | |
80 * Reset the data? | |
81 */ | |
82 if (data_sw) s_ptr->data = data; | |
83 | |
84 /* | |
85 * Return successfully. | |
86 */ | |
87 _XMErrorCode = XME_NO_ERROR; | |
88 return(s_num); | |
89 } | |
52401 | 90 |
91 /* arch-tag: 229732a6-46bf-4a3a-ad90-3d8ed65c0841 | |
92 (do not change this comment) */ |