2 * WINGs test application
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
30 closeAction(WMWidget
*self
, void *data
)
32 WMDestroyWidget(self
);
40 testOpenFilePanel(WMScreen
*scr
)
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
));
57 testFontPanel(WMScreen
*scr
)
63 panel
= WMGetFontPanel(scr
);
65 WMShowFontPanel(panel
);
67 /* WMFreeFontPanel(panel);*/
73 testList(WMScreen
*scr
)
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
);
100 testGradientButtons(WMScreen
*scr
)
104 WMPixmap
*pix1
, *pix2
;
111 /* creates the top-level window */
112 win
= WMCreateWindow(scr
, "testGradientButtons");
113 WMSetWindowTitle(win
, "Gradiented Button Demo");
114 WMResizeWidget(win
, 300, 200);
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);
132 back
= RRenderGradient(60, 24, &dark
, &light
, RGRD_DIAGONAL
);
133 RBevelImage(back
, RBEV_SUNKEN
);
134 pix2
= WMCreatePixmapFromRImage(scr
, back
, 0);
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!",
171 WMRealizeWidget(win
);
172 WMMapSubwidgets(win
);
178 testScrollView(WMScreen
*scr
)
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
);
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 */
239 testColorWell(WMScreen
*scr
)
242 WMColorWell
*well1
, *well2
;
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
);
266 sliderCallback(WMWidget
*w
, void *data
)
268 printf("SLIEDER == %i\n", WMGetSliderValue(w
));
273 testSlider(WMScreen
*scr
)
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
);
305 testTextField(WMScreen
*scr
)
308 WMTextField
*field
, *field2
;
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
);
334 testProgressIndicator(WMScreen
*scr
)
337 WMProgressIndicator
*pPtr
;
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
);
358 testPullDown(WMScreen
*scr
)
361 WMPopUpButton
*pop
, *pop2
;
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
);
398 testTabView(WMScreen
*scr
)
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");
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");
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");
452 tab
= WMCreateTabViewItemWithIdentifier(0);
453 WMSetTabViewItemView(tab
, WMWidgetView(frame
));
454 WMAddItemInTabView(tabv
, tab
);
455 WMSetTabViewItemLabel(tab
, "Something");
458 WMRealizeWidget(win
);
459 WMMapSubwidgets(win
);
468 int main(int argc
, char **argv
)
474 /* Initialize the application */
475 WMInitializeApplication("Test", &argc
, argv
);
478 * Open connection to the X display.
480 dpy
= XOpenDisplay("");
483 puts("could not open display");
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
492 XSynchronize(dpy
, True
);
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.
521 testProgressIndicator(scr
);
522 testGradientButtons(scr
);
528 testOpenFilePanel(scr
);
530 testGradientButtons(scr
);
537 * The main event loop.
540 WMScreenMainLoop(scr
);