added nana stuff
[wmaker-crm.git] / WINGs / wtest.c
blobcdd183b14a219d1f777ed63c6e0434b7c42f8471
1 /*
2 * WINGs test application
3 */
5 #include "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 if (windowCount < 1)
35 exit(0);
39 void
40 testOpenFilePanel(WMScreen *scr)
42 WMOpenPanel *panel;
44 windowCount++;
46 /* get the shared Open File panel */
47 panel = WMGetOpenPanel(scr);
49 WMRunModalFilePanelForDirectory(panel, NULL, "/usr/local", NULL, NULL);
51 /* free the panel to save some memory. Not needed otherwise. */
52 WMFreeFilePanel(WMGetOpenPanel(scr));
56 void
57 testFontPanel(WMScreen *scr)
59 WMFontPanel *panel;
61 windowCount++;
63 panel = WMGetFontPanel(scr);
65 WMShowFontPanel(panel);
67 /* WMFreeFontPanel(panel);*/
72 void
73 testList(WMScreen *scr)
75 WMWindow *win;
76 WMList *list;
77 char text[100];
78 int i;
80 windowCount++;
82 win = WMCreateWindow(scr, "testList");
83 WMSetWindowTitle(win, "List");
84 WMSetWindowCloseAction(win, closeAction, NULL);
86 list = WMCreateList(win);
87 for (i=0; i<50; i++) {
88 sprintf(text, "Item %i", i);
89 WMAddListItem(list, text);
91 WMRealizeWidget(win);
92 WMMapSubwidgets(win);
93 WMMapWidget(win);
99 void
100 testGradientButtons(WMScreen *scr)
102 WMWindow *win;
103 WMButton *btn;
104 WMPixmap *pix1, *pix2;
105 RImage *back;
106 RColor light, dark;
107 WMColor *color;
109 windowCount++;
111 /* creates the top-level window */
112 win = WMCreateWindow(scr, "testGradientButtons");
113 WMSetWindowTitle(win, "Gradiented Button Demo");
114 WMResizeWidget(win, 300, 200);
116 light.red = 0x90;
117 light.green = 0x85;
118 light.blue = 0x90;
119 dark.red = 0x35;
120 dark.green = 0x30;
121 dark.blue = 0x35;
123 color = WMCreateRGBColor(scr, 0x5900, 0x5100, 0x5900, True);
124 WMSetWidgetBackgroundColor(win, color);
125 WMReleaseColor(color);
127 back = RRenderGradient(60, 24, &dark, &light, RGRD_DIAGONAL);
128 RBevelImage(back, RBEV_RAISED2);
129 pix1 = WMCreatePixmapFromRImage(scr, back, 0);
130 RDestroyImage(back);
132 back = RRenderGradient(60, 24, &dark, &light, RGRD_DIAGONAL);
133 RBevelImage(back, RBEV_SUNKEN);
134 pix2 = WMCreatePixmapFromRImage(scr, back, 0);
135 RDestroyImage(back);
137 btn = WMCreateButton(win, WBTMomentaryChange);
138 WMResizeWidget(btn, 60, 24);
139 WMMoveWidget(btn, 20, 100);
140 WMSetButtonBordered(btn, False);
141 WMSetButtonImagePosition(btn, WIPOverlaps);
142 WMSetButtonImage(btn, pix1);
143 WMSetButtonAltImage(btn, pix2);
144 WMSetButtonText(btn, "Cool");
146 WMSetBalloonTextForView("This is a button", WMWidgetView(btn));
148 btn = WMCreateButton(win, WBTMomentaryChange);
149 WMResizeWidget(btn, 60, 24);
150 WMMoveWidget(btn, 90, 100);
151 WMSetButtonBordered(btn, False);
152 WMSetButtonImagePosition(btn, WIPOverlaps);
153 WMSetButtonImage(btn, pix1);
154 WMSetButtonAltImage(btn, pix2);
155 WMSetButtonText(btn, "Button");
157 WMSetBalloonTextForView("Este é outro balão.", WMWidgetView(btn));
159 btn = WMCreateButton(win, WBTMomentaryChange);
160 WMResizeWidget(btn, 60, 24);
161 WMMoveWidget(btn, 160, 100);
162 WMSetButtonBordered(btn, False);
163 WMSetButtonImagePosition(btn, WIPOverlaps);
164 WMSetButtonImage(btn, pix1);
165 WMSetButtonAltImage(btn, pix2);
166 WMSetButtonText(btn, "Test");
168 WMSetBalloonTextForView("This is yet another button.\nBut the balloon has 3 lines.\nYay!",
169 WMWidgetView(btn));
171 WMRealizeWidget(win);
172 WMMapSubwidgets(win);
173 WMMapWidget(win);
177 void
178 testScrollView(WMScreen *scr)
180 WMWindow *win;
181 WMScrollView *sview;
182 WMFrame *f;
183 WMLabel *l;
184 char buffer[128];
185 int i;
187 windowCount++;
189 /* creates the top-level window */
190 win = WMCreateWindow(scr, "testScroll");
191 WMSetWindowTitle(win, "Scrollable View");
193 WMSetWindowCloseAction(win, closeAction, NULL);
195 /* set the window size */
196 WMResizeWidget(win, 300, 300);
198 /* creates a scrollable view inside the top-level window */
199 sview = WMCreateScrollView(win);
200 WMResizeWidget(sview, 200, 200);
201 WMMoveWidget(sview, 30, 30);
202 WMSetScrollViewRelief(sview, WRSunken);
203 WMSetScrollViewHasVerticalScroller(sview, True);
204 WMSetScrollViewHasHorizontalScroller(sview, True);
206 /* create a frame with a bunch of labels */
207 f = WMCreateFrame(win);
208 WMResizeWidget(f, 400, 400);
209 WMSetFrameRelief(f, WRFlat);
211 for (i=0; i<20; i++) {
212 l = WMCreateLabel(f);
213 WMResizeWidget(l, 50, 18);
214 WMMoveWidget(l, 10, 20*i);
215 sprintf(buffer, "Label %i", i);
216 WMSetLabelText(l, buffer);
217 WMSetLabelRelief(l, WRSimple);
219 WMMapSubwidgets(f);
220 WMMapWidget(f);
222 WMSetScrollViewContentView(sview, WMWidgetView(f));
224 /* make the windows of the widgets be actually created */
225 WMRealizeWidget(win);
227 /* Map all child widgets of the top-level be mapped.
228 * You must call this for each container widget (like frames),
229 * even if they are childs of the top-level window.
231 WMMapSubwidgets(win);
233 /* map the top-level window */
234 WMMapWidget(win);
238 void
239 testColorWell(WMScreen *scr)
241 WMWindow *win;
242 WMColorWell *well1, *well2;
244 windowCount++;
246 win = WMCreateWindow(scr, "testColor");
247 WMResizeWidget(win, 300, 300);
249 WMSetWindowCloseAction(win, closeAction, NULL);
251 well1 = WMCreateColorWell(win);
252 WMResizeWidget(well1, 60, 40);
253 WMMoveWidget(well1, 100, 100);
254 WMSetColorWellColor(well1, WMCreateRGBColor(scr, 0x8888, 0, 0x1111, True));
255 well2 = WMCreateColorWell(win);
256 WMResizeWidget(well2, 60, 40);
257 WMMoveWidget(well2, 200, 100);
258 WMSetColorWellColor(well2, WMCreateRGBColor(scr, 0, 0, 0x8888, True));
260 WMRealizeWidget(win);
261 WMMapSubwidgets(win);
262 WMMapWidget(win);
265 void
266 sliderCallback(WMWidget *w, void *data)
268 printf("SLIEDER == %i\n", WMGetSliderValue(w));
272 void
273 testSlider(WMScreen *scr)
275 WMWindow *win;
276 WMSlider *s;
278 windowCount++;
280 win = WMCreateWindow(scr, "testSlider");
281 WMResizeWidget(win, 300, 300);
282 WMSetWindowTitle(win, "Sliders");
284 WMSetWindowCloseAction(win, closeAction, NULL);
286 s = WMCreateSlider(win);
287 WMResizeWidget(s, 16, 100);
288 WMMoveWidget(s, 100, 100);
289 WMSetSliderKnobThickness(s, 8);
290 WMSetSliderContinuous(s, False);
291 WMSetSliderAction(s, sliderCallback, s);
293 s = WMCreateSlider(win);
294 WMResizeWidget(s, 100, 16);
295 WMMoveWidget(s, 100, 10);
296 WMSetSliderKnobThickness(s, 8);
298 WMRealizeWidget(win);
299 WMMapSubwidgets(win);
300 WMMapWidget(win);
304 void
305 testTextField(WMScreen *scr)
307 WMWindow *win;
308 WMTextField *field, *field2;
310 windowCount++;
312 win = WMCreateWindow(scr, "testText");
313 WMResizeWidget(win, 400, 300);
315 WMSetWindowCloseAction(win, closeAction, NULL);
317 field = WMCreateTextField(win);
318 WMResizeWidget(field, 200, 20);
319 WMMoveWidget(field, 20, 20);
321 field2 = WMCreateTextField(win);
322 WMResizeWidget(field2, 200, 20);
323 WMMoveWidget(field2, 20, 50);
324 WMSetTextFieldAlignment(field2, WARight);
326 WMRealizeWidget(win);
327 WMMapSubwidgets(win);
328 WMMapWidget(win);
333 void
334 testProgressIndicator(WMScreen *scr)
336 WMWindow *win;
337 WMProgressIndicator *pPtr;
339 windowCount++;
341 win = WMCreateWindow(scr, "testProgressIndicator");
342 WMResizeWidget(win, 292, 32);
344 WMSetWindowCloseAction(win, closeAction, NULL);
346 pPtr = WMCreateProgressIndicator(win);
347 WMMoveWidget(pPtr, 8, 8);
348 WMSetProgressIndicatorValue(pPtr, 75);
350 WMRealizeWidget(win);
351 WMMapSubwidgets(win);
352 WMMapWidget(win);
357 void
358 testPullDown(WMScreen *scr)
360 WMWindow *win;
361 WMPopUpButton *pop, *pop2;
363 windowCount++;
365 win = WMCreateWindow(scr, "pullDown");
366 WMResizeWidget(win, 400, 300);
368 WMSetWindowCloseAction(win, closeAction, NULL);
370 pop = WMCreatePopUpButton(win);
371 WMResizeWidget(pop, 100, 20);
372 WMMoveWidget(pop, 50, 60);
373 WMSetPopUpButtonPullsDown(pop, True);
374 WMSetPopUpButtonText(pop, "Commands");
375 WMAddPopUpButtonItem(pop, "Add");
376 WMAddPopUpButtonItem(pop, "Remove");
377 WMAddPopUpButtonItem(pop, "Check");
378 WMAddPopUpButtonItem(pop, "Eat");
380 pop2 = WMCreatePopUpButton(win);
381 WMResizeWidget(pop2, 100, 20);
382 WMMoveWidget(pop2, 200, 60);
383 WMSetPopUpButtonText(pop2, "Select");
384 WMAddPopUpButtonItem(pop2, "Apples");
385 WMAddPopUpButtonItem(pop2, "Bananas");
386 WMAddPopUpButtonItem(pop2, "Strawberries");
387 WMAddPopUpButtonItem(pop2, "Blueberries");
389 WMRealizeWidget(win);
390 WMMapSubwidgets(win);
391 WMMapWidget(win);
397 void
398 testTabView(WMScreen *scr)
400 WMWindow *win;
401 WMTabView *tabv;
402 WMTabViewItem *tab;
403 WMFrame *frame;
404 WMLabel *label;
406 windowCount++;
408 win = WMCreateWindow(scr, "testTabs");
409 WMResizeWidget(win, 400, 300);
411 WMSetWindowCloseAction(win, closeAction, NULL);
413 tabv = WMCreateTabView(win);
414 WMMoveWidget(tabv, 50, 50);
415 WMResizeWidget(tabv, 300, 200);
417 frame = WMCreateFrame(win);
418 WMSetFrameRelief(frame, WRFlat);
419 label = WMCreateLabel(frame);
420 WMResizeWidget(label, 100, 100);
421 WMSetLabelText(label, "Label 1");
422 WMMapWidget(label);
425 tab = WMCreateTabViewItemWithIdentifier(0);
426 WMSetTabViewItemView(tab, WMWidgetView(frame));
427 WMAddItemInTabView(tabv, tab);
428 WMSetTabViewItemLabel(tab, "Instances");
430 frame = WMCreateFrame(win);
431 WMSetFrameRelief(frame, WRFlat);
432 label = WMCreateLabel(frame);
433 WMResizeWidget(label, 40, 50);
434 WMSetLabelText(label, "Label 2");
435 WMMapWidget(label);
438 tab = WMCreateTabViewItemWithIdentifier(0);
439 WMSetTabViewItemView(tab, WMWidgetView(frame));
440 WMAddItemInTabView(tabv, tab);
441 WMSetTabViewItemLabel(tab, "Classes");
444 frame = WMCreateFrame(win);
445 WMSetFrameRelief(frame, WRFlat);
446 label = WMCreateLabel(frame);
447 WMResizeWidget(label, 100, 100);
448 WMMoveWidget(label, 60, 40);
449 WMSetLabelText(label, "Label 3");
450 WMMapWidget(label);
452 tab = WMCreateTabViewItemWithIdentifier(0);
453 WMSetTabViewItemView(tab, WMWidgetView(frame));
454 WMAddItemInTabView(tabv, tab);
455 WMSetTabViewItemLabel(tab, "Something");
458 WMRealizeWidget(win);
459 WMMapSubwidgets(win);
460 WMMapWidget(win);
464 #include "WUtil.h"
468 int main(int argc, char **argv)
470 WMScreen *scr;
471 WMPixmap *pixmap;
474 /* Initialize the application */
475 WMInitializeApplication("Test", &argc, argv);
478 * Open connection to the X display.
480 dpy = XOpenDisplay("");
482 if (!dpy) {
483 puts("could not open display");
484 exit(1);
487 /* This is used to disable buffering of X protocol requests.
488 * Do NOT use it unless when debugging. It will cause a major
489 * slowdown in your application
491 #ifdef DEBUG
492 XSynchronize(dpy, True);
493 #endif
495 * Create screen descriptor.
497 scr = WMCreateScreen(dpy, DefaultScreen(dpy));
500 * Loads the logo of the application.
502 pixmap = WMCreatePixmapFromFile(scr, "logo.xpm");
505 * Makes the logo be used in standard dialog panels.
507 WMSetApplicationIconImage(scr, pixmap); WMReleasePixmap(pixmap);
510 * Do some test stuff.
512 * Put the testSomething() function you want to test here.
516 testPullDown(scr);
518 testFontPanel(scr);
519 #if 0
521 testProgressIndicator(scr);
522 testGradientButtons(scr);
523 testColorWell(scr);
525 testTabView(scr);
526 testTextField(scr);
528 testOpenFilePanel(scr);
529 testList(scr);
530 testGradientButtons(scr);
531 testScrollView(scr);
534 testSlider(scr);
535 #endif
537 * The main event loop.
540 WMScreenMainLoop(scr);
542 return 0;