4 #define XDND_COLOR_DATA_TYPE "application/X-color"
6 char *WMColorWellDidChangeNotification
= "WMColorWellDidChangeNotification";
8 typedef struct W_ColorWell
{
22 unsigned int active
:1;
23 unsigned int bordered
:1;
29 static char *_ColorWellActivatedNotification
= "_ColorWellActivatedNotification";
31 static void destroyColorWell(ColorWell
* cPtr
);
32 static void paintColorWell(ColorWell
* cPtr
);
34 static void handleEvents(XEvent
* event
, void *data
);
36 static void handleDragEvents(XEvent
* event
, void *data
);
38 static void handleActionEvents(XEvent
* event
, void *data
);
40 static void willResizeColorWell(W_ViewDelegate
* self
, WMView
* view
, unsigned int *width
, unsigned int *height
);
42 W_ViewDelegate _ColorWellViewDelegate
= {
50 static WMArray
*dropDataTypes(WMView
* self
);
51 static WMDragOperationType
wantedDropOperation(WMView
* self
);
52 static Bool
acceptDropOperation(WMView
* self
, WMDragOperationType operation
);
53 static WMData
*fetchDragData(WMView
* self
, char *type
);
55 static WMDragSourceProcs _DragSourceProcs
= {
65 static WMArray
*requiredDataTypes(WMView
* self
,
66 WMDragOperationType requestedOperation
, WMArray
* sourceDataTypes
);
67 static WMDragOperationType
allowedOperation(WMView
* self
,
68 WMDragOperationType requestedOperation
, WMArray
* sourceDataTypes
);
69 static void performDragOperation(WMView
* self
, WMArray
* dropDatas
,
70 WMArray
* operationsList
, WMPoint
* dropLocation
);
72 static WMDragDestinationProcs _DragDestinationProcs
= {
81 #define DEFAULT_WIDTH 60
82 #define DEFAULT_HEIGHT 30
83 #define DEFAULT_BORDER_WIDTH 6
88 static void colorChangedObserver(void *data
, WMNotification
* notification
)
90 WMColorPanel
*panel
= (WMColorPanel
*) WMGetNotificationObject(notification
);
91 WMColorWell
*cPtr
= (WMColorWell
*) data
;
94 if (!cPtr
->flags
.active
)
97 color
= WMGetColorPanelColor(panel
);
99 WMSetColorWellColor(cPtr
, color
);
100 WMPostNotificationName(WMColorWellDidChangeNotification
, cPtr
, NULL
);
103 static void updateColorCallback(void *self
, void *data
)
105 WMColorPanel
*panel
= (WMColorPanel
*) self
;
106 WMColorWell
*cPtr
= (ColorWell
*) data
;
109 color
= WMGetColorPanelColor(panel
);
110 WMSetColorWellColor(cPtr
, color
);
111 WMPostNotificationName(WMColorWellDidChangeNotification
, cPtr
, NULL
);
114 static WMArray
*getXdndTypeArray(void)
116 WMArray
*types
= WMCreateArray(1);
117 WMAddToArray(types
, XDND_COLOR_DATA_TYPE
);
121 WMColorWell
*WMCreateColorWell(WMWidget
* parent
)
125 cPtr
= wmalloc(sizeof(ColorWell
));
127 cPtr
->widgetClass
= WC_ColorWell
;
129 cPtr
->view
= W_CreateView(W_VIEW(parent
));
134 cPtr
->view
->self
= cPtr
;
136 cPtr
->view
->delegate
= &_ColorWellViewDelegate
;
138 cPtr
->colorView
= W_CreateView(cPtr
->view
);
139 if (!cPtr
->colorView
) {
140 W_DestroyView(cPtr
->view
);
144 cPtr
->colorView
->self
= cPtr
;
146 WMCreateEventHandler(cPtr
->view
, ExposureMask
| StructureNotifyMask
147 | ClientMessageMask
, handleEvents
, cPtr
);
149 WMCreateEventHandler(cPtr
->colorView
, ExposureMask
, handleEvents
, cPtr
);
151 WMCreateDragHandler(cPtr
->colorView
, handleDragEvents
, cPtr
);
153 WMCreateEventHandler(cPtr
->view
, ButtonPressMask
, handleActionEvents
, cPtr
);
154 WMCreateEventHandler(cPtr
->colorView
, ButtonPressMask
, handleActionEvents
, cPtr
);
156 cPtr
->colorView
->flags
.mapWhenRealized
= 1;
158 cPtr
->flags
.bordered
= 1;
160 W_ResizeView(cPtr
->view
, DEFAULT_WIDTH
, DEFAULT_HEIGHT
);
162 cPtr
->color
= WMBlackColor(WMWidgetScreen(cPtr
));
164 WMAddNotificationObserver(colorChangedObserver
, cPtr
, WMColorPanelColorChangedNotification
, NULL
);
166 WMSetViewDragSourceProcs(cPtr
->colorView
, &_DragSourceProcs
);
167 WMSetViewDragDestinationProcs(cPtr
->colorView
, &_DragDestinationProcs
);
169 cPtr
->xdndTypes
= getXdndTypeArray();
170 WMRegisterViewForDraggedTypes(cPtr
->colorView
, cPtr
->xdndTypes
);
175 void WMSetColorWellColor(WMColorWell
* cPtr
, WMColor
* color
)
178 WMReleaseColor(cPtr
->color
);
180 cPtr
->color
= WMRetainColor(color
);
182 if (cPtr
->colorView
->flags
.realized
&& cPtr
->colorView
->flags
.mapped
)
183 paintColorWell(cPtr
);
186 WMColor
*WMGetColorWellColor(WMColorWell
* cPtr
)
191 void WSetColorWellBordered(WMColorWell
* cPtr
, Bool flag
)
193 flag
= ((flag
== 0) ? 0 : 1);
194 if (cPtr
->flags
.bordered
!= flag
) {
195 cPtr
->flags
.bordered
= flag
;
196 W_ResizeView(cPtr
->view
, cPtr
->view
->size
.width
, cPtr
->view
->size
.height
);
200 static void willResizeColorWell(W_ViewDelegate
* self
, WMView
* view
, unsigned int *width
, unsigned int *height
)
202 WMColorWell
*cPtr
= (WMColorWell
*) view
->self
;
205 /* Parameter not used, but tell the compiler that it is ok */
208 if (cPtr
->flags
.bordered
) {
210 if (*width
< MIN_WIDTH
)
212 if (*height
< MIN_HEIGHT
)
213 *height
= MIN_HEIGHT
;
215 bw
= (int)((float)WMIN(*width
, *height
) * 0.24);
217 W_ResizeView(cPtr
->colorView
, *width
- 2 * bw
, *height
- 2 * bw
);
219 if (cPtr
->colorView
->pos
.x
!= bw
|| cPtr
->colorView
->pos
.y
!= bw
)
220 W_MoveView(cPtr
->colorView
, bw
, bw
);
222 W_ResizeView(cPtr
->colorView
, *width
, *height
);
224 W_MoveView(cPtr
->colorView
, 0, 0);
228 static void paintColorWell(ColorWell
* cPtr
)
230 W_Screen
*scr
= cPtr
->view
->screen
;
232 W_DrawRelief(scr
, cPtr
->view
->window
, 0, 0, cPtr
->view
->size
.width
, cPtr
->view
->size
.height
, WRRaised
);
234 W_DrawRelief(scr
, cPtr
->colorView
->window
, 0, 0,
235 cPtr
->colorView
->size
.width
, cPtr
->colorView
->size
.height
, WRSunken
);
238 WMPaintColorSwatch(cPtr
->color
, cPtr
->colorView
->window
,
239 2, 2, cPtr
->colorView
->size
.width
- 4, cPtr
->colorView
->size
.height
- 4);
242 static void handleEvents(XEvent
* event
, void *data
)
244 ColorWell
*cPtr
= (ColorWell
*) data
;
246 CHECK_CLASS(data
, WC_ColorWell
);
248 switch (event
->type
) {
250 if (event
->xexpose
.count
!= 0)
252 paintColorWell(cPtr
);
256 destroyColorWell(cPtr
);
262 static WMArray
*dropDataTypes(WMView
* self
)
264 return ((ColorWell
*) self
->self
)->xdndTypes
;
267 static WMDragOperationType
wantedDropOperation(WMView
* self
)
269 /* Parameter not used, but tell the compiler that it is ok */
272 return WDOperationCopy
;
275 static Bool
acceptDropOperation(WMView
* self
, WMDragOperationType operation
)
277 /* Parameter not used, but tell the compiler that it is ok */
280 return (operation
== WDOperationCopy
);
283 static WMData
*fetchDragData(WMView
* self
, char *type
)
285 char *color
= WMGetColorRGBDescription(((WMColorWell
*) self
->self
)->color
);
288 /* Parameter not used, but tell the compiler that it is ok */
291 data
= WMCreateDataWithBytes(color
, strlen(color
) + 1);
297 static WMPixmap
*makeDragPixmap(WMColorWell
* cPtr
)
299 WMScreen
*scr
= cPtr
->view
->screen
;
302 pix
= XCreatePixmap(scr
->display
, W_DRAWABLE(scr
), 16, 16, scr
->depth
);
304 XFillRectangle(scr
->display
, pix
, WMColorGC(cPtr
->color
), 0, 0, 15, 15);
306 XDrawRectangle(scr
->display
, pix
, WMColorGC(scr
->black
), 0, 0, 15, 15);
308 return WMCreatePixmapFromXPixmaps(scr
, pix
, None
, 16, 16, scr
->depth
);
311 static void handleDragEvents(XEvent
* event
, void *data
)
313 WMColorWell
*cPtr
= (ColorWell
*) data
;
315 if (event
->type
== ButtonPress
&& event
->xbutton
.button
== Button1
) {
316 /* initialise drag icon */
317 WMSetViewDragImage(cPtr
->colorView
, makeDragPixmap(cPtr
));
320 WMDragImageFromView(cPtr
->colorView
, event
);
323 static void handleActionEvents(XEvent
* event
, void *data
)
325 WMColorWell
*cPtr
= (ColorWell
*) data
;
326 WMScreen
*scr
= WMWidgetScreen(cPtr
);
327 WMColorPanel
*cpanel
;
329 /* Parameter not used, but tell the compiler that it is ok */
332 if (cPtr
->flags
.active
)
333 W_SetViewBackgroundColor(cPtr
->view
, scr
->gray
);
335 W_SetViewBackgroundColor(cPtr
->view
, scr
->white
);
336 paintColorWell(cPtr
);
338 cPtr
->flags
.active
^= 1;
340 if (cPtr
->flags
.active
) {
341 WMPostNotificationName(_ColorWellActivatedNotification
, cPtr
, NULL
);
343 cpanel
= WMGetColorPanel(scr
);
345 WMSetColorPanelAction(cpanel
, updateColorCallback
, cPtr
);
348 WMSetColorPanelColor(cpanel
, cPtr
->color
);
349 WMShowColorPanel(cpanel
);
352 static void destroyColorWell(ColorWell
* cPtr
)
354 WMRemoveNotificationObserver(cPtr
);
357 WMReleaseColor(cPtr
->color
);
359 WMFreeArray(cPtr
->xdndTypes
);
364 static Bool
dropIsOk(WMDragOperationType request
, WMArray
* sourceDataTypes
)
366 WMArrayIterator iter
;
369 if (request
== WDOperationCopy
) {
370 WM_ITERATE_ARRAY(sourceDataTypes
, type
, iter
) {
371 if (type
!= NULL
&& strcmp(type
, XDND_COLOR_DATA_TYPE
) == 0) {
380 static WMArray
*requiredDataTypes(WMView
* self
, WMDragOperationType request
, WMArray
* sourceDataTypes
)
382 if (dropIsOk(request
, sourceDataTypes
))
383 return ((ColorWell
*) self
->self
)->xdndTypes
;
388 static WMDragOperationType
allowedOperation(WMView
* self
, WMDragOperationType request
, WMArray
* sourceDataTypes
)
390 /* Parameter not used, but tell the compiler that it is ok */
393 if (dropIsOk(request
, sourceDataTypes
))
394 return WDOperationCopy
;
396 return WDOperationNone
;
399 static void performDragOperation(WMView
* self
, WMArray
* dropData
, WMArray
* operations
, WMPoint
* dropLocation
)
405 /* Parameter not used, but tell the compiler that it is ok */
409 /* only one operation requested (WDOperationCopy) implies only one data */
410 data
= (WMData
*) WMGetFromArray(dropData
, 0);
413 colorName
= (char *)WMDataBytes(data
);
414 color
= WMCreateNamedColor(W_VIEW_SCREEN(self
), colorName
, True
);
415 WMSetColorWellColor(self
->self
, color
);
416 WMReleaseColor(color
);