1 /* Copyright Massachusetts Institute of Technology 1985 */
6 Copyright (C) 1993, 1996, 2001, 2002, 2003, 2004, 2005, 2006,
7 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
9 This program is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 * XMenu: MIT Project Athena, X Window system menu package
26 * XMenuInternal.c - XMenu internal (not user visible) routines.
28 * Author: Tony Della Fera, DEC
39 #define toggle_color(x) \
40 ((x) == menu->bkgnd_color ? menu->s_frg_color : menu->bkgnd_color)
43 * Internal Window creation queue sizes.
45 #define S_QUE_SIZE 300
47 #define BUFFER_SIZE (S_QUE_SIZE >= P_QUE_SIZE ? S_QUE_SIZE : P_QUE_SIZE)
51 * XMWinQue - Internal window creation queue datatype.
53 typedef struct _xmwinquedef
{
55 XMSelect
*sq
[S_QUE_SIZE
];
58 XMPane
*pq
[P_QUE_SIZE
];
63 * _XMWinQue - Internal static window creation queue.
65 static Bool _XMWinQueIsInit
= False
;
66 static XMWinQue _XMWinQue
;
69 * _XMErrorCode - Global XMenu error code.
71 int _XMErrorCode
= XME_NO_ERROR
;
73 * _XMErrorList - Global XMenu error code description strings.
76 _XMErrorList
[XME_CODE_COUNT
] = {
77 "No error", /* XME_NO_ERROR */
78 "Menu not initialized", /* XME_NOT_INIT */
79 "Argument out of bounds", /* XME_ARG_BOUNDS */
80 "Pane not found", /* XME_P_NOT_FOUND */
81 "Selection not found", /* XME_S_NOT_FOUND */
82 "Invalid menu style parameter", /* XME_STYLE_PARAM */
83 "Unable to grab mouse", /* XME_GRAB_MOUSE */
84 "Unable to interpret locator", /* XME_INTERP_LOC */
85 "Unable to calloc memory", /* XME_CALLOC */
86 "Unable to create XAssocTable", /* XME_CREATE_ASSOC */
87 "Unable to store bitmap", /* XME_STORE_BITMAP */
88 "Unable to make tile pixmaps", /* XME_MAKE_TILES */
89 "Unable to make pixmap", /* XME_MAKE_PIXMAP */
90 "Unable to create cursor", /* XME_CREATE_CURSOR */
91 "Unable to open font", /* XME_OPEN_FONT */
92 "Unable to create windows", /* XME_CREATE_WINDOW */
93 "Unable to create transparencies", /* XME_CREATE_TRANSP */
97 * _XMEventHandler - Internal event handler variable.
99 int (*_XMEventHandler
)() = NULL
;
104 * _XMWinQueInit - Internal routine to initialize the window
110 * If the queue is not initialized initialize it.
112 if (!_XMWinQueIsInit
) {
114 * Blank the queue structure.
118 for (i
= 0; i
< S_QUE_SIZE
; i
++)
121 for (i
= 0; i
< P_QUE_SIZE
; i
++)
124 _XMWinQue
.sq_size
= _XMWinQue
.pq_size
= 0;
127 * Initialize the next free location pointers.
129 _XMWinQue
.sq_ptr
= _XMWinQue
.sq
;
130 _XMWinQue
.pq_ptr
= _XMWinQue
.pq
;
137 * _XMWinQueAddPane - Internal routine to add a pane to the pane
141 _XMWinQueAddPane(display
, menu
, p_ptr
)
142 register Display
*display
;
143 register XMenu
*menu
; /* Menu being manipulated. */
144 register XMPane
*p_ptr
; /* XMPane being queued. */
147 * If the queue is currently full then flush it.
149 if (_XMWinQue
.pq_size
== P_QUE_SIZE
) {
150 if (_XMWinQueFlush(display
, menu
, 0, 0) == _FAILURE
) return(_FAILURE
);
154 * Insert the new XMPane pointer and increment the queue pointer
155 * and the queue size.
157 *_XMWinQue
.pq_ptr
= p_ptr
;
162 * All went well, return successfully.
164 _XMErrorCode
= XME_NO_ERROR
;
171 * _XMWinQueAddSelection - Internal routine to add a selection to
172 * the selection window queue.
175 _XMWinQueAddSelection(display
, menu
, s_ptr
)
176 register Display
*display
;
177 register XMenu
*menu
; /* Menu being manipulated. */
178 register XMSelect
*s_ptr
; /* XMSelection being queued. */
181 * If this entry will overflow the queue then flush it.
183 if (_XMWinQue
.sq_size
== S_QUE_SIZE
) {
184 if (_XMWinQueFlush(display
, menu
, 0, 0) == _FAILURE
) return(_FAILURE
);
188 * Insert the new XMSelect pointer and increment the queue pointer
189 * and the queue size.
191 *_XMWinQue
.sq_ptr
= s_ptr
;
196 * All went well, return successfully.
198 _XMErrorCode
= XME_NO_ERROR
;
205 * _XMWinQueFlush - Internal routine to flush the pane and
206 * selection window queues.
209 _XMWinQueFlush(display
, menu
, pane
, select
)
210 register Display
*display
;
211 register XMenu
*menu
; /* Menu being manipulated. */
212 register XMPane
*pane
; /* Current pane. */
214 register int pq_index
; /* Pane queue index. */
215 register int sq_index
; /* Selection queue index. */
216 register XMPane
*p_ptr
; /* XMPane pointer. */
217 register XMSelect
*s_ptr
; /* XMSelect pointer. */
218 unsigned long valuemask
; /* Which attributes to set. */
219 XSetWindowAttributes
*attributes
; /* Attributes to be set. */
222 * If the pane window queue is not empty...
225 if (_XMWinQue
.pq_size
> 0) {
227 * set up attributes for pane window to be created.
229 valuemask
= (CWBackPixmap
| CWBorderPixel
| CWOverrideRedirect
);
230 attributes
= (XSetWindowAttributes
*)malloc(sizeof(XSetWindowAttributes
));
231 attributes
->border_pixel
= menu
->p_bdr_color
;
232 attributes
->background_pixmap
= menu
->inact_pixmap
;
233 attributes
->override_redirect
= True
;
236 * Create all the pending panes in order, so that the
237 * current pane will be on top, with the others
238 * stacked appropriately under it.
240 for (pq_index
= _XMWinQue
.pq_size
- 1;
244 p_ptr
= _XMWinQue
.pq
[pq_index
]; /* Retrieve next pane. */
245 if (p_ptr
== pane
) break;
246 p_ptr
->window
= XCreateWindow(display
,
258 XMakeAssoc(display
, menu
->assoc_tab
, p_ptr
->window
, p_ptr
);
259 XSelectInput(display
, p_ptr
->window
, menu
->p_events
);
262 pq_index
< _XMWinQue
.pq_size
;
265 p_ptr
= _XMWinQue
.pq
[pq_index
]; /* Retrieve next pane. */
266 p_ptr
->window
= XCreateWindow(display
,
278 XMakeAssoc(display
, menu
->assoc_tab
, p_ptr
->window
, p_ptr
);
279 XSelectInput(display
, p_ptr
->window
, menu
->p_events
);
280 if (p_ptr
== pane
) break;
284 * Reset the pane queue pointer and size.
286 _XMWinQue
.pq_size
= 0;
287 _XMWinQue
.pq_ptr
= _XMWinQue
.pq
;
291 * If the selection window queue is not empty...
294 if (_XMWinQue
.sq_size
> 0) {
296 for (sq_index
= 0; sq_index
< _XMWinQue
.sq_size
; sq_index
++) {
298 * Retrieve the XMSelect pointer.
300 s_ptr
= _XMWinQue
.sq
[sq_index
];
301 s_ptr
->window
= XCreateWindow(display
,
302 s_ptr
->parent_p
->window
,
315 * Insert the new window id and its
316 * associated XMSelect structure into the
319 XMakeAssoc(display
, menu
->assoc_tab
, s_ptr
->window
, s_ptr
);
320 XSelectInput(display
, s_ptr
->window
, menu
->s_events
);
324 * Reset the selection queue pointer and size.
326 _XMWinQue
.sq_size
= 0;
327 _XMWinQue
.sq_ptr
= _XMWinQue
.sq
;
331 * Flush X's internal queues.
336 * All went well, return successfully.
338 _XMErrorCode
= XME_NO_ERROR
;
345 * _XMGetPanePtr - Given a menu pointer and a pane index number, return
346 * a pane pointer that points to the indexed pane.
349 _XMGetPanePtr(menu
, p_num
)
350 register XMenu
*menu
; /* Menu to find the pane in. */
351 register int p_num
; /* Index number of pane to find. */
353 register XMPane
*p_ptr
; /* Pane pointer to be returned. */
354 register int i
; /* Loop counter. */
357 * Is the pane number out of range?
359 if ((p_num
< 0) || (p_num
> (menu
->p_count
- 1))) {
360 _XMErrorCode
= XME_P_NOT_FOUND
;
365 * Find the right pane.
367 p_ptr
= menu
->p_list
->next
;
368 for (i
= 0; i
< p_num
; i
++) p_ptr
= p_ptr
->next
;
371 * Return successfully.
373 _XMErrorCode
= XME_NO_ERROR
;
380 * _XMGetSelectionPtr - Given pane pointer and a selection index number,
381 * return a selection pointer that points to the
385 _XMGetSelectionPtr(p_ptr
, s_num
)
386 register XMPane
*p_ptr
; /* Pane to find the selection in. */
387 register int s_num
; /* Index number of the selection to find. */
389 register XMSelect
*s_ptr
; /* Selection pointer to be returned. */
390 register int i
; /* Loop counter. */
393 * Is the selection number out of range?
395 if ((s_num
< 0) || (s_num
> (p_ptr
->s_count
- 1))) {
396 _XMErrorCode
= XME_S_NOT_FOUND
;
401 * Find the right selection.
403 s_ptr
= p_ptr
->s_list
->next
;
404 for (i
= 0; i
< s_num
; i
++) s_ptr
= s_ptr
->next
;
407 * Return successfully.
409 _XMErrorCode
= XME_NO_ERROR
;
416 * _XMRecomputeGlobals - Internal subroutine to recompute menu wide
419 _XMRecomputeGlobals(display
, menu
)
420 register Display
*display
; /*X11 display variable. */
421 register XMenu
*menu
; /* Menu object to compute from. */
423 register XMPane
*p_ptr
; /* Pane pointer. */
424 register XMSelect
*s_ptr
; /* Selection pointer. */
426 register int max_p_label
= 0; /* Maximum pane label width. */
427 register int max_s_label
= 0; /* Maximum selection label width. */
428 register int s_count
= 0; /* Maximum selection count. */
430 int p_s_pad
; /* Pane <-> selection padding. */
431 int p_s_diff
; /* Pane <-> selection separation. */
433 int p_height
; /* Pane window height. */
434 int p_width
; /* Pane window width. */
435 int s_width
; /* Selection window width. */
437 int screen
; /* DefaultScreen holder. */
443 p_ptr
= menu
->p_list
->next
;
444 p_ptr
!= menu
->p_list
;
449 * Recompute maximum pane label width.
451 max_p_label
= max(max_p_label
, p_ptr
->label_width
);
454 * Recompute maximum selection count.
456 s_count
= max(s_count
, p_ptr
->s_count
);
459 * For each selection in the current pane...
462 s_ptr
= p_ptr
->s_list
->next
;
463 s_ptr
!= p_ptr
->s_list
;
468 * Recompute maximum selection label width.
470 max_s_label
= max(max_s_label
, s_ptr
->label_width
);
475 * Recompute pane height.
477 p_height
= (menu
->flag_height
<< 1) + (menu
->s_y_off
* s_count
);
480 * Recompute horizontal padding between the pane window and the
483 p_s_pad
= menu
->p_x_off
<< 1;
486 * Recompute pane and selection window widths.
487 * This is done by first computing the window sizes from the maximum
488 * label widths. If the spacing between the selection window and the
489 * containing pane window is less than the pane selection padding value
490 * (twice the pane X offset) then change the size of the pane to be
491 * the size of the selection window plus the padding. If, however the
492 * spacing between the selection window and the containing pane window
493 * is more than the pane selection padding value increase the size of
494 * the selection to its maximum possible value (the pane width minus
495 * the pane selection padding value).
497 p_width
= max_p_label
+ p_s_pad
;
498 s_width
= max_s_label
+ (menu
->s_fnt_pad
<< 1) + (menu
->s_bdr_width
<< 1);
499 p_s_diff
= p_width
- s_width
;
500 if (p_s_diff
< p_s_pad
) {
501 p_width
= s_width
+ p_s_pad
;
503 else if (p_s_diff
> p_s_pad
) {
504 s_width
= p_width
- p_s_pad
;
508 * Reset menu wide global values.
510 menu
->s_count
= s_count
;
511 menu
->p_height
= p_height
;
512 menu
->p_width
= p_width
;
513 menu
->s_width
= s_width
;
516 * Ensure that the origin of the menu is placed so that
517 * None of the panes ore selections are off the screen.
519 screen
= DefaultScreen(display
);
520 if (menu
->x_pos
+ menu
->width
> DisplayWidth(display
, screen
))
521 menu
->x_pos
= DisplayWidth(display
, screen
) - menu
->width
;
522 else if (menu
->x_pos
< 0) menu
->x_pos
= 0;
523 if(menu
->y_pos
+ menu
->height
> DisplayHeight(display
, screen
))
524 menu
->y_pos
= DisplayHeight(display
, screen
) - menu
->height
;
525 else if (menu
->y_pos
< 0) menu
->y_pos
= 0;
530 * _XMRecomputePane - Internal subroutine to recompute pane
531 * window dependencies.
534 _XMRecomputePane(display
, menu
, p_ptr
, p_num
)
535 register Display
*display
; /* Standard X display variable. */
536 register XMenu
*menu
; /* Menu object being recomputed. */
537 register XMPane
*p_ptr
; /* Pane pointer. */
538 register int p_num
; /* Pane sequence number. */
540 register int window_x
; /* Recomputed window X coordinate. */
541 register int window_y
; /* Recomputed window Y coordinate. */
543 unsigned long change_mask
; /* Value mask to reconfigure window. */
544 XWindowChanges
*changes
; /* Values to use in configure window. */
546 register Bool config_p
= False
; /* Reconfigure pane window? */
549 * Update the pane serial number.
551 p_ptr
->serial
= p_num
;
554 * Recompute window X and Y coordinates.
556 switch (menu
->menu_style
) {
558 window_x
= menu
->p_x_off
* ((menu
->p_count
- 1) - p_num
);
559 window_y
= menu
->p_y_off
* ((menu
->p_count
- 1) - p_num
);
562 window_x
= menu
->p_x_off
* p_num
;
563 window_y
= menu
->p_y_off
* ((menu
->p_count
- 1) - p_num
);
567 window_y
= menu
->p_y_off
* ((menu
->p_count
- 1) - p_num
);
570 /* Error! Invalid style parameter. */
571 _XMErrorCode
= XME_STYLE_PARAM
;
574 window_x
+= menu
->x_pos
;
575 window_y
+= menu
->y_pos
;
578 * If the newly compute pane coordinates differ from the
579 * current coordinates, reset the current coordinates and
580 * reconfigure the pane.
583 (window_x
!= p_ptr
->window_x
) ||
584 (window_y
!= p_ptr
->window_y
)
587 * Reset the coordinates and schedule
588 * the pane for reconfiguration.
590 p_ptr
->window_x
= window_x
;
591 p_ptr
->window_y
= window_y
;
596 * If the local pane width and height differs from the
597 * menu pane width and height, reset the local values.
600 (p_ptr
->window_w
!= menu
->p_width
) ||
601 (p_ptr
->window_h
!= menu
->p_height
)
604 * Reset window width and height and schedule
605 * the pane for reconfiguration.
607 p_ptr
->window_w
= menu
->p_width
;
608 p_ptr
->window_h
= menu
->p_height
;
613 * If we need to reconfigure the pane window do it now.
615 if (config_p
== True
) {
617 * If the pane window has already been created then
618 * reconfigure the existing window, otherwise queue
619 * it for creation with the new configuration.
622 change_mask
= (CWX
| CWY
| CWWidth
| CWHeight
);
623 changes
= (XWindowChanges
*)malloc(sizeof(XWindowChanges
));
624 changes
->x
= p_ptr
->window_x
;
625 changes
->y
= p_ptr
->window_y
;
626 changes
->width
= p_ptr
->window_w
;
627 changes
->height
= p_ptr
->window_h
;
639 if (_XMWinQueAddPane(display
, menu
, p_ptr
) == _FAILURE
) {
646 * Recompute label X position.
648 switch (menu
->p_style
) {
650 p_ptr
->label_x
= menu
->p_x_off
+ menu
->p_fnt_pad
;
653 p_ptr
->label_x
= menu
->p_width
-
654 (p_ptr
->label_width
+ menu
->p_x_off
+ menu
->p_fnt_pad
);
657 p_ptr
->label_x
= (menu
->p_width
- p_ptr
->label_width
) >> 1;
660 /* Error! Invalid style parameter. */
661 _XMErrorCode
= XME_STYLE_PARAM
;
665 * Recompute label Y positions.
667 p_ptr
->label_uy
= menu
->p_fnt_pad
+ menu
->p_fnt_info
->max_bounds
.ascent
;
668 p_ptr
->label_ly
= (menu
->p_height
- menu
->p_fnt_pad
- menu
->p_fnt_info
->max_bounds
.descent
);
671 * All went well, return successfully.
673 _XMErrorCode
= XME_NO_ERROR
;
680 * _XMRecomputeSelection - Internal subroutine to recompute
681 * selection window dependencies.
684 _XMRecomputeSelection(display
, menu
, s_ptr
, s_num
)
685 register Display
*display
;
686 register XMenu
*menu
; /* Menu object being recomputed. */
687 register XMSelect
*s_ptr
; /* Selection pointer. */
688 register int s_num
; /* Selection sequence number. */
690 register Bool config_s
= False
; /* Reconfigure selection window? */
691 XWindowChanges
*changes
; /* Values to change in configure. */
692 unsigned long change_mask
; /* Value mask for XConfigureWindow. */
695 * If the selection serial numbers are out of order, begin
696 * resequencing selections. Recompute selection window coordinates
699 * When selections are created they are given a serial number of
700 * -1, this causes this routine to give a new selection
701 * its initial coordinates and serial number.
703 if (s_ptr
->serial
!= s_num
) {
705 * Fix the sequence number.
707 s_ptr
->serial
= s_num
;
709 * Recompute window X and Y coordinates.
711 s_ptr
->window_x
= menu
->s_x_off
;
712 s_ptr
->window_y
= menu
->flag_height
+ (menu
->s_y_off
* s_num
);
714 * We must reconfigure the window.
720 * If the local selection width and height differs from the
721 * menu selection width and height, reset the local values.
724 (s_ptr
->window_w
!= menu
->s_width
) ||
725 (s_ptr
->window_h
!= menu
->s_height
)
728 * We must reconfigure the window.
732 * Reset window width and height.
734 s_ptr
->window_w
= menu
->s_width
;
735 s_ptr
->window_h
= menu
->s_height
;
739 * If we need to reconfigure the selection window do it now.
741 if (config_s
== True
) {
743 * If the selection window has already been created then
744 * reconfigure the existing window, otherwise queue it
745 * for creation with the new configuration.
748 changes
= (XWindowChanges
*)malloc(sizeof(XWindowChanges
));
749 change_mask
= (CWX
| CWY
| CWWidth
| CWHeight
);
750 changes
= (XWindowChanges
*)malloc(sizeof(XWindowChanges
));
751 changes
->x
= s_ptr
->window_x
;
752 changes
->y
= s_ptr
->window_y
;
753 changes
->width
= s_ptr
->window_w
;
754 changes
->height
= s_ptr
->window_h
;
766 if (_XMWinQueAddSelection(display
, menu
, s_ptr
) == _FAILURE
) {
773 * Recompute label X position.
775 switch (menu
->s_style
) {
777 s_ptr
->label_x
= menu
->s_bdr_width
+ menu
->s_fnt_pad
+ s_ptr
->window_x
;
780 s_ptr
->label_x
= s_ptr
->window_x
+ menu
->s_width
-
781 (s_ptr
->label_width
+ menu
->s_bdr_width
+ menu
->s_fnt_pad
);
784 s_ptr
->label_x
= s_ptr
->window_x
+ ((menu
->s_width
- s_ptr
->label_width
) >> 1);
787 /* Error! Invalid style parameter. */
788 _XMErrorCode
= XME_STYLE_PARAM
;
792 * Recompute label Y position.
794 s_ptr
->label_y
= s_ptr
->window_y
+ menu
->s_fnt_info
->max_bounds
.ascent
+ menu
->s_fnt_pad
+ menu
->s_bdr_width
;
797 * All went well, return successfully.
799 _XMErrorCode
= XME_NO_ERROR
;
806 * _XMTransToOrigin - Internal subroutine to translate the point at
807 * the center of the current pane and selection to the
810 * WARNING! ****** Be certain that all menu dependencies have been
811 * recomputed before calling this routine or
812 * unpredictable results will follow.
814 _XMTransToOrigin(display
, menu
, p_ptr
, s_ptr
, x_pos
, y_pos
, orig_x
, orig_y
)
815 Display
*display
; /* Not used. Included for consistency. */
816 register XMenu
*menu
; /* Menu being computed against. */
817 register XMPane
*p_ptr
; /* Current pane pointer. */
818 register XMSelect
*s_ptr
; /* Current selection pointer. */
819 int x_pos
; /* X coordinate of point to translate. */
820 int y_pos
; /* Y coordinate of point to translate. */
821 int *orig_x
; /* Return value X coord. of the menu origin. */
822 int *orig_y
; /* Return value Y coord. of the menu origin. */
824 register int l_orig_x
; /* Local X coordinate of the menu origin. */
825 register int l_orig_y
; /* Local Y coordinate of the menu origin. */
828 * Translate the menu origin such that the cursor hot point will be in the
829 * center of the desired current selection and pane.
830 * If the current selection pointer is NULL then assume that the hot point
831 * will be in the center of the current pane flag.
836 * Translate from the center of the pane flag to the upper left
837 * of the current pane window.
839 l_orig_x
= x_pos
- (menu
->p_width
>> 1) - menu
->p_bdr_width
;
840 l_orig_y
= y_pos
- (menu
->flag_height
>> 1) - menu
->p_bdr_width
;
844 * First translate from the center of the current selection
845 * to the upper left of the current selection window.
847 l_orig_x
= x_pos
- (menu
->s_width
>> 1);
848 l_orig_y
= y_pos
- (menu
->s_height
>> 1);
851 * Then translate to the upper left of the current pane window.
853 l_orig_x
-= (s_ptr
->window_x
+ menu
->p_bdr_width
);
854 l_orig_y
-= (s_ptr
->window_y
+ menu
->p_bdr_width
);
858 * Finally translate to the upper left of the menu.
860 l_orig_x
-= (p_ptr
->window_x
- menu
->x_pos
);
861 l_orig_y
-= (p_ptr
->window_y
- menu
->y_pos
);
864 * Set the return values.
871 * _XMRefreshPane - Internal subroutine to completely refresh
872 * the contents of a pane.
874 _XMRefreshPane(display
, menu
, pane
)
875 register Display
*display
;
876 register XMenu
*menu
;
877 register XMPane
*pane
;
879 register XMSelect
*s_list
= pane
->s_list
;
880 register XMSelect
*s_ptr
;
883 * First clear the pane.
885 XClearWindow(display
, pane
->window
);
886 if (!pane
->activated
) {
887 XFillRectangle(display
,
889 menu
->inverse_select_GC
,
890 pane
->label_x
- menu
->p_fnt_pad
,
891 pane
->label_uy
- menu
->p_fnt_info
->max_bounds
.ascent
- menu
->p_fnt_pad
,
892 pane
->label_width
+ (menu
->p_fnt_pad
<< 1),
895 XFillRectangle(display
,
897 menu
->inverse_select_GC
,
898 pane
->label_x
- menu
->p_fnt_pad
,
899 pane
->label_ly
- menu
->p_fnt_info
->max_bounds
.ascent
- menu
->p_fnt_pad
,
900 pane
->label_width
+ (menu
->p_fnt_pad
<< 1),
907 pane
->label_x
, pane
->label_uy
,
908 pane
->label
, pane
->label_length
);
912 pane
->label_x
, pane
->label_ly
,
913 pane
->label
, pane
->label_length
);
919 pane
->label_x
, pane
->label_uy
,
920 pane
->label
, pane
->label_length
);
924 pane
->label_x
, pane
->label_ly
,
925 pane
->label
, pane
->label_length
);
928 * Finally refresh each selection if the pane is activated.
930 if (pane
->activated
) {
931 for (s_ptr
= s_list
->next
; s_ptr
!= s_list
; s_ptr
= s_ptr
->next
)
932 _XMRefreshSelection(display
, menu
, s_ptr
);
941 * _XMRefreshSelection - Internal subroutine that refreshes
942 * a single selection window.
944 _XMRefreshSelection(display
, menu
, select
)
945 register Display
*display
;
946 register XMenu
*menu
;
947 register XMSelect
*select
;
949 register int width
= select
->window_w
;
950 register int height
= select
->window_h
;
951 register int bdr_width
= menu
->s_bdr_width
;
953 if (select
->type
== SEPARATOR
) {
955 select
->parent_p
->window
,
956 menu
->normal_select_GC
,
958 select
->window_y
+ height
/ 2,
959 select
->window_x
+ width
,
960 select
->window_y
+ height
/ 2);
962 else if (select
->activated
) {
963 if (menu
->menu_mode
== INVERT
) {
964 XFillRectangle(display
,
965 select
->parent_p
->window
,
966 menu
->normal_select_GC
,
967 select
->window_x
, select
->window_y
,
970 select
->parent_p
->window
,
971 menu
->inverse_select_GC
,
974 select
->label
, select
->label_length
);
979 * Since most drawing routines with arbitrary width lines
980 * are slow compared to raster-ops lets use a raster-op to
984 XDrawRectangle(display
,
985 select
->parent_p
->window
,
986 menu
->normal_select_GC
,
987 select
->window_x
+ (bdr_width
>> 1),
988 select
->window_y
+ (bdr_width
>> 1 ),
992 select
->parent_p
->window
,
993 menu
->normal_select_GC
,
996 select
->label
, select
->label_length
);
1001 select
->parent_p
->window
,
1002 select
->window_x
, select
->window_y
,
1005 if (select
->active
) {
1006 XDrawString(display
,
1007 select
->parent_p
->window
,
1008 menu
->normal_select_GC
,
1011 select
->label
, select
->label_length
);
1014 XDrawString(display
,
1015 select
->parent_p
->window
,
1019 select
->label
, select
->label_length
);
1024 /* arch-tag: 3ac61957-0852-4e72-8b88-7dfab1a5dee9
1025 (do not change this comment) */