home *** CD-ROM | disk | FTP | other *** search
- #include "cwldemo.h"
-
- int WinMove(POPUP_MENU_PTR p, int sel)
- {
- int i,j,k;
- WPOINTER cw;
- cw = WindowInitialize(DESKTOP_WINDOW,
- BORDER,0,0,40,2,
- BLACKONCYAN,BLACKONCYAN,SINGLEBOX);
- WindowWriteCenterString(cw,"You can move windows to any location...",0);
- WindowCenter(cw,VERTCENTER | HORIZCENTER);
- WindowDisplay(cw,1,NOEFFECT);
- for (i =0; i < 10; i++)
- {
- j = rand() % (CWLscreen_rows - 1);
- k = rand() % (CWLscreen_cols - 1);
- delay_approx(1000);
- WindowMove(cw,j,k);
- }
- WindowClose(cw,NOEFFECT);
- return POPUP_CONTINUE;
- }