Icon creation in only one function
[wmaker-crm.git] / WINGs / wcolorwell.c
blob19532d6a3d7ec419d094a7136f15ceb3ba185081
2 #include "WINGsP.h"
4 #define XDND_COLOR_DATA_TYPE "application/X-color"
6 char *WMColorWellDidChangeNotification = "WMColorWellDidChangeNotification";
8 typedef struct W_ColorWell {
9 W_Class widgetClass;
10 WMView *view;
12 WMView *colorView;
14 WMColor *color;
16 WMAction *action;
17 void *clientData;
19 WMPoint ipoint;
21 struct {
22 unsigned int active:1;
23 unsigned int bordered:1;
24 } flags;
26 WMArray *xdndTypes;
27 } ColorWell;
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();
42 W_ViewDelegate _ColorWellViewDelegate = {
43 NULL,
44 NULL,
45 NULL,
46 NULL,
47 willResizeColorWell
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 = {
56 dropDataTypes,
57 wantedDropOperation,
58 NULL,
59 acceptDropOperation,
60 NULL,
61 NULL,
62 fetchDragData
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 = {
73 NULL,
74 requiredDataTypes,
75 allowedOperation,
76 NULL,
77 performDragOperation,
78 NULL
81 #define DEFAULT_WIDTH 60
82 #define DEFAULT_HEIGHT 30
83 #define DEFAULT_BORDER_WIDTH 6
85 #define MIN_WIDTH 16
86 #define MIN_HEIGHT 8
88 static void colorChangedObserver(void *data, WMNotification * notification)
90 WMColorPanel *panel = (WMColorPanel *) WMGetNotificationObject(notification);
91 WMColorWell *cPtr = (WMColorWell *) data;
92 WMColor *color;
94 if (!cPtr->flags.active)
95 return;
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;
107 WMColor *color;
109 color = WMGetColorPanelColor(panel);
110 WMSetColorWellColor(cPtr, color);
111 WMPostNotificationName(WMColorWellDidChangeNotification, cPtr, NULL);
114 static void activatedObserver(void *data, WMNotification * notification)
117 WMColorWell *cPtr = (WMColorWell*)data;
119 if (!cPtr->flags.active || WMGetNotificationObject(notification) == cPtr)
120 return;
122 W_SetViewBackgroundColor(cPtr->view, WMWidgetScreen(cPtr)->gray);
123 paintColorWell(cPtr);
125 cPtr->flags.active = 0;
129 static WMArray *getXdndTypeArray()
131 WMArray *types = WMCreateArray(1);
132 WMAddToArray(types, XDND_COLOR_DATA_TYPE);
133 return types;
136 WMColorWell *WMCreateColorWell(WMWidget * parent)
138 ColorWell *cPtr;
140 cPtr = wmalloc(sizeof(ColorWell));
142 cPtr->widgetClass = WC_ColorWell;
144 cPtr->view = W_CreateView(W_VIEW(parent));
145 if (!cPtr->view) {
146 wfree(cPtr);
147 return NULL;
149 cPtr->view->self = cPtr;
151 cPtr->view->delegate = &_ColorWellViewDelegate;
153 cPtr->colorView = W_CreateView(cPtr->view);
154 if (!cPtr->colorView) {
155 W_DestroyView(cPtr->view);
156 wfree(cPtr);
157 return NULL;
159 cPtr->colorView->self = cPtr;
161 WMCreateEventHandler(cPtr->view, ExposureMask | StructureNotifyMask
162 | ClientMessageMask, handleEvents, cPtr);
164 WMCreateEventHandler(cPtr->colorView, ExposureMask, handleEvents, cPtr);
166 WMCreateDragHandler(cPtr->colorView, handleDragEvents, cPtr);
168 WMCreateEventHandler(cPtr->view, ButtonPressMask, handleActionEvents, cPtr);
170 cPtr->colorView->flags.mapWhenRealized = 1;
172 cPtr->flags.bordered = 1;
174 W_ResizeView(cPtr->view, DEFAULT_WIDTH, DEFAULT_HEIGHT);
176 WMAddNotificationObserver(activatedObserver, cPtr, _ColorWellActivatedNotification, NULL);
178 cPtr->color = WMBlackColor(WMWidgetScreen(cPtr));
180 WMAddNotificationObserver(colorChangedObserver, cPtr, WMColorPanelColorChangedNotification, NULL);
182 WMSetViewDragSourceProcs(cPtr->colorView, &_DragSourceProcs);
183 WMSetViewDragDestinationProcs(cPtr->colorView, &_DragDestinationProcs);
185 cPtr->xdndTypes = getXdndTypeArray();
186 WMRegisterViewForDraggedTypes(cPtr->colorView, cPtr->xdndTypes);
188 return cPtr;
191 void WMSetColorWellColor(WMColorWell * cPtr, WMColor * color)
193 if (cPtr->color)
194 WMReleaseColor(cPtr->color);
196 cPtr->color = WMRetainColor(color);
198 if (cPtr->colorView->flags.realized && cPtr->colorView->flags.mapped)
199 paintColorWell(cPtr);
202 WMColor *WMGetColorWellColor(WMColorWell * cPtr)
204 return cPtr->color;
207 void WSetColorWellBordered(WMColorWell * cPtr, Bool flag)
209 flag = ((flag == 0) ? 0 : 1);
210 if (cPtr->flags.bordered != flag) {
211 cPtr->flags.bordered = flag;
212 W_ResizeView(cPtr->view, cPtr->view->size.width, cPtr->view->size.height);
216 static void willResizeColorWell(W_ViewDelegate * self, WMView * view, unsigned int *width, unsigned int *height)
218 WMColorWell *cPtr = (WMColorWell *) view->self;
219 int bw;
221 if (cPtr->flags.bordered) {
223 if (*width < MIN_WIDTH)
224 *width = MIN_WIDTH;
225 if (*height < MIN_HEIGHT)
226 *height = MIN_HEIGHT;
228 bw = (int)((float)WMIN(*width, *height) * 0.24);
230 W_ResizeView(cPtr->colorView, *width - 2 * bw, *height - 2 * bw);
232 if (cPtr->colorView->pos.x != bw || cPtr->colorView->pos.y != bw)
233 W_MoveView(cPtr->colorView, bw, bw);
234 } else {
235 W_ResizeView(cPtr->colorView, *width, *height);
237 W_MoveView(cPtr->colorView, 0, 0);
241 static void paintColorWell(ColorWell * cPtr)
243 W_Screen *scr = cPtr->view->screen;
245 W_DrawRelief(scr, cPtr->view->window, 0, 0, cPtr->view->size.width, cPtr->view->size.height, WRRaised);
247 W_DrawRelief(scr, cPtr->colorView->window, 0, 0,
248 cPtr->colorView->size.width, cPtr->colorView->size.height, WRSunken);
250 if (cPtr->color)
251 WMPaintColorSwatch(cPtr->color, cPtr->colorView->window,
252 2, 2, cPtr->colorView->size.width - 4, cPtr->colorView->size.height - 4);
255 static void handleEvents(XEvent * event, void *data)
257 ColorWell *cPtr = (ColorWell *) data;
259 CHECK_CLASS(data, WC_ColorWell);
261 switch (event->type) {
262 case Expose:
263 if (event->xexpose.count != 0)
264 break;
265 paintColorWell(cPtr);
266 break;
268 case DestroyNotify:
269 destroyColorWell(cPtr);
270 break;
275 static WMArray *dropDataTypes(WMView * self)
277 return ((ColorWell *) self->self)->xdndTypes;
280 static WMDragOperationType wantedDropOperation(WMView * self)
282 return WDOperationCopy;
285 static Bool acceptDropOperation(WMView * self, WMDragOperationType operation)
287 return (operation == WDOperationCopy);
290 static WMData *fetchDragData(WMView * self, char *type)
292 char *color = WMGetColorRGBDescription(((WMColorWell *) self->self)->color);
293 WMData *data;
295 data = WMCreateDataWithBytes(color, strlen(color) + 1);
296 wfree(color);
298 return data;
301 static WMPixmap *makeDragPixmap(WMColorWell * cPtr)
303 WMScreen *scr = cPtr->view->screen;
304 Pixmap pix;
306 pix = XCreatePixmap(scr->display, W_DRAWABLE(scr), 16, 16, scr->depth);
308 XFillRectangle(scr->display, pix, WMColorGC(cPtr->color), 0, 0, 15, 15);
310 XDrawRectangle(scr->display, pix, WMColorGC(scr->black), 0, 0, 15, 15);
312 return WMCreatePixmapFromXPixmaps(scr, pix, None, 16, 16, scr->depth);
315 static void handleDragEvents(XEvent * event, void *data)
317 WMColorWell *cPtr = (ColorWell *) data;
319 if (event->type == ButtonPress && event->xbutton.button == Button1) {
320 /* initialise drag icon */
321 WMSetViewDragImage(cPtr->colorView, makeDragPixmap(cPtr));
324 WMDragImageFromView(cPtr->colorView, event);
327 static void handleActionEvents(XEvent * event, void *data)
329 WMColorWell *cPtr = (ColorWell *) data;
330 WMScreen *scr = WMWidgetScreen(cPtr);
331 WMColorPanel *cpanel;
333 if (cPtr->flags.active)
334 W_SetViewBackgroundColor(cPtr->view, scr->gray);
335 else
336 W_SetViewBackgroundColor(cPtr->view, scr->white);
337 paintColorWell(cPtr);
339 cPtr->flags.active ^= 1;
341 if (cPtr->flags.active) {
342 WMPostNotificationName(_ColorWellActivatedNotification, cPtr, NULL);
344 cpanel = WMGetColorPanel(scr);
346 WMSetColorPanelAction(cpanel, updateColorCallback, cPtr);
348 if (cPtr->color)
349 WMSetColorPanelColor(cpanel, cPtr->color);
350 WMShowColorPanel(cpanel);
353 static void destroyColorWell(ColorWell * cPtr)
355 WMRemoveNotificationObserver(cPtr);
357 if (cPtr->color)
358 WMReleaseColor(cPtr->color);
360 WMFreeArray(cPtr->xdndTypes);
362 wfree(cPtr);
365 static Bool dropIsOk(WMDragOperationType request, WMArray * sourceDataTypes)
367 WMArrayIterator iter;
368 char *type;
370 if (request == WDOperationCopy) {
371 WM_ITERATE_ARRAY(sourceDataTypes, type, iter) {
372 if (type != NULL && strcmp(type, XDND_COLOR_DATA_TYPE) == 0) {
373 return True;
378 return False;
381 static WMArray *requiredDataTypes(WMView * self, WMDragOperationType request, WMArray * sourceDataTypes)
383 if (dropIsOk(request, sourceDataTypes))
384 return ((ColorWell *) self->self)->xdndTypes;
385 else
386 return NULL;
389 static WMDragOperationType allowedOperation(WMView * self, WMDragOperationType request, WMArray * sourceDataTypes)
391 if (dropIsOk(request, sourceDataTypes))
392 return WDOperationCopy;
393 else
394 return WDOperationNone;
397 static void performDragOperation(WMView * self, WMArray * dropData, WMArray * operations, WMPoint * dropLocation)
399 char *colorName;
400 WMColor *color;
401 WMData *data;
403 /* only one operation requested (WDOperationCopy) implies only one data */
404 data = (WMData *) WMGetFromArray(dropData, 0);
406 if (data != NULL) {
407 colorName = (char *)WMDataBytes(data);
408 color = WMCreateNamedColor(W_VIEW_SCREEN(self), colorName, True);
409 WMSetColorWellColor(self->self, color);
410 WMReleaseColor(color);