Mercurial > emacs
annotate oldXMenu/AddPane.c @ 71504:2b4e59cd1121
(Qeql): Add extern.
(x_set_mouse_pixel_position) [MAC_OSX]: Use CGWarpMouseCursorPosition.
(fm_style_face_attributes_alist) [USE_ATSUI]: New variable.
(syms_of_macterm) [USE_ATSUI]: Initialize and staticpro it.
Change keys of Vmac_atsu_font_table from strings to numbers.
(fm_style_to_face_attributes) [USE_ATSUI]: New function.
(init_font_name_table) [USE_ATSUI]: Use it.
(saved_ts_script_language_on_focus) [USE_MAC_TSM]: New variable.
(syms_of_macterm) [USE_MAC_TSM]: Initialize and staticpro it.
[USE_MAC_TSM] (mac_tsm_resume): Restore script and language codes
only when saved_ts_script_language_on_focus coincides with
Vmac_ts_script_language_on_focus.
[USE_MAC_TSM] (mac_tsm_suspend): Save value of
Vmac_ts_script_language_on_focus to saved_ts_script_language_on_focus.
(XTread_socket) [USE_MAC_TSM]: Add Mac OS Classic support.
[USE_MAC_TSM] (mac_handle_text_input_event, init_tsm): Likewise.
| author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
|---|---|
| date | Wed, 28 Jun 2006 08:31:32 +0000 |
| parents | e8a3fb527b77 |
| children | ce127a46b1ca d04d8ccb3c41 c5406394f567 |
| rev | line source |
|---|---|
| 25858 | 1 #include "copyright.h" |
| 2 | |
| 3 /* Copyright Massachusetts Institute of Technology 1985 */ | |
|
68640
e8a3fb527b77
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
65000
diff
changeset
|
4 /* Copyright (C) 2002, 2003, 2004, 2005, |
|
e8a3fb527b77
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
65000
diff
changeset
|
5 2006 Free Software Foundation, Inc. */ |
| 25858 | 6 |
| 7 /* | |
| 8 * XMenu: MIT Project Athena, X Window system menu package | |
| 9 * | |
| 10 * XMenuAddPane - Adds a pane to an XMenu object. | |
| 11 * | |
| 12 * Author: Tony Della Fera, DEC | |
| 13 * August, 1985 | |
| 14 * | |
| 15 */ | |
| 16 | |
| 17 #include <config.h> | |
| 18 #include "XMenuInt.h" | |
| 19 | |
| 20 int | |
| 21 XMenuAddPane(display, menu, label, active) | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
22 Display *display; |
| 25858 | 23 register XMenu *menu; /* Menu object to be modified. */ |
| 24 register char *label; /* Selection label. */ | |
| 25 int active; /* Make selection active? */ | |
| 26 { | |
| 27 register XMPane *pane; /* Newly created pane. */ | |
| 28 register XMSelect *select; /* Initial selection for the new pane. */ | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
29 |
| 25858 | 30 int label_length; /* Label length in characters. */ |
| 31 int label_width; /* Label width in pixels. */ | |
| 32 | |
| 33 /* | |
| 34 * Check for NULL pointers! | |
| 35 */ | |
| 36 if (label == NULL) { | |
| 37 _XMErrorCode = XME_ARG_BOUNDS; | |
| 38 return(XM_FAILURE); | |
| 39 } | |
| 40 | |
| 41 /* | |
| 42 * Calloc the XMPane structure and the initial XMSelect. | |
| 43 */ | |
| 44 pane = (XMPane *)calloc(1, sizeof(XMPane)); | |
| 45 if (pane == NULL) { | |
| 46 _XMErrorCode = XME_CALLOC; | |
| 47 return(XM_FAILURE); | |
| 48 } | |
| 49 select = (XMSelect *)calloc(1, sizeof(XMSelect)); | |
| 50 if (select == NULL) { | |
| 51 _XMErrorCode = XME_CALLOC; | |
| 52 return(XM_FAILURE); | |
| 53 } | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
54 |
| 25858 | 55 /* |
| 56 * Determine label size. | |
| 57 */ | |
| 58 label_length = strlen(label); | |
| 59 label_width = XTextWidth(menu->p_fnt_info, | |
| 60 label, | |
| 61 label_length); | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
62 |
| 25858 | 63 /* |
| 64 * Set up the initial selection. | |
| 65 * Values not explicitly set are zeroed by calloc. | |
| 66 */ | |
| 67 select->next = select; | |
| 68 select->prev = select; | |
| 69 select->type = SL_HEADER; | |
| 70 select->serial = -1; | |
| 71 select->parent_p = pane; | |
| 72 | |
| 73 /* | |
| 74 * Fill the XMPane structure. | |
| 75 * X and Y position are set to 0 since a recompute will follow. | |
| 76 */ | |
| 77 pane->type = PANE; | |
| 78 pane->active = active; | |
| 79 pane->serial = -1; | |
| 80 pane->label = label; | |
| 81 pane->label_width = label_width; | |
| 82 pane->label_length = label_length; | |
| 83 pane->s_list = select; | |
| 84 | |
| 85 /* | |
| 86 * Insert the pane at the end of the pane list. | |
| 87 */ | |
| 88 emacs_insque(pane, menu->p_list->prev); | |
| 89 | |
| 90 /* | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
91 * Update the pane count. |
| 25858 | 92 */ |
| 93 menu->p_count++; | |
| 94 | |
| 95 /* | |
| 96 * Schedule a recompute. | |
| 97 */ | |
| 98 menu->recompute = 1; | |
| 99 | |
| 100 /* | |
| 101 * Return the pane number just added. | |
| 102 */ | |
| 103 _XMErrorCode = XME_NO_ERROR; | |
| 104 return((menu->p_count - 1)); | |
| 105 } | |
| 52401 | 106 |
| 107 /* arch-tag: 62a26021-f29d-48ba-96ef-3b6c4ebd6547 | |
| 108 (do not change this comment) */ |
