mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
add virtual desktop patch from andrey
This commit is contained in:
parent
df49b30343
commit
3ddda82110
7 changed files with 125 additions and 10 deletions
|
@ -166,6 +166,7 @@ getclient(Window w, int create)
|
|||
c->cmapwins = 0;
|
||||
c->wmcmaps = 0;
|
||||
c->next = clients;
|
||||
c->virt = virt;
|
||||
clients = c;
|
||||
return c;
|
||||
}
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
#define INSET _inset
|
||||
#define MAXHIDDEN 128
|
||||
#define B3FIXED 5
|
||||
#define NUMVIRTUALS 12
|
||||
|
||||
#define AllButtonMask (Button1Mask|Button2Mask|Button3Mask \
|
||||
|Button4Mask|Button5Mask)
|
||||
|
@ -46,6 +47,7 @@ struct Client {
|
|||
int is9term;
|
||||
int hold;
|
||||
int proto;
|
||||
int virt;
|
||||
|
||||
char *label;
|
||||
char *instance;
|
||||
|
@ -146,6 +148,7 @@ extern int _inset;
|
|||
extern int curtime;
|
||||
extern int debug;
|
||||
extern int solidsweep;
|
||||
extern int numvirtuals;
|
||||
|
||||
extern Atom exit_rio;
|
||||
extern Atom restart_rio;
|
||||
|
@ -161,12 +164,16 @@ extern Atom wm_colormaps;
|
|||
/* client.c */
|
||||
extern Client *clients;
|
||||
extern Client *current;
|
||||
extern Client *currents[];
|
||||
|
||||
/* menu.c */
|
||||
extern Client *hiddenc[];
|
||||
extern int numhidden;
|
||||
extern char *b2items[];
|
||||
extern Menu b2menu;
|
||||
extern char *b3items[];
|
||||
extern Menu b3menu;
|
||||
extern int virt;
|
||||
|
||||
/* manage.c */
|
||||
extern int isNew;
|
||||
|
|
|
@ -514,7 +514,7 @@ borderorient(Client *c, int x, int y)
|
|||
return BorderWSW;
|
||||
}
|
||||
if (y > CORNER &&
|
||||
y < (c->dy + 2*BORDER) - CORNER) {
|
||||
y < (c->dy + 2*BORDER) - CORNER) {
|
||||
if (debug) fprintf(stderr, "left\n");
|
||||
return BorderW;
|
||||
}
|
||||
|
@ -551,7 +551,7 @@ borderorient(Client *c, int x, int y)
|
|||
return BorderSSE;
|
||||
}
|
||||
} else if (x > CORNER &&
|
||||
x < (c->dx + 2*BORDER) - CORNER) {
|
||||
x < (c->dx + 2*BORDER) - CORNER) {
|
||||
if (y <= BORDER) {
|
||||
if (debug) fprintf(stderr, "top\n");
|
||||
return BorderN;
|
||||
|
|
|
@ -71,6 +71,12 @@ void hide();
|
|||
void unhide();
|
||||
void unhidec();
|
||||
void renamec();
|
||||
void button2();
|
||||
void initb2menu();
|
||||
void switch_to();
|
||||
void switch_to_c();
|
||||
|
||||
|
||||
|
||||
/* client.c */
|
||||
void setactive();
|
||||
|
|
|
@ -366,8 +366,8 @@ pullcalc(Client *c, int x, int y, BorderOrient bl, int init)
|
|||
break;
|
||||
}
|
||||
if (!init
|
||||
|| xoff < 0 || (xcorn && xoff > CORNER) || (!xcorn && xoff > BORDER)
|
||||
|| yoff < 0 || (ycorn && yoff > CORNER) || (!ycorn && yoff > BORDER)) {
|
||||
|| xoff < 0 || (xcorn && xoff > CORNER) || (!xcorn && xoff > BORDER)
|
||||
|| yoff < 0 || (ycorn && yoff > CORNER) || (!ycorn && yoff > BORDER)) {
|
||||
xoff = 0;
|
||||
yoff = 0;
|
||||
init = 0;
|
||||
|
@ -385,8 +385,8 @@ pullcalc(Client *c, int x, int y, BorderOrient bl, int init)
|
|||
}
|
||||
|
||||
/* remember requested size;
|
||||
* after applying size hints we may have to correct position
|
||||
*/
|
||||
* after applying size hints we may have to correct position
|
||||
*/
|
||||
rdx = sx*dx;
|
||||
rdy = sy*dy;
|
||||
|
||||
|
|
|
@ -38,6 +38,7 @@ int debug;
|
|||
int signalled;
|
||||
int num_screens;
|
||||
int solidsweep = 0;
|
||||
int numvirtuals = 0;
|
||||
|
||||
Atom exit_rio;
|
||||
Atom restart_rio;
|
||||
|
@ -65,7 +66,7 @@ char *fontlist[] = {
|
|||
void
|
||||
usage(void)
|
||||
{
|
||||
fprintf(stderr, "usage: rio [-grey] [-version] [-font fname] [-term prog] [exit|restart]\n");
|
||||
fprintf(stderr, "usage: rio [-grey] [-version] [-font fname] [-term prog] [-virtuals num] [exit|restart]\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
@ -99,7 +100,13 @@ main(int argc, char *argv[])
|
|||
}
|
||||
else if (strcmp(argv[i], "-term") == 0 && i+1<argc)
|
||||
termprog = argv[++i];
|
||||
else if (strcmp(argv[i], "-version") == 0) {
|
||||
else if (strcmp(argv[i], "-virtuals") == 0 && i+1<argc) {
|
||||
numvirtuals = atoi(argv[++i]);
|
||||
if(numvirtuals < 0 || numvirtuals > 12) {
|
||||
fprintf(stderr, "rio: wrong number of virtual displays, defaulting to 4\n");
|
||||
numvirtuals = 4;
|
||||
}
|
||||
} else if (strcmp(argv[i], "-version") == 0) {
|
||||
fprintf(stderr, "%s", version[0]);
|
||||
if (PATCHLEVEL > 0)
|
||||
fprintf(stderr, "; patch level %d", PATCHLEVEL);
|
||||
|
@ -197,6 +204,8 @@ main(int argc, char *argv[])
|
|||
for (i = 0; i < num_screens; i++)
|
||||
initscreen(&screens[i], i, background);
|
||||
|
||||
initb2menu(numvirtuals);
|
||||
|
||||
/* set selection so that 9term knows we're running */
|
||||
curtime = CurrentTime;
|
||||
XSetSelectionOwner(dpy, _rio_running, screens[0].menuwin, timestamp());
|
||||
|
|
|
@ -14,6 +14,35 @@ Client *hiddenc[MAXHIDDEN];
|
|||
|
||||
int numhidden;
|
||||
|
||||
int virt;
|
||||
|
||||
Client * currents[NUMVIRTUALS] =
|
||||
{
|
||||
NULL, NULL, NULL, NULL,
|
||||
};
|
||||
|
||||
char *b2items[NUMVIRTUALS+1] =
|
||||
{
|
||||
"One",
|
||||
"Two",
|
||||
"Three",
|
||||
"Four",
|
||||
"Five",
|
||||
"Six",
|
||||
"Seven",
|
||||
"Eight",
|
||||
"Nine",
|
||||
"Ten",
|
||||
"Eleven",
|
||||
"Twelve",
|
||||
0,
|
||||
};
|
||||
|
||||
Menu b2menu =
|
||||
{
|
||||
b2items,
|
||||
};
|
||||
|
||||
char *b3items[B3FIXED+MAXHIDDEN+1] =
|
||||
{
|
||||
"New",
|
||||
|
@ -80,8 +109,14 @@ button(XButtonEvent *e)
|
|||
}
|
||||
return;
|
||||
case Button2:
|
||||
if ((e->state&(ShiftMask|ControlMask))==(ShiftMask|ControlMask))
|
||||
if (c) {
|
||||
XMapRaised(dpy, c->parent);
|
||||
active(c);
|
||||
XAllowEvents (dpy, ReplayPointer, curtime);
|
||||
} else if ((e->state&(ShiftMask|ControlMask))==(ShiftMask|ControlMask)) {
|
||||
menuhit(e, &egg);
|
||||
} else if(numvirtuals > 1 && (n = menuhit(e, &b2menu)) > -1)
|
||||
button2(n);
|
||||
return;
|
||||
default:
|
||||
return;
|
||||
|
@ -130,7 +165,7 @@ spawn(ScreenInfo *s)
|
|||
*/
|
||||
isNew = 1;
|
||||
/*
|
||||
* ugly dance to avoid leaving zombies. Could use SIGCHLD,
|
||||
* ugly dance to avoid leaving zombies. Could use SIGCHLD,
|
||||
* but it's not very portable.
|
||||
*/
|
||||
if (fork() == 0) {
|
||||
|
@ -286,3 +321,60 @@ renamec(Client *c, char *name)
|
|||
return;
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
button2(int n)
|
||||
{
|
||||
switch_to(n);
|
||||
if (current)
|
||||
cmapfocus(current);
|
||||
}
|
||||
|
||||
void
|
||||
switch_to_c(int n, Client *c)
|
||||
{
|
||||
if (c && c->next)
|
||||
switch_to_c(n,c->next);
|
||||
|
||||
if (c->parent == DefaultRootWindow(dpy))
|
||||
return;
|
||||
|
||||
if (c->virt != virt && c->state == NormalState) {
|
||||
XUnmapWindow(dpy, c->parent);
|
||||
XUnmapWindow(dpy, c->window);
|
||||
setstate(c, IconicState);
|
||||
if (c == current)
|
||||
nofocus();
|
||||
} else if (c->virt == virt && c->state == IconicState) {
|
||||
int i;
|
||||
|
||||
for (i = 0; i < numhidden; i++)
|
||||
if (c == hiddenc[i])
|
||||
break;
|
||||
|
||||
if (i == numhidden) {
|
||||
XMapWindow(dpy, c->window);
|
||||
XMapWindow(dpy, c->parent);
|
||||
setstate(c, NormalState);
|
||||
if (currents[virt] == c)
|
||||
active(c);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
switch_to(int n)
|
||||
{
|
||||
if (n == virt)
|
||||
return;
|
||||
currents[virt] = current;
|
||||
virt = n;
|
||||
switch_to_c(n, clients);
|
||||
current = currents[virt];
|
||||
}
|
||||
|
||||
void
|
||||
initb2menu(int n)
|
||||
{
|
||||
b2items[n] = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue