- Updated WINGs/NEWS with info about hw the API changed how how things
[wmaker-crm.git] / WINGs / Tests / wtest.c
blobb0f4815b3c8b044aa58f0bb212e636f22d13b64e
1 /*
2 * WINGs test application
3 */
5 #include <WINGs/WINGs.h>
7 #include <stdio.h>
12 * You need to define this function to link any program to WINGs.
13 * This will be called when the application will be terminated because
14 * on a fatal error.
16 void
17 wAbort()
19 exit(1);
25 Display *dpy;
27 int windowCount = 0;
29 void
30 closeAction(WMWidget *self, void *data)
32 WMDestroyWidget(self);
33 windowCount--;
34 printf("window closed, window count = %d\n", windowCount);
35 if (windowCount < 1)
36 exit(0);
40 void
41 testOpenFilePanel(WMScreen *scr)
43 WMOpenPanel *panel;
45 /* windowCount++; */
47 /* get the shared Open File panel */
48 panel = WMGetOpenPanel(scr);
50 WMRunModalFilePanelForDirectory(panel, NULL, "/usr/local", NULL, NULL);
52 /* free the panel to save some memory. Not needed otherwise. */
53 WMFreeFilePanel(WMGetOpenPanel(scr));
57 void
58 testFontPanel(WMScreen *scr)
60 WMFontPanel *panel;
62 /*windowCount++;*/
64 panel = WMGetFontPanel(scr);
66 WMShowFontPanel(panel);
68 /* WMFreeFontPanel(panel);*/
73 void
74 testFrame(WMScreen *scr)
76 WMWindow *win;
77 WMFrame *frame;
78 int i;
79 static char* titles[] = {
80 "AboveTop",
81 "AtTop",
82 "BelowTop",
83 "AboveBottom",
84 "AtBottom",
85 "BelowBottom"
87 static WMTitlePosition pos[] = {
88 WTPAboveTop,
89 WTPAtTop,
90 WTPBelowTop,
91 WTPAboveBottom,
92 WTPAtBottom,
93 WTPBelowBottom
96 windowCount++;
98 win = WMCreateWindow(scr, "testFrame");
99 WMSetWindowTitle(win, "Frame");
100 WMSetWindowCloseAction(win, closeAction, NULL);
101 WMResizeWidget(win, 400, 300);
103 for (i = 0; i < 6; i++) {
104 frame = WMCreateFrame(win);
105 WMMoveWidget(frame, 8+(i%3)*130, 8+(i/3)*130);
106 WMResizeWidget(frame, 120, 120);
107 WMSetFrameTitle(frame, titles[i]);
108 WMSetFrameTitlePosition(frame, pos[i]);
111 WMRealizeWidget(win);
112 WMMapSubwidgets(win);
113 WMMapWidget(win);
118 static void
119 resizedWindow(void *self, WMNotification *notif)
121 WMView *view = (WMView*)WMGetNotificationObject(notif);
122 WMSize size = WMGetViewSize(view);
124 WMResizeWidget((WMWidget*)self, size.width, size.height);
127 void
128 testBox(WMScreen *scr)
130 WMWindow *win;
131 WMBox *box, *hbox;
132 WMButton *btn;
133 WMPopUpButton *pop;
134 int i;
136 windowCount++;
138 win = WMCreateWindow(scr, "testBox");
139 WMSetWindowTitle(win, "Box");
140 WMSetWindowCloseAction(win, closeAction, NULL);
141 WMResizeWidget(win, 400, 300);
143 box = WMCreateBox(win);
144 WMSetBoxBorderWidth(box, 5);
145 WMSetViewExpandsToParent(WMWidgetView(box), 0, 0, 0, 0);
147 /*WMSetBoxHorizontal(box, True);*/
148 for (i = 0; i < 4; i++) {
149 btn = WMCreateCommandButton(box);
150 WMSetButtonText(btn, "bla");
151 WMMapWidget(btn);
152 WMAddBoxSubview(box, WMWidgetView(btn), i&1, True, 20, 0, 5);
155 pop = WMCreatePopUpButton(box);
156 WMAddPopUpButtonItem(pop, "ewqeq");
157 WMAddPopUpButtonItem(pop, "ewqeqrewrw");
158 WMAddBoxSubview(box, WMWidgetView(pop), False, True, 20, 0, 5);
159 WMMapWidget(pop);
161 hbox = WMCreateBox(box);
162 WMSetBoxHorizontal(hbox, True);
163 WMAddBoxSubview(box, WMWidgetView(hbox), False, True, 24, 0, 0);
164 WMMapWidget(hbox);
166 for (i = 0; i < 4; i++) {
167 btn = WMCreateCommandButton(hbox);
168 WMSetButtonText(btn, "bla");
169 WMMapWidget(btn);
170 WMAddBoxSubview(hbox, WMWidgetView(btn), 1, True, 60, 0, i<3?5:0);
174 WMRealizeWidget(win);
175 WMMapSubwidgets(win);
176 WMMapWidget(win);
182 static void
183 singleClick(WMWidget *self, void *data)
188 static void
189 doubleClick(WMWidget *self, void *data)
191 WMSelectAllListItems((WMList*)self);
195 static void
196 listSelectionObserver(void *observer, WMNotification *notification)
198 WMLabel *label = (WMLabel*)observer;
199 WMList *lPtr = (WMList*)WMGetNotificationObject(notification);
200 char buf[255];
202 sprintf(buf, "Selected items: %d",
203 WMGetArrayItemCount(WMGetListSelectedItems(lPtr)));
204 WMSetLabelText(label, buf);
208 void
209 testList(WMScreen *scr)
211 WMWindow *win;
212 WMList *list;
213 WMList *mlist;
214 WMLabel *label;
215 WMLabel *mlabel;
216 WMLabel *title;
217 WMLabel *mtitle;
218 char text[100];
219 int i;
221 windowCount++;
223 win = WMCreateWindow(scr, "testList");
224 WMResizeWidget(win, 370, 250);
225 WMSetWindowTitle(win, "List");
226 WMSetWindowCloseAction(win, closeAction, NULL);
228 title = WMCreateLabel(win);
229 WMResizeWidget(title, 150, 20);
230 WMMoveWidget(title, 10, 10);
231 WMSetLabelRelief(title, WRRidge);
232 WMSetLabelText(title, "Single selection list");
234 mtitle = WMCreateLabel(win);
235 WMResizeWidget(mtitle, 150, 20);
236 WMMoveWidget(mtitle, 210, 10);
237 WMSetLabelRelief(mtitle, WRRidge);
238 WMSetLabelText(mtitle, "Multiple selection list");
240 list = WMCreateList(win);
241 /*WMSetListAllowEmptySelection(list, True);*/
242 WMMoveWidget(list, 10, 40);
243 for (i=0; i<105; i++) {
244 sprintf(text, "Item %i", i);
245 WMAddListItem(list, text);
247 mlist = WMCreateList(win);
248 WMSetListAllowMultipleSelection(mlist, True);
249 /*WMSetListAllowEmptySelection(mlist, True);*/
250 WMMoveWidget(mlist, 210, 40);
251 for (i=0; i<135; i++) {
252 sprintf(text, "Item %i", i);
253 WMAddListItem(mlist, text);
256 label = WMCreateLabel(win);
257 WMResizeWidget(label, 150, 40);
258 WMMoveWidget(label, 10, 200);
259 WMSetLabelRelief(label, WRRidge);
260 WMSetLabelText(label, "Selected items: 0");
262 mlabel = WMCreateLabel(win);
263 WMResizeWidget(mlabel, 150, 40);
264 WMMoveWidget(mlabel, 210, 200);
265 WMSetLabelRelief(mlabel, WRRidge);
266 WMSetLabelText(mlabel, "Selected items: 0");
268 WMSetListAction(list, singleClick, label);
269 WMSetListDoubleAction(list, doubleClick, label);
270 WMSetListAction(mlist, singleClick, mlabel);
271 WMSetListDoubleAction(mlist, doubleClick, mlabel);
273 WMAddNotificationObserver(listSelectionObserver, label,
274 WMListSelectionDidChangeNotification, list);
275 WMAddNotificationObserver(listSelectionObserver, mlabel,
276 WMListSelectionDidChangeNotification, mlist);
279 WMRealizeWidget(win);
280 WMMapSubwidgets(win);
281 WMMapWidget(win);
285 void
286 testButton(WMScreen *scr)
288 WMWindow *win;
289 int i;
290 char *types[] = {
291 "MomentaryPush",
292 "PushOnPushOff",
293 "Toggle",
294 "Switch",
295 "Radio",
296 "MomentaryChange",
297 "OnOff",
298 "MomentaryLigh"
301 windowCount++;
303 win = WMCreateWindow(scr, "testButton");
304 WMResizeWidget(win, 300, 300);
305 WMSetWindowTitle(win, "Buttons");
307 WMSetWindowCloseAction(win, closeAction, NULL);
309 for (i = 1; i < 9; i++) {
310 WMButton *b;
311 b = WMCreateButton(win, i);
312 WMResizeWidget(b, 150, 24);
313 WMMoveWidget(b, 20, i*30);
314 WMSetButtonText(b, types[i-1]);
317 WMRealizeWidget(win);
318 WMMapSubwidgets(win);
319 WMMapWidget(win);
323 void
324 testGradientButtons(WMScreen *scr)
326 WMWindow *win;
327 WMButton *btn;
328 WMPixmap *pix1, *pix2;
329 RImage *back;
330 RColor light, dark;
331 WMColor *color, *altColor;
333 windowCount++;
335 /* creates the top-level window */
336 win = WMCreateWindow(scr, "testGradientButtons");
337 WMSetWindowTitle(win, "Gradiented Button Demo");
338 WMResizeWidget(win, 300, 200);
340 WMSetWindowCloseAction(win, closeAction, NULL);
343 light.red = 0x90;
344 light.green = 0x85;
345 light.blue = 0x90;
346 dark.red = 0x35;
347 dark.green = 0x30;
348 dark.blue = 0x35;
350 color = WMCreateRGBColor(scr, 0x5900, 0x5100, 0x5900, True);
351 WMSetWidgetBackgroundColor(win, color);
352 WMReleaseColor(color);
354 back = RRenderGradient(60, 24, &dark, &light, RGRD_DIAGONAL);
355 RBevelImage(back, RBEV_RAISED2);
356 pix1 = WMCreatePixmapFromRImage(scr, back, 0);
357 RReleaseImage(back);
359 back = RRenderGradient(60, 24, &dark, &light, RGRD_DIAGONAL);
360 RBevelImage(back, RBEV_SUNKEN);
361 pix2 = WMCreatePixmapFromRImage(scr, back, 0);
362 RReleaseImage(back);
364 color = WMWhiteColor(scr);
365 altColor = WMCreateNamedColor(scr, "red", True);
367 btn = WMCreateButton(win, WBTMomentaryChange);
368 WMResizeWidget(btn, 60, 24);
369 WMMoveWidget(btn, 20, 100);
370 WMSetButtonBordered(btn, False);
371 WMSetButtonImagePosition(btn, WIPOverlaps);
372 WMSetButtonImage(btn, pix1);
373 WMSetButtonAltImage(btn, pix2);
374 WMSetButtonText(btn, "Cool");
375 WMSetButtonTextColor(btn, color);
376 WMSetButtonAltTextColor(btn, altColor);
378 WMSetBalloonTextForView("This is a cool button", WMWidgetView(btn));
380 btn = WMCreateButton(win, WBTMomentaryChange);
381 WMResizeWidget(btn, 60, 24);
382 WMMoveWidget(btn, 90, 100);
383 WMSetButtonBordered(btn, False);
384 WMSetButtonImagePosition(btn, WIPOverlaps);
385 WMSetButtonImage(btn, pix1);
386 WMSetButtonAltImage(btn, pix2);
387 WMSetButtonText(btn, "Button");
388 WMSetButtonTextColor(btn, color);
390 WMSetBalloonTextForView("Este é outro balão.", WMWidgetView(btn));
392 WMReleaseColor(color);
393 color = WMCreateNamedColor(scr, "orange", True);
395 btn = WMCreateButton(win, WBTMomentaryChange);
396 WMResizeWidget(btn, 60, 24);
397 WMMoveWidget(btn, 160, 100);
398 WMSetButtonBordered(btn, False);
399 WMSetButtonImagePosition(btn, WIPOverlaps);
400 WMSetButtonImage(btn, pix1);
401 WMSetButtonAltImage(btn, pix2);
402 WMSetButtonText(btn, "Test");
403 WMSetButtonTextColor(btn, color);
405 WMSetBalloonTextForView("This is yet another button.\nBut the balloon has 3 lines.\nYay!",
406 WMWidgetView(btn));
408 WMReleaseColor(color);
409 WMReleaseColor(altColor);
411 WMRealizeWidget(win);
412 WMMapSubwidgets(win);
413 WMMapWidget(win);
417 void
418 testScrollView(WMScreen *scr)
420 WMWindow *win;
421 WMScrollView *sview;
422 WMFrame *f;
423 WMLabel *l;
424 char buffer[128];
425 int i;
427 windowCount++;
429 /* creates the top-level window */
430 win = WMCreateWindow(scr, "testScroll");
431 WMSetWindowTitle(win, "Scrollable View");
433 WMSetWindowCloseAction(win, closeAction, NULL);
435 /* set the window size */
436 WMResizeWidget(win, 300, 300);
438 /* creates a scrollable view inside the top-level window */
439 sview = WMCreateScrollView(win);
440 WMResizeWidget(sview, 200, 200);
441 WMMoveWidget(sview, 30, 30);
442 WMSetScrollViewRelief(sview, WRSunken);
443 WMSetScrollViewHasVerticalScroller(sview, True);
444 WMSetScrollViewHasHorizontalScroller(sview, True);
446 /* create a frame with a bunch of labels */
447 f = WMCreateFrame(win);
448 WMResizeWidget(f, 400, 400);
449 WMSetFrameRelief(f, WRFlat);
451 for (i=0; i<20; i++) {
452 l = WMCreateLabel(f);
453 WMResizeWidget(l, 50, 18);
454 WMMoveWidget(l, 10, 20*i);
455 sprintf(buffer, "Label %i", i);
456 WMSetLabelText(l, buffer);
457 WMSetLabelRelief(l, WRSimple);
459 WMMapSubwidgets(f);
460 WMMapWidget(f);
462 WMSetScrollViewContentView(sview, WMWidgetView(f));
464 /* make the windows of the widgets be actually created */
465 WMRealizeWidget(win);
467 /* Map all child widgets of the top-level be mapped.
468 * You must call this for each container widget (like frames),
469 * even if they are childs of the top-level window.
471 WMMapSubwidgets(win);
473 /* map the top-level window */
474 WMMapWidget(win);
478 void
479 testColorWell(WMScreen *scr)
481 WMWindow *win;
482 WMColorWell *well1, *well2;
484 windowCount++;
486 win = WMCreateWindow(scr, "testColor");
487 WMResizeWidget(win, 300, 300);
488 WMSetWindowCloseAction(win, closeAction, NULL);
490 well1 = WMCreateColorWell(win);
491 WMResizeWidget(well1, 60, 40);
492 WMMoveWidget(well1, 100, 100);
493 WMSetColorWellColor(well1, WMCreateRGBColor(scr, 0x8888, 0, 0x1111, True));
494 well2 = WMCreateColorWell(win);
495 WMResizeWidget(well2, 60, 40);
496 WMMoveWidget(well2, 200, 100);
497 WMSetColorWellColor(well2, WMCreateRGBColor(scr, 0, 0, 0x8888, True));
499 WMRealizeWidget(win);
500 WMMapSubwidgets(win);
501 WMMapWidget(win);
505 void
506 testColorPanel(WMScreen *scr)
508 WMColorPanel *panel = WMGetColorPanel(scr);
510 /*if (colorname) {
511 startcolor = WMCreateNamedColor(scr, colorname, False);
512 WMSetColorPanelColor(panel, startcolor);
513 WMReleaseColor(startcolor);
516 WMShowColorPanel(panel);
519 void
520 sliderCallback(WMWidget *w, void *data)
522 printf("SLIDER == %i\n", WMGetSliderValue(w));
526 void
527 testSlider(WMScreen *scr)
529 WMWindow *win;
530 WMSlider *s;
532 windowCount++;
534 win = WMCreateWindow(scr, "testSlider");
535 WMResizeWidget(win, 300, 300);
536 WMSetWindowTitle(win, "Sliders");
538 WMSetWindowCloseAction(win, closeAction, NULL);
540 s = WMCreateSlider(win);
541 WMResizeWidget(s, 16, 100);
542 WMMoveWidget(s, 100, 100);
543 WMSetSliderKnobThickness(s, 8);
544 WMSetSliderContinuous(s, False);
545 WMSetSliderAction(s, sliderCallback, s);
547 s = WMCreateSlider(win);
548 WMResizeWidget(s, 100, 16);
549 WMMoveWidget(s, 100, 10);
550 WMSetSliderKnobThickness(s, 8);
552 WMRealizeWidget(win);
553 WMMapSubwidgets(win);
554 WMMapWidget(win);
558 void
559 testTextField(WMScreen *scr)
561 WMWindow *win;
562 WMTextField *field, *field2;
564 windowCount++;
566 win = WMCreateWindow(scr, "testTextField");
567 WMResizeWidget(win, 400, 300);
569 WMSetWindowCloseAction(win, closeAction, NULL);
571 field = WMCreateTextField(win);
572 WMResizeWidget(field, 200, 20);
573 WMMoveWidget(field, 20, 20);
575 field2 = WMCreateTextField(win);
576 WMResizeWidget(field2, 200, 20);
577 WMMoveWidget(field2, 20, 50);
578 WMSetTextFieldAlignment(field2, WARight);
580 WMRealizeWidget(win);
581 WMMapSubwidgets(win);
582 WMMapWidget(win);
587 void
588 testText(WMScreen *scr)
590 WMWindow *win;
591 WMText *text;
592 FILE *file = fopen("wm.html", "rb");
594 windowCount++;
596 win = WMCreateWindow(scr, "testText");
597 WMResizeWidget(win, 500, 300);
599 WMSetWindowCloseAction(win, closeAction, NULL);
601 text = WMCreateText(win);
602 WMResizeWidget(text, 480, 280);
603 WMMoveWidget(text, 10, 10);
604 WMSetTextHasVerticalScroller(text, True);
605 WMSetTextEditable(text, False);
607 if(file) {
608 char buf[1024];
610 WMFreezeText(text);
611 while(fgets(buf, 1023, file))
612 WMAppendTextStream(text, buf);
614 fclose(file);
615 WMThawText(text);
616 } else {
617 WMAppendTextStream(text,
618 "Window Maker is the GNU window manager for the "
619 "X Window System. It was designed to emulate the "
620 "look and feel of part of the NEXTSTEP(tm) GUI. Its "
621 "supposed to be relatively fast and small, feature "
622 "rich, easy to configure and easy to use, with a simple "
623 "and elegant appearance borrowed from NEXTSTEP(tm).");
626 WMRealizeWidget(win);
627 WMMapSubwidgets(win);
628 WMMapWidget(win);
632 void
633 testProgressIndicator(WMScreen *scr)
635 WMWindow *win;
636 WMProgressIndicator *pPtr;
638 windowCount++;
640 win = WMCreateWindow(scr, "testProgressIndicator");
641 WMResizeWidget(win, 292, 32);
643 WMSetWindowCloseAction(win, closeAction, NULL);
645 pPtr = WMCreateProgressIndicator(win);
646 WMMoveWidget(pPtr, 8, 8);
647 WMSetProgressIndicatorValue(pPtr, 75);
649 WMRealizeWidget(win);
650 WMMapSubwidgets(win);
651 WMMapWidget(win);
656 void
657 testPullDown(WMScreen *scr)
659 WMWindow *win;
660 WMPopUpButton *pop, *pop2;
662 windowCount++;
664 win = WMCreateWindow(scr, "pullDown");
665 WMResizeWidget(win, 400, 300);
667 WMSetWindowCloseAction(win, closeAction, NULL);
669 pop = WMCreatePopUpButton(win);
670 WMResizeWidget(pop, 100, 20);
671 WMMoveWidget(pop, 50, 60);
672 WMSetPopUpButtonPullsDown(pop, True);
673 WMSetPopUpButtonText(pop, "Commands");
674 WMAddPopUpButtonItem(pop, "Add");
675 WMAddPopUpButtonItem(pop, "Remove");
676 WMAddPopUpButtonItem(pop, "Check");
677 WMAddPopUpButtonItem(pop, "Eat");
679 pop2 = WMCreatePopUpButton(win);
680 WMResizeWidget(pop2, 100, 20);
681 WMMoveWidget(pop2, 200, 60);
682 WMSetPopUpButtonText(pop2, "Select");
683 WMAddPopUpButtonItem(pop2, "Apples");
684 WMAddPopUpButtonItem(pop2, "Bananas");
685 WMAddPopUpButtonItem(pop2, "Strawberries");
686 WMAddPopUpButtonItem(pop2, "Blueberries");
688 WMRealizeWidget(win);
689 WMMapSubwidgets(win);
690 WMMapWidget(win);
695 void
696 testTabView(WMScreen *scr)
698 WMWindow *win;
699 WMTabView *tabv;
700 WMTabViewItem *tab;
701 WMFrame *frame;
702 WMLabel *label;
704 windowCount++;
706 win = WMCreateWindow(scr, "testTabs");
707 WMResizeWidget(win, 400, 300);
709 WMSetWindowCloseAction(win, closeAction, NULL);
711 tabv = WMCreateTabView(win);
712 WMMoveWidget(tabv, 50, 50);
713 WMResizeWidget(tabv, 300, 200);
715 frame = WMCreateFrame(win);
716 WMSetFrameRelief(frame, WRFlat);
717 label = WMCreateLabel(frame);
718 WMResizeWidget(label, 100, 100);
719 WMSetLabelText(label, "Label 1");
720 WMMapWidget(label);
723 tab = WMCreateTabViewItemWithIdentifier(0);
724 WMSetTabViewItemView(tab, WMWidgetView(frame));
725 WMAddItemInTabView(tabv, tab);
726 WMSetTabViewItemLabel(tab, "Instances");
728 frame = WMCreateFrame(win);
729 WMSetFrameRelief(frame, WRFlat);
730 label = WMCreateLabel(frame);
731 WMResizeWidget(label, 40, 50);
732 WMSetLabelText(label, "Label 2");
733 WMMapWidget(label);
736 tab = WMCreateTabViewItemWithIdentifier(0);
737 WMSetTabViewItemView(tab, WMWidgetView(frame));
738 WMAddItemInTabView(tabv, tab);
739 WMSetTabViewItemLabel(tab, "Classes");
742 frame = WMCreateFrame(win);
743 WMSetFrameRelief(frame, WRFlat);
744 label = WMCreateLabel(frame);
745 WMResizeWidget(label, 100, 100);
746 WMMoveWidget(label, 60, 40);
747 WMSetLabelText(label, "Label 3");
748 WMMapWidget(label);
750 tab = WMCreateTabViewItemWithIdentifier(0);
751 WMSetTabViewItemView(tab, WMWidgetView(frame));
752 WMAddItemInTabView(tabv, tab);
753 WMSetTabViewItemLabel(tab, "Something");
756 frame = WMCreateFrame(win);
757 WMSetFrameRelief(frame, WRFlat);
758 label = WMCreateLabel(frame);
759 WMResizeWidget(label, 100, 100);
760 WMMoveWidget(label, 160, 40);
761 WMSetLabelText(label, "Label 4");
762 WMMapWidget(label);
764 tab = WMCreateTabViewItemWithIdentifier(0);
765 WMSetTabViewItemView(tab, WMWidgetView(frame));
766 WMAddItemInTabView(tabv, tab);
767 WMSetTabViewItemLabel(tab, "Bla!");
771 frame = WMCreateFrame(win);
772 WMSetFrameRelief(frame, WRFlat);
773 label = WMCreateLabel(frame);
774 WMResizeWidget(label, 100, 100);
775 WMMoveWidget(label, 160, 40);
776 WMSetLabelText(label, "Label fjweqklrj qwl");
777 WMMapWidget(label);
778 tab = WMCreateTabViewItemWithIdentifier(0);
779 WMSetTabViewItemView(tab, WMWidgetView(frame));
780 WMAddItemInTabView(tabv, tab);
781 WMSetTabViewItemLabel(tab, "Weee!");
784 WMRealizeWidget(win);
785 WMMapSubwidgets(win);
786 WMMapWidget(win);
790 void
791 splitViewConstrainProc(WMSplitView *sPtr, int indView,
792 int *minSize, int *maxSize)
794 switch (indView) {
795 case 0:
796 *minSize = 20;
797 break;
798 case 1:
799 *minSize = 40;
800 *maxSize = 80;
801 break;
802 case 2:
803 *maxSize = 60;
804 break;
805 default:
806 break;
811 static void
812 resizeSplitView(XEvent *event, void *data)
814 WMSplitView *sPtr = (WMSplitView*)data;
816 if (event->type == ConfigureNotify) {
817 int width = event->xconfigure.width - 10;
819 if (width < WMGetSplitViewDividerThickness(sPtr))
820 width = WMGetSplitViewDividerThickness(sPtr);
822 if (width != WMWidgetWidth(sPtr) ||
823 event->xconfigure.height != WMWidgetHeight(sPtr))
824 WMResizeWidget(sPtr, width, event->xconfigure.height - 55);
828 void
829 appendSubviewButtonAction(WMWidget *self, void *data)
831 WMSplitView *sPtr = (WMSplitView*)data;
832 char buf[64];
833 WMLabel *label = WMCreateLabel(sPtr);
835 sprintf(buf, "Subview %d", WMGetSplitViewSubviewsCount(sPtr) + 1);
836 WMSetLabelText(label, buf);
837 WMSetLabelRelief(label, WRSunken);
838 WMAddSplitViewSubview(sPtr, WMWidgetView(label));
839 WMRealizeWidget(label);
840 WMMapWidget(label);
843 void
844 removeSubviewButtonAction(WMWidget *self, void *data)
846 WMSplitView *sPtr = (WMSplitView*)data;
847 int count = WMGetSplitViewSubviewsCount(sPtr);
849 if (count > 2) {
850 WMView *view = WMGetSplitViewSubviewAt(sPtr, count-1);
851 WMDestroyWidget(WMWidgetOfView(view));
852 WMRemoveSplitViewSubviewAt(sPtr, count-1);
856 void
857 orientationButtonAction(WMWidget *self, void *data)
859 WMSplitView *sPtr = (WMSplitView*)data;
860 WMSetSplitViewVertical(sPtr, !WMGetSplitViewVertical(sPtr));
863 void
864 adjustSubviewsButtonAction(WMWidget *self, void *data)
866 WMAdjustSplitViewSubviews((WMSplitView*)data);
869 void
870 testSplitView(WMScreen *scr)
872 WMWindow *win;
873 WMSplitView *splitv1, *splitv2;
874 WMFrame *frame;
875 WMLabel *label;
876 WMButton *button;
878 windowCount++;
880 win = WMCreateWindow(scr, "testTabs");
881 WMResizeWidget(win, 300, 400);
882 WMSetWindowCloseAction(win, closeAction, NULL);
884 frame = WMCreateFrame(win);
885 WMSetFrameRelief(frame, WRSunken);
886 WMMoveWidget(frame, 5, 5);
887 WMResizeWidget(frame, 290, 40);
889 splitv1 = WMCreateSplitView(win);
890 WMMoveWidget(splitv1, 5, 50);
891 WMResizeWidget(splitv1, 290, 345);
892 WMSetSplitViewConstrainProc(splitv1, splitViewConstrainProc);
893 WMCreateEventHandler(WMWidgetView(win), StructureNotifyMask,
894 resizeSplitView, splitv1);
896 button = WMCreateCommandButton(frame);
897 WMSetButtonText(button, "+");
898 WMSetButtonAction(button, appendSubviewButtonAction, splitv1);
899 WMMoveWidget(button, 10, 8);
900 WMMapWidget(button);
902 button = WMCreateCommandButton(frame);
903 WMSetButtonText(button, "-");
904 WMSetButtonAction(button, removeSubviewButtonAction, splitv1);
905 WMMoveWidget(button, 80, 8);
906 WMMapWidget(button);
908 button = WMCreateCommandButton(frame);
909 WMSetButtonText(button, "=");
910 WMMoveWidget(button, 150, 8);
911 WMSetButtonAction(button, adjustSubviewsButtonAction, splitv1);
912 WMMapWidget(button);
914 button = WMCreateCommandButton(frame);
915 WMSetButtonText(button, "#");
916 WMMoveWidget(button, 220, 8);
917 WMSetButtonAction(button, orientationButtonAction, splitv1);
918 WMMapWidget(button);
920 label = WMCreateLabel(splitv1);
921 WMSetLabelText(label, "Subview 1");
922 WMSetLabelRelief(label, WRSunken);
923 WMMapWidget(label);
924 WMAddSplitViewSubview(splitv1, WMWidgetView(label));
926 splitv2 = WMCreateSplitView(splitv1);
927 WMResizeWidget(splitv2, 150, 150);
928 WMSetSplitViewVertical(splitv2, True);
930 label = WMCreateLabel(splitv2);
931 WMSetLabelText(label, "Subview 2.1");
932 WMSetLabelRelief(label, WRSunken);
933 WMMapWidget(label);
934 WMAddSplitViewSubview(splitv2, WMWidgetView(label));
936 label = WMCreateLabel(splitv2);
937 WMSetLabelText(label, "Subview 2.2");
938 WMSetLabelRelief(label, WRSunken);
939 WMMapWidget(label);
940 WMAddSplitViewSubview(splitv2, WMWidgetView(label));
942 label = WMCreateLabel(splitv2);
943 WMSetLabelText(label, "Subview 2.3");
944 WMSetLabelRelief(label, WRSunken);
945 WMMapWidget(label);
946 WMAddSplitViewSubview(splitv2, WMWidgetView(label));
948 WMMapWidget(splitv2);
949 WMAddSplitViewSubview(splitv1, WMWidgetView(splitv2));
951 WMRealizeWidget(win);
952 WMMapSubwidgets(win);
953 WMMapWidget(win);
957 /*******************************************************************/
959 #include <sys/types.h>
960 #include <dirent.h>
961 #include <string.h>
964 typedef struct {
965 int x, y;
966 Bool mouseDown;
967 char *filename;
968 } DNDStuff;
970 WMPixmap*
971 getImage(WMScreen *scr, char *file)
973 char buffer[1000];
974 WMPixmap *pix;
976 sprintf(buffer, "../../WindowMaker/Icons/%s", file);
977 pix = WMCreatePixmapFromFile(scr, buffer);
979 return pix;
985 static void
986 iconMouseStuff(XEvent *event, void *cdata)
988 WMLabel *label = (WMLabel*)cdata;
989 DNDStuff *stuff = WMGetHangedData(label);
990 WMPoint where;
992 switch (event->type) {
993 case ButtonPress:
994 stuff->x = event->xbutton.x;
995 stuff->y = event->xbutton.y;
996 stuff->mouseDown = True;
997 break;
998 case ButtonRelease:
999 stuff->mouseDown = False;
1000 break;
1001 case MotionNotify:
1002 if (!stuff->mouseDown)
1003 break;
1005 if (abs(stuff->x - event->xmotion.x)>4
1006 || abs(stuff->y - event->xmotion.y)>4) {
1008 where = WMGetViewScreenPosition(WMWidgetView(label));
1010 WMDragImageFromView(WMWidgetView(label),
1011 WMGetLabelImage(label),
1012 NULL, /* XXX */
1013 where,
1014 wmksize(stuff->x, stuff->y),
1015 event, True);
1017 break;
1022 static void
1023 endedDragImage(WMView *self, WMPixmap *image, WMPoint point, Bool deposited)
1025 DNDStuff *stuff = WMGetHangedData(WMWidgetOfView(self));
1027 if (deposited) {
1028 WMDestroyWidget(WMWidgetOfView(self));
1031 stuff->mouseDown = False;
1035 static WMData*
1036 fetchDragData(WMView *self, char *type)
1038 DNDStuff *stuff = WMGetHangedData(WMWidgetOfView(self));
1040 return WMCreateDataWithBytes(stuff->filename, strlen(stuff->filename)+1);
1044 WMDragSourceProcs dragSourceProcs = {
1045 NULL,
1046 NULL,
1047 endedDragImage,
1048 fetchDragData
1052 /************************/
1055 unsigned
1056 draggingEntered(WMView *self, WMDraggingInfo *info)
1058 return WDOperationCopy;
1062 unsigned
1063 draggingUpdated(WMView *self, WMDraggingInfo *info)
1065 return WDOperationCopy;
1069 void (*draggingExited)(WMView *self, WMDraggingInfo *info);
1071 char*
1072 prepareForDragOperation(WMView *self, WMDraggingInfo *info)
1074 return "application/X-WINGs-Bla";
1078 WMLabel* makeDraggableLabel(WMWidget *w, char *file, int x, int y);
1080 Bool
1081 performDragOperation(WMView *self, WMDraggingInfo *info, WMData *data)
1083 char *file = (char*)WMDataBytes(data);
1084 WMPoint pos;
1086 pos = WMGetDraggingInfoImageLocation(info);
1088 if (file!=NULL) {
1089 WMLabel *label;
1090 WMPoint pos2 = WMGetViewScreenPosition(self);
1093 label = makeDraggableLabel(WMWidgetOfView(self), file,
1094 pos.x-pos2.x, pos.y-pos2.y);
1095 WMRealizeWidget(label);
1096 WMMapWidget(label);
1100 return True;
1104 void
1105 concludeDragOperation(WMView *self, WMDraggingInfo *info)
1112 WMDragDestinationProcs dragDestProcs = {
1113 draggingEntered,
1114 draggingUpdated,
1115 NULL,
1116 prepareForDragOperation,
1117 performDragOperation,
1118 concludeDragOperation
1124 WMLabel*
1125 makeDraggableLabel(WMWidget *w, char *file, int x, int y)
1127 DNDStuff *stuff;
1128 WMLabel *label;
1129 WMPixmap *image = getImage(WMWidgetScreen(w), file);
1131 stuff = wmalloc(sizeof(DNDStuff));
1132 stuff->mouseDown = False;
1134 stuff->filename = wstrdup(file);
1136 label = WMCreateLabel(w);
1137 WMResizeWidget(label, 48, 48);
1138 WMMoveWidget(label, x, y);
1140 WMSetViewDragSourceProcs(WMWidgetView(label), &dragSourceProcs);
1142 WMHangData(label, stuff);
1144 WMCreateEventHandler(WMWidgetView(label),
1145 ButtonPressMask|ButtonReleaseMask|ButtonMotionMask,
1146 iconMouseStuff, label);
1149 if (image != NULL) {
1150 WMSetLabelImagePosition(label, WIPImageOnly);
1151 WMSetLabelImage(label, image);
1152 WMReleasePixmap(image);
1153 } else puts(file);
1155 return label;
1160 void
1161 testDragAndDrop(WMScreen *scr)
1163 WMWindow *win;
1164 WMFrame *frame;
1165 WMLabel *label;
1166 int i, j;
1167 DIR *dir;
1168 struct dirent *ent;
1169 char *types[] = {
1170 "application/X-WINGs-Bla",
1171 NULL
1174 windowCount++;
1176 win = WMCreateWindow(scr, "dragDrop");
1177 WMResizeWidget(win, 300, 300);
1178 WMSetWindowCloseAction(win, closeAction, NULL);
1179 WMSetWindowTitle(win, "Drag and Drop");
1182 frame = WMCreateFrame(win);
1183 WMSetFrameRelief(frame, WRSunken);
1184 WMResizeWidget(frame, 250, 250);
1185 WMMoveWidget(frame, 25, 25);
1187 WMRegisterViewForDraggedTypes(WMWidgetView(frame), types);
1188 WMSetViewDragDestinationProcs(WMWidgetView(frame), &dragDestProcs);
1190 dir = opendir("../../WindowMaker/Icons");
1191 if (!dir) {
1192 perror("../../WindowMaker/Icons");
1193 return;
1196 for (i = 0, j=0; j < 8; i++) {
1197 ent = readdir(dir);
1198 if (!ent)
1199 break;
1201 if (strstr(ent->d_name, ".xpm")==NULL) {
1202 continue;
1205 label = makeDraggableLabel(frame, ent->d_name,4+(j/4)*64, 4+(j%4)*64);
1207 j++;
1210 closedir(dir);
1212 WMMapSubwidgets(frame);
1214 WMMapSubwidgets(win);
1215 WMRealizeWidget(win);
1216 WMMapWidget(win);
1223 /*******************************************************************/
1226 void
1227 testUD()
1229 WMUserDefaults *defs;
1230 char str[32];
1232 defs = WMGetStandardUserDefaults();
1234 sprintf(str, "TEST DATA");
1235 puts(str);
1236 WMSetUDStringForKey(defs, str, "testKey");
1237 puts(str);
1242 main(int argc, char **argv)
1244 WMScreen *scr;
1245 WMPixmap *pixmap;
1248 /* Initialize the application */
1249 WMInitializeApplication("Test@eqweq_ewq$eqw", &argc, argv);
1251 testUD();
1254 * Open connection to the X display.
1256 dpy = XOpenDisplay("");
1258 if (!dpy) {
1259 puts("could not open display");
1260 exit(1);
1263 /* This is used to disable buffering of X protocol requests.
1264 * Do NOT use it unless when debugging. It will cause a major
1265 * slowdown in your application
1267 #if 0
1268 XSynchronize(dpy, True);
1269 #endif
1271 * Create screen descriptor.
1273 scr = WMCreateScreen(dpy, DefaultScreen(dpy));
1276 * Loads the logo of the application.
1278 pixmap = WMCreatePixmapFromFile(scr, "logo.xpm");
1281 * Makes the logo be used in standard dialog panels.
1283 WMSetApplicationIconPixmap(scr, pixmap); WMReleasePixmap(pixmap);
1286 * Do some test stuff.
1288 * Put the testSomething() function you want to test here.
1293 testDragAndDrop(scr);
1294 testText(scr);
1296 testFontPanel(scr);
1297 testList(scr);
1299 #if 0
1300 testColorPanel(scr);
1301 testScrollView(scr);
1302 testTabView(scr);
1303 testBox(scr);
1304 testText(scr);
1305 testList(scr);
1307 testProgressIndicator(scr);
1309 testColorWell(scr);
1311 testTextField(scr);
1313 testDragAndDrop(scr);
1314 testFontPanel(scr);
1316 testButton(scr);
1318 testFrame(scr);
1320 testSplitView(scr);
1322 testGradientButtons(scr);
1324 testOpenFilePanel(scr);
1326 testSlider(scr);
1327 testPullDown(scr);
1328 #endif
1330 * The main event loop.
1333 WMScreenMainLoop(scr);
1335 return 0;