From 7a23065f7741289644158f9c5f30bfd596828c2d Mon Sep 17 00:00:00 2001 From: oga Date: Fri, 23 Jan 2009 20:04:30 +0000 Subject: Switch to using XInternAtoms for caching the atom numbers. Saves a pile of function calls and server roundtrips. ok okan@ --- xutil.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'xutil.c') diff --git a/xutil.c b/xutil.c index cd83183..3b4845e 100644 --- a/xutil.c +++ b/xutil.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: xutil.c,v 1.11 2009/01/22 18:06:16 oga Exp $ + * $Id: xutil.c,v 1.12 2009/01/23 20:04:30 oga Exp $ */ #include "headers.h" @@ -170,13 +170,17 @@ xu_setstate(struct client_ctx *cc, int state) } 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 xu_getatoms(void) { - WM_STATE = XInternAtom(X_Dpy, "WM_STATE", False); - 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); + XInternAtoms(X_Dpy, atoms, CWM_NO_ATOMS, False, cwm_atoms); } -- cgit v1.2.3-2-gb3c3