| /xsrc/external/mit/ctwm/dist/ |
| H A D | workspace_utils.h | 7 void GotoWorkSpace(VirtualScreen *vs, WorkSpace *ws); 8 void GotoWorkSpaceByName(VirtualScreen *vs, const char *wname); 9 void GotoWorkSpaceByNumber(VirtualScreen *vs, int workspacenum); 10 void GotoPrevWorkSpace(VirtualScreen *vs); 11 void GotoNextWorkSpace(VirtualScreen *vs); 12 void GotoRightWorkSpace(VirtualScreen *vs); 13 void GotoLeftWorkSpace(VirtualScreen *vs); 14 void GotoUpWorkSpace(VirtualScreen *vs); 15 void GotoDownWorkSpace(VirtualScreen *vs); 17 void ShowBackground(VirtualScreen *v [all...] |
| H A D | vscreen.h | 7 struct VirtualScreen { struct 12 struct VirtualScreen *next; 17 VirtualScreen *findIfVScreenOf(int x, int y); 21 struct VirtualScreen *firstvs); 23 void DisplayWin(VirtualScreen *vs, TwmWindow *tmp_win); 25 void Vanish(VirtualScreen *vs, TwmWindow *tmp_win);
|
| H A D | workspace_manager.h | 12 void PaintWorkSpaceManager(VirtualScreen *vs); 13 void WMgrHandleExposeEvent(VirtualScreen *vs, XEvent *event); 15 void WMgrToggleState(VirtualScreen *vs); 16 void WMgrSetMapState(VirtualScreen *vs); 17 void WMgrSetButtonsState(VirtualScreen *vs); 20 void WMgrHandleKeyReleaseEvent(VirtualScreen *vs, XEvent *event); 21 void WMgrHandleKeyPressEvent(VirtualScreen *vs, XEvent *event); 22 void WMgrHandleButtonEvent(VirtualScreen *vs, XEvent *event); 36 void WMapRedrawName(VirtualScreen *vs, WinList *wl);
|
| H A D | occupation.h | 34 void MoveToNextWorkSpace(VirtualScreen *vs, TwmWindow *twm_win); 35 void MoveToPrevWorkSpace(VirtualScreen *vs, TwmWindow *twm_win); 36 void MoveToNextWorkSpaceAndFollow(VirtualScreen *vs, TwmWindow *twm_win); 37 void MoveToPrevWorkSpaceAndFollow(VirtualScreen *vs, TwmWindow *twm_win); 39 void WMgrRemoveFromCurrentWorkSpace(VirtualScreen *vs, TwmWindow *win); 40 void WMgrAddToCurrentWorkSpaceAndWarp(VirtualScreen *vs, char *winname);
|
| H A D | add_window.h | 32 VirtualScreen *vs);
|
| H A D | drawing.h | 21 void PaintWsButton(PWBType which, VirtualScreen *vs, Window w,
|
| H A D | vscreen.c | 23 static void DisplayWinUnchecked(VirtualScreen *vs, TwmWindow *tmp_win); 28 VirtualScreen *vs = malloc(sizeof(VirtualScreen)); 59 VirtualScreen *vs00 = NULL; 81 VirtualScreen *vs; 92 vs = malloc(sizeof(VirtualScreen)); 146 VirtualScreen *findIfVScreenOf(int x, int y) 148 VirtualScreen *vs; 197 struct VirtualScreen *firstvs) 201 struct VirtualScreen *v [all...] |
| H A D | twm_window_struct.h | 261 struct VirtualScreen *vs; 263 struct VirtualScreen *parent_vs; 267 struct VirtualScreen *savevs;
|
| H A D | types.h | 51 typedef struct VirtualScreen VirtualScreen; typedef in typeref:struct:VirtualScreen
|
| H A D | workspace_utils.c | 44 GotoWorkSpace(VirtualScreen *vs, WorkSpace *ws) 56 VirtualScreen *tmpvs; 132 VirtualScreen *tvs; 320 GotoWorkSpaceByName(VirtualScreen *vs, const char *wname) 335 GotoWorkSpaceByNumber(VirtualScreen *vs, int workspacenum) 354 GotoPrevWorkSpace(VirtualScreen *vs) 375 GotoNextWorkSpace(VirtualScreen *vs) 388 GotoRightWorkSpace(VirtualScreen *vs) 412 GotoLeftWorkSpace(VirtualScreen *vs) 432 GotoUpWorkSpace(VirtualScreen *v [all...] |
| H A D | otp.h | 43 void OtpCirculateSubwindows(VirtualScreen *vs, int direction); 44 void OtpHandleCirculateNotify(VirtualScreen *vs, TwmWindow *twm_win,
|
| H A D | workspace_structs.h | 89 VirtualScreen *vs;
|
| H A D | workspace_manager.c | 42 static void CreateWorkSpaceManagerWindow(VirtualScreen *vs); 43 static void ResizeWorkSpaceManager(VirtualScreen *vs, TwmWindow *win); 44 static void PaintWorkSpaceManagerBorder(VirtualScreen *vs); 112 for(VirtualScreen *vs = scr->vScreenList; vs != NULL; vs = vs->next) { 179 for(VirtualScreen *vs = Scr->vScreenList; vs != NULL; vs = vs->next) { 196 for(VirtualScreen *vs = Scr->vScreenList; vs != NULL; vs = vs->next) { 254 CreateWorkSpaceManagerWindow(VirtualScreen *vs) 589 ResizeWorkSpaceManager(VirtualScreen *vs, TwmWindow *win) 678 PaintWorkSpaceManager(VirtualScreen *vs) 700 PaintWorkSpaceManagerBorder(VirtualScreen *v [all...] |
| H A D | occupation.c | 210 VirtualScreen *vs; 356 MoveToNextWorkSpace(VirtualScreen *vs, TwmWindow *twm_win) 378 MoveToNextWorkSpaceAndFollow(VirtualScreen *vs, TwmWindow *twm_win) 394 MoveToPrevWorkSpace(VirtualScreen *vs, TwmWindow *twm_win) 422 MoveToPrevWorkSpaceAndFollow(VirtualScreen *vs, TwmWindow *twm_win) 466 WMgrRemoveFromCurrentWorkSpace(VirtualScreen *vs, TwmWindow *win) 491 WMgrAddToCurrentWorkSpaceAndWarp(VirtualScreen *vs, char *winname) 1219 VirtualScreen *vs; 1484 VirtualScreen *vs = Scr->currentvs;
|
| H A D | screen.h | 513 VirtualScreen *vScreenList; ///< Linked list of per-VS info 514 VirtualScreen *currentvs; ///< Currently active VS
|
| H A D | otp.c | 82 static bool OtpCheckConsistencyVS(VirtualScreen *currentvs, Window vroot); 191 VirtualScreen *tvs; 205 static bool OtpCheckConsistencyVS(VirtualScreen *currentvs, Window vroot) 376 * VirtualScreen. 378 static OtpWinList *GetOwlAtOrBelowInVS(OtpWinList *owl, VirtualScreen *vs) 475 DPRINTF((stderr, "Bottom-most window in VirtualScreen or window box\n")); 849 void OtpCirculateSubwindows(VirtualScreen *vs, int direction) 877 void OtpHandleCirculateNotify(VirtualScreen *vs, TwmWindow *twm_win,
|
| H A D | animate.c | 317 VirtualScreen *vs;
|
| H A D | drawing.c | 153 PaintWsButton(PWBType which, VirtualScreen *vs, Window w,
|
| H A D | mask_screen.c | 247 VirtualScreen *vs;
|
| H A D | util.c | 476 VirtualScreen *vs = twm_win->vs;
|
| H A D | ewmh.c | 482 VirtualScreen *vs; 1473 VirtualScreen *vs = twm_win->vs; 1653 VirtualScreen *vs;
|
| H A D | event_handlers.c | 441 VirtualScreen *vs; 1594 VirtualScreen *vs; 1931 VirtualScreen *vs = Scr->currentvs; 2343 VirtualScreen *newvs; 3079 VirtualScreen *vs;
|
| H A D | add_window.c | 113 AddWindow(Window w, AWType wtype, IconMgr *iconp, VirtualScreen *vs) 2115 VirtualScreen *myvs, *vs;
|
| H A D | ctwm_main.c | 949 VirtualScreen *vs;
|