1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/*
* Functions related to window occupation and workspaces. Not the
* workspace manager itself; that's off with the icon managers.
*/
#include "ctwm.h"
#include "functions_internal.h"
#include "screen.h"
#include "occupation.h"
#include "workspace_utils.h"
/*
* Setting occupation on a specific window.
*/
DFHANDLER(occupy)
{
Occupy(tmp_win);
}
DFHANDLER(occupyall)
{
OccupyAll(tmp_win);
}
/*
* Selecting a window and passing a specific workspace as the function
* arg.
*/
DFHANDLER(addtoworkspace)
{
AddToWorkSpace(action, tmp_win);
}
DFHANDLER(removefromworkspace)
{
RemoveFromWorkSpace(action, tmp_win);
}
DFHANDLER(toggleoccupation)
{
ToggleOccupation(action, tmp_win);
}
/*
* Pushing a window away from / pulling it to "here".
*/
DFHANDLER(vanish)
{
WMgrRemoveFromCurrentWorkSpace(Scr->currentvs, tmp_win);
}
DFHANDLER(warphere)
{
WMgrAddToCurrentWorkSpaceAndWarp(Scr->currentvs, action);
}
/*
* Pushing a window away somewhere and potentially following it.
*/
DFHANDLER(movetonextworkspace)
{
MoveToNextWorkSpace(Scr->currentvs, tmp_win);
}
DFHANDLER(movetoprevworkspace)
{
MoveToPrevWorkSpace(Scr->currentvs, tmp_win);
}
DFHANDLER(movetonextworkspaceandfollow)
{
MoveToNextWorkSpaceAndFollow(Scr->currentvs, tmp_win);
}
DFHANDLER(movetoprevworkspaceandfollow)
{
MoveToPrevWorkSpaceAndFollow(Scr->currentvs, tmp_win);
}
/*
* Switching to other workspaces.
*/
DFHANDLER(gotoworkspace)
{
/*
* n.b.: referenced in the Developer Manual in doc/devman/; if you
* make any changes here be sure to tweak that if necessary.
*/
GotoWorkSpaceByName(Scr->currentvs, action);
}
DFHANDLER(prevworkspace)
{
GotoPrevWorkSpace(Scr->currentvs);
}
DFHANDLER(nextworkspace)
{
GotoNextWorkSpace(Scr->currentvs);
}
DFHANDLER(rightworkspace)
{
GotoRightWorkSpace(Scr->currentvs);
}
DFHANDLER(leftworkspace)
{
GotoLeftWorkSpace(Scr->currentvs);
}
DFHANDLER(upworkspace)
{
GotoUpWorkSpace(Scr->currentvs);
}
DFHANDLER(downworkspace)
{
GotoDownWorkSpace(Scr->currentvs);
}
|