~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to workmgr.h

  • Committer: Matthew Fuller
  • Date: 2016-08-07 01:29:24 UTC
  • mto: This revision was merged to the branch mainline in revision 511.
  • Revision ID: fullermd@over-yonder.net-20160807012924-z20aildd4c0bi6gn
Break the general/utility workspace functions out into their own file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
void InitWorkSpaceManager(void);
31
31
void ConfigureWorkSpaceManager(void);
32
32
void CreateWorkSpaceManager(void);
33
 
void GotoWorkSpaceByName(VirtualScreen *vs, char *wname);
34
 
void GotoWorkSpaceByNumber(VirtualScreen *vs, int workspacenum);
35
 
void GotoPrevWorkSpace(VirtualScreen *vs);
36
 
void GotoNextWorkSpace(VirtualScreen *vs);
37
 
void GotoRightWorkSpace(VirtualScreen *vs);
38
 
void GotoLeftWorkSpace(VirtualScreen *vs);
39
 
void GotoUpWorkSpace(VirtualScreen *vs);
40
 
void GotoDownWorkSpace(VirtualScreen *vs);
41
 
void GotoWorkSpace(VirtualScreen *vs, WorkSpace *ws);
42
33
void WMgrHandleExposeEvent(VirtualScreen *vs, XEvent *event);
43
34
void PaintWorkSpaceManager(VirtualScreen *vs);
44
35
void WMapToggleState(VirtualScreen *vs);
62
53
void WMapRedrawName(VirtualScreen *vs, WinList   wl);
63
54
void WMapAddToList(TwmWindow *win, WorkSpace *ws);
64
55
void WMapRemoveFromList(TwmWindow *win, WorkSpace *ws);
65
 
char *GetCurrentWorkSpaceName(VirtualScreen *vs);
66
 
WorkSpace *GetWorkspace(char *wname);
67
 
 
68
 
void ShowBackground(VirtualScreen *vs, int state);
69
 
 
70
 
void ws_set_useBackgroundInfo(bool newval);
71
56
 
72
57
#endif /* _CTWM_WORKMGR_H */