11 /* item number for last known highlight position */
12 static int OldPos
= -1 ;
13 /* Graphic context used to draw highlight */
14 static GC HighlightGC
= 0 ;
15 /* position where bar will be shown next time */
16 static int BarX
=0, BarY
=0 ;
18 extern void ButtonBar_Build (void)
29 XSetWindowAttributes wa
;
31 n
= Menu_GetNbEntries () ;
33 h
= Menu_GetNbRows () ;
34 w
= Menu_GetNbColumns () ;
35 width
= TileXSize
* w
;
36 height
= TileYSize
* h
;
39 ButtonBarWindow
= XCreateSimpleWindow (
40 DADisplay
, DefaultRootWindow (DADisplay
), 0, 0, width
, height
, 0,
41 BlackPixel (DADisplay
, DefaultScreen (DADisplay
)),
42 BlackPixel (DADisplay
, DefaultScreen (DADisplay
))) ;
43 ButtonBarImage
= XCreatePixmap (DADisplay
, ButtonBarWindow
,
44 width
, height
, DADepth
) ;
45 imgOp
= XCreateGC (DADisplay
, ButtonBarWindow
, 0, & gc
) ;
47 HighlightBehindMask
= XCreatePixmap (DADisplay
, ButtonBarWindow
,
49 maskOp
= XCreateGC (DADisplay
, HighlightBehindMask
, 0, & gc
) ;
51 /* first apply tile to whole bar */
54 XCopyArea (DADisplay
, TileImage
, ButtonBarImage
, imgOp
, 0, 0,
55 TileXSize
, TileYSize
, TileXSize
*i
, TileYSize
*j
) ;
57 /* initialize "behind" mask to all 1's */
58 XSetFunction (DADisplay
, maskOp
, GXset
) ;
59 XFillRectangle (DADisplay
, HighlightBehindMask
, maskOp
,
60 0, 0, width
, height
) ;
61 /* and copy behind mask cells from highlight mask */
62 if (HighlightMask
!= 0)
64 XSetFunction (DADisplay
, maskOp
, GXcopy
) ;
67 XCopyArea (DADisplay
, HighlightMask
, HighlightBehindMask
,
69 0, 0, TileXSize
, TileYSize
, TileXSize
*i
, TileYSize
*j
) ;
72 /* then apply each pixmap of menu entry */
73 /* and build a global invert mask for highlight "behind" */
76 Pixmaps_FindLoad (Menu_GetEntryPixmap (i
),
77 & image
, & mask
, & width
, & height
) ;
79 /* center pixmap within its cell */
80 x
= (width
>= TileXSize
? 0 : (TileXSize
-width
)/2) ;
81 y
= (height
>= TileYSize
? 0 : (TileYSize
-height
)/2) ;
83 /* use GC to draw with pixmap's mask in the right cell */
84 x0
= TileXSize
*(i
/h
) ;
85 y0
= TileYSize
*(i
%h
) ;
86 gc
.clip_x_origin
= x0
+ x
;
87 gc
.clip_y_origin
= y0
+ y
;
88 gc
.clip_mask
= mask
; /* may be None */
89 XChangeGC (DADisplay
, imgOp
,
90 GCClipXOrigin
| GCClipYOrigin
| GCClipMask
, & gc
) ;
91 XCopyArea (DADisplay
, image
, ButtonBarImage
, imgOp
, 0, 0,
92 width
, height
, gc
.clip_x_origin
, gc
.clip_y_origin
) ;
94 /* update highlight behind mask: cell &= ~iconmask */
95 if (HighlightBehind
&& mask
!= None
)
97 /* use "andInverted" (dst &= ~src) */
98 XSetFunction (DADisplay
, maskOp
, GXandInverted
) ;
99 XCopyArea (DADisplay
, mask
, HighlightBehindMask
, maskOp
,
100 0, 0, width
, height
, gc
.clip_x_origin
, gc
.clip_y_origin
) ;
102 /* or highlight behind cell &= 0 if no mask */
104 if (HighlightBehind
&& mask
== None
)
106 XSetFunction (DADisplay
, maskOp
, GXclear
) ;
107 XFillRectangle (DADisplay
, HighlightBehindMask
, maskOp
,
108 gc
.clip_x_origin
, gc
.clip_y_origin
, width
, height
) ;
111 XFreePixmap (DADisplay
, image
) ;
112 if (mask
!= 0) XFreePixmap (DADisplay
, mask
) ;
115 XFreeGC (DADisplay
, imgOp
) ;
116 XFreeGC (DADisplay
, maskOp
) ;
118 wa
.background_pixmap
= ButtonBarImage
;
119 wa
.event_mask
= ButtonPressMask
| ButtonReleaseMask
;
120 if (! ClickOnly
) wa
.event_mask
|= EnterWindowMask
| LeaveWindowMask
;
121 if (HighlightImage
!= 0) wa
.event_mask
|= PointerMotionMask
;
122 wa
.override_redirect
= True
;
123 XChangeWindowAttributes (DADisplay
, ButtonBarWindow
,
124 CWBackPixmap
| CWEventMask
| CWOverrideRedirect
, & wa
) ;
127 extern void ButtonBar_SetPositionFromDockApp (int dockx
, int docky
,
128 int dockw
, int dockh
)
130 int xMid
, scrWidth
, h
, scrHeight
;
136 scrHeight
= DisplayHeight (DADisplay
, DefaultScreen (DADisplay
)) ;
138 h
= TileYSize
* Menu_GetNbRows () ;
139 if (y
+ h
>= scrHeight
)
145 scrWidth
= DisplayWidth (DADisplay
, DefaultScreen (DADisplay
)) ;
146 xMid
= dockx
+ dockw
/2 ;
147 if (xMid
*2 < scrWidth
)
149 /* we are rather on left, expand to right */
154 /* we are rather on right, expand to left */
155 x
= dockx
- TileXSize
* Menu_GetNbColumns () ;
162 extern void ButtonBar_Show (void)
164 XMoveWindow (DADisplay
, ButtonBarWindow
, BarX
, BarY
) ;
165 XMapRaised (DADisplay
, ButtonBarWindow
) ;
168 static void BuildHighlightGC (void)
171 gc
.clip_mask
= HighlightBehindMask
;
172 HighlightGC
= XCreateGC (DADisplay
, DAWindow
,
176 extern void ButtonBar_Highlight (int col
, int row
)
181 if (HighlightImage
== 0) return ;
183 h
= Menu_GetNbRows () ;
184 newPos
= col
*h
+ row
;
186 if (newPos
!= OldPos
)
191 /* first clear old highlight position */
192 ButtonBar_Unhighlight () ;
194 /* don't draw highlight on empty slots */
195 if (newPos
>= Menu_GetNbEntries ()) return ;
197 /* compute new draw position */
198 x
= col
* TileXSize
;
199 y
= row
* TileYSize
;
201 if (HighlightGC
== 0) BuildHighlightGC () ;
202 gc
.clip_x_origin
= HighlightBehind
? 0 : x
;
203 gc
.clip_y_origin
= HighlightBehind
? 0 : y
;
204 XChangeGC (DADisplay
, HighlightGC
,
205 GCClipXOrigin
| GCClipYOrigin
, & gc
) ;
206 XCopyArea (DADisplay
, HighlightImage
, ButtonBarWindow
,
207 HighlightGC
, 0, 0, TileXSize
, TileYSize
, x
, y
) ;
213 extern void ButtonBar_Unhighlight (void)
217 if (HighlightImage
== 0 || OldPos
< 0) return ;
219 h
= Menu_GetNbRows () ;
220 x
= (OldPos
/ h
) * TileXSize
;
221 y
= (OldPos
% h
) * TileYSize
;
222 XClearArea (DADisplay
, ButtonBarWindow
,
223 x
, y
, TileXSize
, TileYSize
, False
) ;
227 extern void ButtonBar_Hide (void)
229 XUnmapWindow (DADisplay
, ButtonBarWindow
) ;
233 extern void ButtonBar_Rebuild (void)
235 XDestroyWindow (DADisplay
, ButtonBarWindow
) ;
236 if (HighlightGC
!= 0)
238 XFreeGC (DADisplay
, HighlightGC
) ;