Is it possible to change windows positions using the SaWMan API
(SaWManManager) ?
I have a small unit test that moves windows from left to right and
right to left at the bottom of the screen. Using the SaWMan API
windows are partially redrawn. Using the DirectFB API, no problem.

Are these few lines of code equivalent :

SaWManWindowConfig wconfig;

wconfig.bounds.x = x;
wconfig.bounds.y = y;
manager->SetWindowConfig (manager,
                                           sawman_window_handle,
                                           SWMCF_POSITION,
                                            &wconfig);


<=>

window->MoveTo (>window, x, y);

Regards,

--
Lionel
_______________________________________________
directfb-dev mailing list
directfb-dev@directfb.org
http://mail.directfb.org/cgi-bin/mailman/listinfo/directfb-dev

Reply via email to