1 /* Deal with the X Resource Manager.
2 Copyright (C) 1990, 1993, 1994, 2000, 2001 Free Software Foundation.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Written by jla, 4/90 */
35 #if 1 /* I'd really appreciate it if this code could go away... -JimB */
36 /* This avoids lossage in the `dual-universe' headers on AT&T SysV
37 X11. Don't do it on Solaris, because it breaks compilation with
38 XFree86 4.0.3 (and probably many other X11R6 releases) on Solaris
40 #if defined(USG5) && !defined(SOLARIS2)
44 #endif /* USG5 && !SOLARIS2 */
49 #include <X11/Xatom.h>
54 #include <X11/Xutil.h>
55 #include <X11/Xresource.h>
63 #if !defined(S_ISDIR) && defined(S_IFDIR)
64 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
69 extern char *getenv ();
71 /* This does cause trouble on AIX. I'm going to take the comment at
74 extern short getuid (); /* If this causes portability problems,
75 I think we should just delete it; it'll
76 default to `int' anyway. */
79 #ifdef DECLARE_GETPWUID_WITH_UID_T
80 extern struct passwd
*getpwuid (uid_t
);
81 extern struct passwd
*getpwnam (const char *);
83 extern struct passwd
*getpwuid ();
84 extern struct passwd
*getpwnam ();
87 extern char *get_system_name ();
89 /* Make sure not to #include anything after these definitions. Let's
90 not step on anyone's prototypes. */
92 #define malloc xmalloc
93 #define realloc xrealloc
97 char *x_get_string_resource ();
101 /* X file search path processing. */
104 /* The string which gets substituted for the %C escape in XFILESEARCHPATH
105 and friends, or zero if none was specified. */
106 char *x_customization_string
;
109 /* Return the value of the emacs.customization (Emacs.Customization)
110 resource, for later use in search path decoding. If we find no
111 such resource, return zero. */
113 x_get_customization_string (db
, name
, class)
118 = (char *) alloca (strlen (name
) + sizeof ("customization") + 3);
120 = (char *) alloca (strlen (class) + sizeof ("Customization") + 3);
123 sprintf (full_name
, "%s.%s", name
, "customization");
124 sprintf (full_class
, "%s.%s", class, "Customization");
126 result
= x_get_string_resource (db
, full_name
, full_class
);
130 char *copy
= (char *) malloc (strlen (result
) + 1);
131 strcpy (copy
, result
);
139 /* Expand all the Xt-style %-escapes in STRING, whose length is given
140 by STRING_LEN. Here are the escapes we're supposed to recognize:
142 %N The value of the application's class name
143 %T The value of the type parameter ("app-defaults" in this
145 %S The value of the suffix parameter ("" in this context)
146 %L The language string associated with the specified display
147 (We use the "LANG" environment variable here, if it's set.)
148 %l The language part of the display's language string
149 (We treat this just like %L. If someone can tell us what
150 we're really supposed to do, dandy.)
151 %t The territory part of the display's language string
152 (This never gets used.)
153 %c The codeset part of the display's language string
154 (This never gets used either.)
155 %C The customization string retrieved from the resource
156 database associated with display.
157 (This is x_customization_string.)
159 Return the expanded file name if it exists and is readable, and
160 refers to %L only when the LANG environment variable is set, or
161 otherwise provided by X.
163 ESCAPED_SUFFIX and SUFFIX are postpended to STRING if they are
164 non-zero. %-escapes in ESCAPED_SUFFIX are expanded; STRING is left
167 Return NULL otherwise. */
170 magic_file_p (string
, string_len
, class, escaped_suffix
, suffix
)
173 char *class, *escaped_suffix
, *suffix
;
175 char *lang
= getenv ("LANG");
178 char *path
= (char *) malloc (path_size
);
183 while (p
< string
+ string_len
)
185 /* The chunk we're about to stick on the end of result. */
193 if (p
>= string
+ string_len
)
204 next
= (x_customization_string
205 ? x_customization_string
207 next_len
= strlen (next
);
212 next_len
= strlen (class);
216 next
= "app-defaults";
217 next_len
= strlen (next
);
234 next_len
= strlen (next
);
244 next
= p
, next_len
= 1;
246 /* Do we have room for this component followed by a '\0' ? */
247 if (path_len
+ next_len
+ 1 > path_size
)
249 path_size
= (path_len
+ next_len
+ 1) * 2;
250 path
= (char *) realloc (path
, path_size
);
253 bcopy (next
, path
+ path_len
, next_len
);
254 path_len
+= next_len
;
258 /* If we've reached the end of the string, append ESCAPED_SUFFIX. */
259 if (p
>= string
+ string_len
&& escaped_suffix
)
261 string
= escaped_suffix
;
262 string_len
= strlen (string
);
264 escaped_suffix
= NULL
;
268 /* Perhaps we should add the SUFFIX now. */
271 int suffix_len
= strlen (suffix
);
273 if (path_len
+ suffix_len
+ 1 > path_size
)
275 path_size
= (path_len
+ suffix_len
+ 1);
276 path
= (char *) realloc (path
, path_size
);
279 bcopy (suffix
, path
+ path_len
, suffix_len
);
280 path_len
+= suffix_len
;
283 path
[path_len
] = '\0';
302 if ((ptr
= getenv ("HOME")) == NULL
)
304 if ((ptr
= getenv ("LOGNAME")) != NULL
305 || (ptr
= getenv ("USER")) != NULL
)
308 pw
= getpwuid (getuid ());
317 copy
= (char *) malloc (strlen (ptr
) + 2);
331 return (access (filename
, 4) == 0 /* exists and is readable */
332 && stat (filename
, &status
) == 0 /* get the status */
333 && (S_ISDIR (status
.st_mode
)) == 0); /* not a directory */
337 /* Find the first element of SEARCH_PATH which exists and is readable,
338 after expanding the %-escapes. Return 0 if we didn't find any, and
339 the path name of the one we found otherwise. */
342 search_magic_path (search_path
, class, escaped_suffix
, suffix
)
343 char *search_path
, *class, *escaped_suffix
, *suffix
;
345 register char *s
, *p
;
347 for (s
= search_path
; *s
; s
= p
)
349 for (p
= s
; *p
&& *p
!= ':'; p
++)
354 char *path
= magic_file_p (s
, p
- s
, class, escaped_suffix
, suffix
);
363 path
= magic_file_p (s
, strlen (s
), class, escaped_suffix
, suffix
);
375 /* Producing databases for individual sources. */
378 get_system_app (class)
381 XrmDatabase db
= NULL
;
384 path
= getenv ("XFILESEARCHPATH");
385 if (! path
) path
= PATH_X_DEFAULTS
;
387 path
= search_magic_path (path
, class, 0, 0);
390 db
= XrmGetFileDatabase (path
);
399 get_fallback (display
)
414 /* Check for XUSERFILESEARCHPATH. It is a path of complete file
415 names, not directories. */
416 if (((path
= getenv ("XUSERFILESEARCHPATH"))
417 && (file
= search_magic_path (path
, class, 0, 0)))
419 /* Check for APPLRESDIR; it is a path of directories. In each,
420 we have to search for LANG/CLASS and then CLASS. */
421 || ((path
= getenv ("XAPPLRESDIR"))
422 && ((file
= search_magic_path (path
, class, "/%L/%N", 0))
423 || (file
= search_magic_path (path
, class, "/%N", 0))))
425 /* Check in the home directory. This is a bit of a hack; let's
426 hope one's home directory doesn't contain any %-escapes. */
427 || (free_it
= gethomedir (),
428 ((file
= search_magic_path (free_it
, class, "%L/%N", 0))
429 || (file
= search_magic_path (free_it
, class, "%N", 0)))))
431 XrmDatabase db
= XrmGetFileDatabase (file
);
445 get_user_db (display
)
451 #ifdef PBaseSize /* Cheap way to test for X11R4 or later. */
452 xdefs
= XResourceManagerString (display
);
454 xdefs
= display
->xdefaults
;
458 db
= XrmGetStringDatabase (xdefs
);
464 home
= gethomedir ();
465 xdefault
= (char *) malloc (strlen (home
) + sizeof (".Xdefaults"));
466 strcpy (xdefault
, home
);
467 strcat (xdefault
, ".Xdefaults");
468 db
= XrmGetFileDatabase (xdefault
);
473 #ifdef HAVE_XSCREENRESOURCESTRING
474 /* Get the screen-specific resources too. */
475 xdefs
= XScreenResourceString (DefaultScreenOfDisplay (display
));
478 XrmMergeDatabases (XrmGetStringDatabase (xdefs
), &db
);
491 char *path
= 0, *home
= 0, *host
;
493 if ((p
= getenv ("XENVIRONMENT")) == NULL
)
495 home
= gethomedir ();
496 host
= get_system_name ();
497 path
= (char *) malloc (strlen (home
)
498 + sizeof (".Xdefaults-")
500 sprintf (path
, "%s%s%s", home
, ".Xdefaults-", host
);
504 db
= XrmGetFileDatabase (p
);
506 if (path
) free (path
);
507 if (home
) free (home
);
512 /* External interface. */
514 /* Types of values that we can find in a database */
516 #define XrmStringType "String" /* String representation */
517 XrmRepresentation x_rm_string
; /* Quark representation */
519 /* Load X resources based on the display and a possible -xrm option. */
522 x_load_resources (display
, xrm_string
, myname
, myclass
)
524 char *xrm_string
, *myname
, *myclass
;
526 XrmDatabase user_database
;
530 char *helv
= "-*-helvetica-medium-r-*--*-120-*-*-*-*-iso8859-1";
532 char *courier
= "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1";
533 extern Lisp_Object Vdouble_click_time
;
536 x_rm_string
= XrmStringToQuark (XrmStringType
);
537 #ifndef USE_X_TOOLKIT
538 /* pmr@osf.org says this shouldn't be done if USE_X_TOOLKIT.
539 I suspect it's because the toolkit version does this elsewhere. */
542 rdb
= XrmGetStringDatabase ("");
544 /* Add some font defaults. If the font `helv' doesn't exist, widgets
545 will use some other default font. */
548 sprintf (line
, "%s.pane.background: grey75", myclass
);
549 XrmPutLineResource (&rdb
, line
);
550 sprintf (line
, "%s*fontList: %s", myclass
, helv
);
551 XrmPutLineResource (&rdb
, line
);
552 sprintf (line
, "%s*menu*background: grey75", myclass
);
553 XrmPutLineResource (&rdb
, line
);
554 sprintf (line
, "%s*menubar*background: grey75", myclass
);
555 XrmPutLineResource (&rdb
, line
);
556 sprintf (line
, "%s*verticalScrollBar.background: grey75", myclass
);
557 XrmPutLineResource (&rdb
, line
);
558 sprintf (line
, "%s*verticalScrollBar.troughColor: grey75", myclass
);
559 XrmPutLineResource (&rdb
, line
);
560 sprintf (line
, "%s.dialog*.background: grey75", myclass
);
561 XrmPutLineResource (&rdb
, line
);
562 sprintf (line
, "%s*fsb.Text.background: white", myclass
);
563 XrmPutLineResource (&rdb
, line
);
564 sprintf (line
, "%s*fsb.FilterText.background: white", myclass
);
565 XrmPutLineResource (&rdb
, line
);
566 sprintf (line
, "%s*fsb*DirList.background: white", myclass
);
567 XrmPutLineResource (&rdb
, line
);
568 sprintf (line
, "%s*fsb*ItemsList.background: white", myclass
);
569 XrmPutLineResource (&rdb
, line
);
570 sprintf (line
, "%s*fsb*background: grey75", myclass
);
571 XrmPutLineResource (&rdb
, line
);
572 sprintf (line
, "%s*fsb.Text.fontList: %s", myclass
, courier
);
573 XrmPutLineResource (&rdb
, line
);
574 sprintf (line
, "%s*fsb.FilterText.fontList: %s", myclass
, courier
);
575 XrmPutLineResource (&rdb
, line
);
576 sprintf (line
, "%s*fsb*ItemsList.fontList: %s", myclass
, courier
);
577 XrmPutLineResource (&rdb
, line
);
578 sprintf (line
, "%s*fsb*DirList.fontList: %s", myclass
, courier
);
579 XrmPutLineResource (&rdb
, line
);
581 /* Set double click time of list boxes in the file selection
582 dialog from `double-click-time'. */
583 if (INTEGERP (Vdouble_click_time
) && XINT (Vdouble_click_time
) > 0)
585 sprintf (line
, "%s*fsb*DirList.doubleClickInterval: %d",
586 myclass
, XFASTINT (Vdouble_click_time
));
587 XrmPutLineResource (&rdb
, line
);
588 sprintf (line
, "%s*fsb*ItemsList.doubleClickInterval: %d",
589 myclass
, XFASTINT (Vdouble_click_time
));
590 XrmPutLineResource (&rdb
, line
);
593 #else /* not USE_MOTIF */
595 sprintf (line
, "Emacs.dialog*.font: %s", helv
);
596 XrmPutLineResource (&rdb
, line
);
597 sprintf (line
, "Emacs.dialog*.background: grey75");
598 XrmPutLineResource (&rdb
, line
);
599 sprintf (line
, "*XlwMenu*font: %s", helv
);
600 XrmPutLineResource (&rdb
, line
);
601 sprintf (line
, "*XlwMenu*background: grey75");
602 XrmPutLineResource (&rdb
, line
);
603 sprintf (line
, "Emacs*verticalScrollBar.background: grey75");
604 XrmPutLineResource (&rdb
, line
);
606 #endif /* not USE_MOTIF */
608 user_database
= get_user_db (display
);
610 /* Figure out what the "customization string" is, so we can use it
612 if (x_customization_string
)
613 free (x_customization_string
);
614 x_customization_string
615 = x_get_customization_string (user_database
, myname
, myclass
);
617 /* Get application system defaults */
618 db
= get_system_app (myclass
);
620 XrmMergeDatabases (db
, &rdb
);
622 /* Get Fallback resources */
623 db
= get_fallback (display
);
625 XrmMergeDatabases (db
, &rdb
);
627 /* Get application user defaults */
628 db
= get_user_app (myclass
);
630 XrmMergeDatabases (db
, &rdb
);
632 /* get User defaults */
633 if (user_database
!= NULL
)
634 XrmMergeDatabases (user_database
, &rdb
);
636 /* Get Environment defaults. */
637 db
= get_environ_db ();
639 XrmMergeDatabases (db
, &rdb
);
641 /* Last, merge in any specification from the command line. */
642 if (xrm_string
!= NULL
)
644 db
= XrmGetStringDatabase (xrm_string
);
646 XrmMergeDatabases (db
, &rdb
);
653 /* Retrieve the value of the resource specified by NAME with class CLASS
654 and of type TYPE from database RDB. The value is returned in RET_VALUE. */
657 x_get_resource (rdb
, name
, class, expected_type
, ret_value
)
660 XrmRepresentation expected_type
;
664 XrmName namelist
[100];
665 XrmClass classlist
[100];
666 XrmRepresentation type
;
668 XrmStringToNameList(name
, namelist
);
669 XrmStringToClassList(class, classlist
);
671 if (XrmQGetResource (rdb
, namelist
, classlist
, &type
, &value
) == True
672 && (type
== expected_type
))
674 if (type
== x_rm_string
)
675 ret_value
->addr
= (char *) value
.addr
;
677 bcopy (value
.addr
, ret_value
->addr
, ret_value
->size
);
685 /* Retrieve the string resource specified by NAME with CLASS from
689 x_get_string_resource (rdb
, name
, class)
695 if (x_get_resource (rdb
, name
, class, x_rm_string
, &value
))
696 return (char *) value
.addr
;
701 /* Stand-alone test facilities. */
706 #define arg_listify(len, list) (list)
707 #define car(list) (*(list))
708 #define cdr(list) (list + 1)
709 #define NIL(list) (! *(list))
710 #define free_arglist(list)
719 for (p
= list
; ! NIL (p
); p
= cdr (p
))
720 if (! strcmp (elt
, car (p
)))
727 fatal (msg
, prog
, x1
, x2
, x3
, x4
, x5
)
729 int x1
, x2
, x3
, x4
, x5
;
736 (void) fprintf (stderr
, msg
, prog
, x1
, x2
, x3
, x4
, x5
);
745 char *displayname
, *resource_string
, *class, *name
;
749 arg_list
= arg_listify (argc
, argv
);
751 lp
= member ("-d", arg_list
);
753 displayname
= car (cdr (lp
));
755 displayname
= "localhost:0.0";
757 lp
= member ("-xrm", arg_list
);
759 resource_string
= car (cdr (lp
));
761 resource_string
= (char *) 0;
763 lp
= member ("-c", arg_list
);
765 class = car (cdr (lp
));
769 lp
= member ("-n", arg_list
);
771 name
= car (cdr (lp
));
775 free_arglist (arg_list
);
777 if (!(display
= XOpenDisplay (displayname
)))
778 fatal ("Can't open display '%s'\n", XDisplayName (displayname
));
780 xdb
= x_load_resources (display
, resource_string
, name
, class);
782 /* In a real program, you'd want to also do this: */
788 char query_class
[90];
793 if (strlen (query_name
))
800 value
= x_get_string_resource (xdb
, query_name
, query_class
);
803 printf ("\t%s(%s): %s\n\n", query_name
, query_class
, value
);
805 printf ("\tNo Value.\n\n");
810 printf ("\tExit.\n\n");
812 XCloseDisplay (display
);