mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
Switch to using XInternAtoms for caching the atom numbers. Saves a pile
of function calls and server roundtrips. ok okan@
This commit is contained in:
parent
7660bf0db0
commit
01af04a342
14
xutil.c
14
xutil.c
@ -170,13 +170,17 @@ xu_setstate(struct client_ctx *cc, int state)
|
|||||||
}
|
}
|
||||||
|
|
||||||
Atom cwm_atoms[CWM_NO_ATOMS];
|
Atom cwm_atoms[CWM_NO_ATOMS];
|
||||||
|
char *atoms[CWM_NO_ATOMS] = {
|
||||||
|
"WM_STATE",
|
||||||
|
"WM_DELETE_WINDOW",
|
||||||
|
"WM_TAKE_FOCUS",
|
||||||
|
"WM_PROTOCOLS",
|
||||||
|
"_MOTIF_WM_HINTS"
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
xu_getatoms(void)
|
xu_getatoms(void)
|
||||||
{
|
{
|
||||||
WM_STATE = XInternAtom(X_Dpy, "WM_STATE", False);
|
XInternAtoms(X_Dpy, atoms, CWM_NO_ATOMS, False, cwm_atoms);
|
||||||
WM_DELETE_WINDOW = XInternAtom(X_Dpy, "WM_DELETE_WINDOW", False);
|
|
||||||
WM_TAKE_FOCUS = XInternAtom(X_Dpy, "WM_TAKE_FOCUS", False);
|
|
||||||
WM_PROTOCOLS = XInternAtom(X_Dpy, "WM_PROTOCOLS", False);
|
|
||||||
_MOTIF_WM_HINTS = XInternAtom(X_Dpy, "_MOTIF_WM_HINTS", False);
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user