Mercurial > emacs
annotate oldXMenu/ChgPane.c @ 65729:ad37d24b84b1
Update version numbers
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Thu, 29 Sep 2005 21:55:22 +0000 |
parents | 3861ff8f4bf1 |
children | e8a3fb527b77 532e0a9335a9 2d92f5c9d6ae |
rev | line source |
---|---|
25858 | 1 #include "copyright.h" |
2 | |
3 /* Copyright Massachusetts Institute of Technology 1985 */ | |
65000
3861ff8f4bf1
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
54770
diff
changeset
|
4 /* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ |
25858 | 5 |
6 /* | |
7 * XMenu: MIT Project Athena, X Window system menu package | |
8 * | |
9 * XMenuChangePane - Change the label of a menu pane. | |
10 * | |
11 * Author: Tony Della Fera, DEC | |
12 * December 19, 1985 | |
13 * | |
14 */ | |
15 | |
16 #include "XMenuInt.h" | |
17 | |
18 int | |
19 XMenuChangePane(menu, p_num, label) | |
20 register XMenu *menu; /* Menu object to be modified. */ | |
21 register int p_num; /* Pane number to be modified. */ | |
22 char *label; /* Selection label. */ | |
23 { | |
24 register XMPane *p_ptr; /* XMPane pointer. */ | |
25 | |
26 int label_length; /* Label length in characters. */ | |
27 int label_width; /* Label width in pixels. */ | |
28 | |
29 /* | |
30 * Check for NULL pointers! | |
31 */ | |
32 if (label == NULL) { | |
33 _XMErrorCode = XME_ARG_BOUNDS; | |
34 return(XM_FAILURE); | |
35 } | |
36 | |
37 /* | |
38 * Find the right pane. | |
39 */ | |
40 p_ptr = _XMGetPanePtr(menu, p_num); | |
41 if (p_ptr == NULL) return(XM_FAILURE); | |
42 | |
43 /* | |
44 * Determine label size. | |
45 */ | |
46 label_length = strlen(label); | |
47 label_width = XTextWidth(menu->p_fnt_info, label, label_length); | |
48 | |
49 /* | |
50 * Change the pane data. | |
51 */ | |
52 p_ptr->label = label; | |
53 p_ptr->label_width = label_width; | |
54 p_ptr->label_length = label_length; | |
55 | |
56 /* | |
57 * Schedule a recompute. | |
58 */ | |
59 menu->recompute = 1; | |
60 | |
61 /* | |
62 * Return the pane number just changed. | |
63 */ | |
64 _XMErrorCode = XME_NO_ERROR; | |
65 return(p_num); | |
66 } | |
52401 | 67 |
68 /* arch-tag: e267e9de-a3f0-4a0d-8c45-413afa176fd8 | |
69 (do not change this comment) */ |