A simpler, centralized INLINE.
[bpt/emacs.git] / src / xrdb.c
CommitLineData
f3a0bf5c 1/* Deal with the X Resource Manager.
ab422c4d
PE
2 Copyright (C) 1990, 1993-1994, 2000-2013 Free Software Foundation,
3 Inc.
f3a0bf5c 4
90324359
GM
5Author: Joseph Arceneaux
6Created: 4/90
7
3b7ad313
EN
8This file is part of GNU Emacs.
9
9ec0b715 10GNU Emacs is free software: you can redistribute it and/or modify
f3a0bf5c 11it under the terms of the GNU General Public License as published by
9ec0b715
GM
12the Free Software Foundation, either version 3 of the License, or
13(at your option) any later version.
f3a0bf5c 14
3b7ad313 15GNU Emacs is distributed in the hope that it will be useful,
f3a0bf5c
JB
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License for more details.
19
20You should have received a copy of the GNU General Public License
9ec0b715 21along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
f3a0bf5c 22
18160b98 23#include <config.h>
a2a4d43e 24
dfcf069d 25#include <unistd.h>
42a2c622 26#include <errno.h>
57bda87a 27#include <epaths.h>
61655b89 28#include <stdlib.h>
837255fb
JB
29#include <stdio.h>
30
b4716021
PE
31#include "lisp.h"
32
33/* This may include sys/types.h, and that somehow loses
34 if this is not done before the other system files. */
35#include "xterm.h"
36
f3a0bf5c
JB
37#include <X11/Xlib.h>
38#include <X11/Xatom.h>
f3a0bf5c
JB
39#include <X11/X.h>
40#include <X11/Xutil.h>
41#include <X11/Xresource.h>
5b9c0a1d 42#ifdef HAVE_PWD_H
f3a0bf5c 43#include <pwd.h>
531ff254 44#endif
f3a0bf5c 45
dee186b6
J
46#ifdef USE_MOTIF
47/* For Vdouble_click_time. */
48#include "keyboard.h"
49#endif
50
837255fb
JB
51/* X file search path processing. */
52
53
54/* The string which gets substituted for the %C escape in XFILESEARCHPATH
55 and friends, or zero if none was specified. */
ac64929e 56static char *x_customization_string;
837255fb
JB
57
58
59/* Return the value of the emacs.customization (Emacs.Customization)
60 resource, for later use in search path decoding. If we find no
61 such resource, return zero. */
2f7c71a1
AS
62static char *
63x_get_customization_string (XrmDatabase db, const char *name,
64 const char *class)
837255fb 65{
38182d90
PE
66 char *full_name = alloca (strlen (name) + sizeof "customization" + 3);
67 char *full_class = alloca (strlen (class) + sizeof "Customization" + 3);
837255fb
JB
68 char *result;
69
70 sprintf (full_name, "%s.%s", name, "customization");
71 sprintf (full_class, "%s.%s", class, "Customization");
72
73 result = x_get_string_resource (db, full_name, full_class);
309f24d1 74 return result ? xstrdup (result) : NULL;
837255fb
JB
75}
76
837255fb
JB
77/* Expand all the Xt-style %-escapes in STRING, whose length is given
78 by STRING_LEN. Here are the escapes we're supposed to recognize:
79
80 %N The value of the application's class name
81 %T The value of the type parameter ("app-defaults" in this
82 context)
83 %S The value of the suffix parameter ("" in this context)
84 %L The language string associated with the specified display
85 (We use the "LANG" environment variable here, if it's set.)
86 %l The language part of the display's language string
87 (We treat this just like %L. If someone can tell us what
88 we're really supposed to do, dandy.)
89 %t The territory part of the display's language string
90 (This never gets used.)
91 %c The codeset part of the display's language string
92 (This never gets used either.)
93 %C The customization string retrieved from the resource
94 database associated with display.
95 (This is x_customization_string.)
96
73dcdb9f 97 Return the resource database if its file was read successfully, and
837255fb
JB
98 refers to %L only when the LANG environment variable is set, or
99 otherwise provided by X.
100
28154962
PE
101 ESCAPED_SUFFIX is postpended to STRING if it is non-zero.
102 %-escapes in ESCAPED_SUFFIX are expanded.
837255fb
JB
103
104 Return NULL otherwise. */
105
73dcdb9f
PE
106static XrmDatabase
107magic_db (const char *string, ptrdiff_t string_len, const char *class,
108 const char *escaped_suffix)
837255fb 109{
73dcdb9f 110 XrmDatabase db;
837255fb
JB
111 char *lang = getenv ("LANG");
112
28154962 113 ptrdiff_t path_size = 100;
23f86fce 114 char *path = xmalloc (path_size);
28154962 115 ptrdiff_t path_len = 0;
837255fb 116
eec47d6b 117 const char *p = string;
837255fb
JB
118
119 while (p < string + string_len)
120 {
121 /* The chunk we're about to stick on the end of result. */
eec47d6b 122 const char *next = NULL;
28154962 123 ptrdiff_t next_len;
837255fb
JB
124
125 if (*p == '%')
126 {
127 p++;
128
129 if (p >= string + string_len)
130 next_len = 0;
131 else
132 switch (*p)
133 {
134 case '%':
135 next = "%";
136 next_len = 1;
137 break;
138
139 case 'C':
140 next = (x_customization_string
141 ? x_customization_string
142 : "");
143 next_len = strlen (next);
144 break;
145
146 case 'N':
147 next = class;
148 next_len = strlen (class);
149 break;
150
151 case 'T':
152 next = "app-defaults";
153 next_len = strlen (next);
154 break;
155
156 default:
157 case 'S':
158 next_len = 0;
159 break;
160
161 case 'L':
162 case 'l':
163 if (! lang)
164 {
1b6d8cf0 165 xfree (path);
837255fb
JB
166 return NULL;
167 }
427ec082 168
837255fb
JB
169 next = lang;
170 next_len = strlen (next);
171 break;
427ec082 172
837255fb
JB
173 case 't':
174 case 'c':
1b6d8cf0 175 xfree (path);
837255fb
JB
176 return NULL;
177 }
178 }
179 else
180 next = p, next_len = 1;
181
182 /* Do we have room for this component followed by a '\0' ? */
28154962 183 if (path_size - path_len <= next_len)
837255fb 184 {
28154962 185 if (min (PTRDIFF_MAX, SIZE_MAX) / 2 - 1 - path_len < next_len)
0065d054 186 memory_full (SIZE_MAX);
837255fb 187 path_size = (path_len + next_len + 1) * 2;
38182d90 188 path = xrealloc (path, path_size);
837255fb 189 }
427ec082 190
72af86bd 191 memcpy (path + path_len, next, next_len);
837255fb
JB
192 path_len += next_len;
193
194 p++;
195
196 /* If we've reached the end of the string, append ESCAPED_SUFFIX. */
197 if (p >= string + string_len && escaped_suffix)
198 {
199 string = escaped_suffix;
200 string_len = strlen (string);
201 p = string;
202 escaped_suffix = NULL;
203 }
204 }
205
837255fb 206 path[path_len] = '\0';
73dcdb9f
PE
207 db = XrmGetFileDatabase (path);
208 xfree (path);
209 return db;
837255fb
JB
210}
211
212
f3a0bf5c 213static char *
971de7fb 214gethomedir (void)
f3a0bf5c 215{
f3a0bf5c
JB
216 struct passwd *pw;
217 char *ptr;
837255fb 218 char *copy;
f3a0bf5c
JB
219
220 if ((ptr = getenv ("HOME")) == NULL)
221 {
1cac1f6f
KH
222 if ((ptr = getenv ("LOGNAME")) != NULL
223 || (ptr = getenv ("USER")) != NULL)
f3a0bf5c
JB
224 pw = getpwnam (ptr);
225 else
1cac1f6f 226 pw = getpwuid (getuid ());
837255fb 227
f3a0bf5c
JB
228 if (pw)
229 ptr = pw->pw_dir;
f3a0bf5c
JB
230 }
231
427ec082 232 if (ptr == NULL)
8fd0f424 233 return xstrdup ("/");
f3a0bf5c 234
23f86fce 235 copy = xmalloc (strlen (ptr) + 2);
837255fb
JB
236 strcpy (copy, ptr);
237 strcat (copy, "/");
f3a0bf5c 238
837255fb 239 return copy;
f3a0bf5c
JB
240}
241
837255fb 242
837255fb 243/* Find the first element of SEARCH_PATH which exists and is readable,
427ec082 244 after expanding the %-escapes. Return 0 if we didn't find any, and
837255fb 245 the path name of the one we found otherwise. */
f3a0bf5c 246
73dcdb9f 247static XrmDatabase
28154962
PE
248search_magic_path (const char *search_path, const char *class,
249 const char *escaped_suffix)
f3a0bf5c 250{
eec47d6b 251 const char *s, *p;
d4327fec 252
837255fb 253 for (s = search_path; *s; s = p)
f3a0bf5c 254 {
837255fb
JB
255 for (p = s; *p && *p != ':'; p++)
256 ;
427ec082 257
0f2cd61f 258 if (p > s)
f3a0bf5c 259 {
73dcdb9f
PE
260 XrmDatabase db = magic_db (s, p - s, class, escaped_suffix);
261 if (db)
262 return db;
f3a0bf5c 263 }
0f2cd61f 264 else if (*p == ':')
f3a0bf5c 265 {
73dcdb9f
PE
266 static char const ns[] = "%N%S";
267 XrmDatabase db = magic_db (ns, strlen (ns), class, escaped_suffix);
268 if (db)
269 return db;
f3a0bf5c
JB
270 }
271
837255fb
JB
272 if (*p == ':')
273 p++;
f3a0bf5c
JB
274 }
275
276 return 0;
277}
278\f
837255fb
JB
279/* Producing databases for individual sources. */
280
f3a0bf5c 281static XrmDatabase
eec47d6b 282get_system_app (const char *class)
f3a0bf5c 283{
42ca4633 284 const char *path;
f3a0bf5c 285
837255fb 286 path = getenv ("XFILESEARCHPATH");
58c7da0c 287 if (! path) path = PATH_X_DEFAULTS;
f3a0bf5c 288
73dcdb9f 289 return search_magic_path (path, class, 0);
f3a0bf5c
JB
290}
291
837255fb 292
f3a0bf5c 293static XrmDatabase
971de7fb 294get_fallback (Display *display)
f3a0bf5c 295{
f3a0bf5c
JB
296 return NULL;
297}
298
837255fb 299
f3a0bf5c 300static XrmDatabase
eec47d6b 301get_user_app (const char *class)
f3a0bf5c 302{
73dcdb9f 303 XrmDatabase db = 0;
42ca4633 304 const char *path;
837255fb
JB
305
306 /* Check for XUSERFILESEARCHPATH. It is a path of complete file
307 names, not directories. */
73dcdb9f
PE
308 path = getenv ("XUSERFILESEARCHPATH");
309 if (path)
310 db = search_magic_path (path, class, 0);
837255fb 311
73dcdb9f
PE
312 if (! db)
313 {
837255fb
JB
314 /* Check for APPLRESDIR; it is a path of directories. In each,
315 we have to search for LANG/CLASS and then CLASS. */
73dcdb9f
PE
316 path = getenv ("XAPPLRESDIR");
317 if (path)
318 {
319 db = search_magic_path (path, class, "/%L/%N");
320 if (!db)
321 db = search_magic_path (path, class, "/%N");
322 }
323 }
427ec082 324
73dcdb9f
PE
325 if (! db)
326 {
837255fb
JB
327 /* Check in the home directory. This is a bit of a hack; let's
328 hope one's home directory doesn't contain any %-escapes. */
73dcdb9f
PE
329 char *home = gethomedir ();
330 db = search_magic_path (home, class, "%L/%N");
331 if (! db)
332 db = search_magic_path (home, class, "%N");
333 xfree (home);
f3a0bf5c 334 }
3fa18fb2 335
73dcdb9f 336 return db;
f3a0bf5c
JB
337}
338
837255fb 339
f3a0bf5c 340static XrmDatabase
971de7fb 341get_user_db (Display *display)
f3a0bf5c
JB
342{
343 XrmDatabase db;
344 char *xdefs;
345
2c8d1900 346#ifdef PBaseSize /* Cheap way to test for X11R4 or later. */
b631f177
JB
347 xdefs = XResourceManagerString (display);
348#else
a2a4d43e 349 xdefs = display->xdefaults;
b631f177
JB
350#endif
351
f3a0bf5c
JB
352 if (xdefs != NULL)
353 db = XrmGetStringDatabase (xdefs);
354 else
355 {
837255fb
JB
356 char *home;
357 char *xdefault;
f3a0bf5c 358
837255fb 359 home = gethomedir ();
38182d90 360 xdefault = xmalloc (strlen (home) + sizeof ".Xdefaults");
837255fb 361 strcpy (xdefault, home);
f3a0bf5c
JB
362 strcat (xdefault, ".Xdefaults");
363 db = XrmGetFileDatabase (xdefault);
1b6d8cf0
DN
364 xfree (home);
365 xfree (xdefault);
f3a0bf5c
JB
366 }
367
d8717d15 368#ifdef HAVE_XSCREENRESOURCESTRING
9b37b1c2
JB
369 /* Get the screen-specific resources too. */
370 xdefs = XScreenResourceString (DefaultScreenOfDisplay (display));
371 if (xdefs != NULL)
fdce0b39
JB
372 {
373 XrmMergeDatabases (XrmGetStringDatabase (xdefs), &db);
374 XFree (xdefs);
375 }
9b37b1c2
JB
376#endif
377
f3a0bf5c
JB
378 return db;
379}
380
381static XrmDatabase
971de7fb 382get_environ_db (void)
f3a0bf5c
JB
383{
384 XrmDatabase db;
385 char *p;
a3d9c2a4 386 char *path = 0;
f3a0bf5c
JB
387
388 if ((p = getenv ("XENVIRONMENT")) == NULL)
389 {
a3d9c2a4
PE
390 static char const xdefaults[] = ".Xdefaults-";
391 char *home = gethomedir ();
61655b89
DA
392 char const *host = SSDATA (Vsystem_name);
393 ptrdiff_t pathsize = (strlen (home) + sizeof xdefaults
394 + SBYTES (Vsystem_name));
38182d90 395 path = xrealloc (home, pathsize);
a3d9c2a4 396 strcat (strcat (path, xdefaults), host);
f3a0bf5c
JB
397 p = path;
398 }
399
400 db = XrmGetFileDatabase (p);
837255fb 401
1b6d8cf0 402 xfree (path);
837255fb 403
f3a0bf5c
JB
404 return db;
405}
406\f
837255fb
JB
407/* External interface. */
408
f3a0bf5c
JB
409/* Types of values that we can find in a database */
410
411#define XrmStringType "String" /* String representation */
ac64929e 412static XrmRepresentation x_rm_string; /* Quark representation */
f3a0bf5c
JB
413
414/* Load X resources based on the display and a possible -xrm option. */
415
416XrmDatabase
eec47d6b
DN
417x_load_resources (Display *display, const char *xrm_string,
418 const char *myname, const char *myclass)
f3a0bf5c 419{
837255fb 420 XrmDatabase user_database;
f3a0bf5c
JB
421 XrmDatabase rdb;
422 XrmDatabase db;
4da4f201 423 char line[256];
6ca30ba4 424
72391843 425#if defined USE_MOTIF || !defined HAVE_XFT || !defined USE_LUCID
3565b346 426 const char *helv = "-*-helvetica-medium-r-*--*-120-*-*-*-*-iso8859-1";
72391843
PE
427#endif
428
429#ifdef USE_MOTIF
eec47d6b 430 const char *courier = "-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1";
8d56e206 431#endif
f3a0bf5c
JB
432
433 x_rm_string = XrmStringToQuark (XrmStringType);
082dc211
RS
434#ifndef USE_X_TOOLKIT
435 /* pmr@osf.org says this shouldn't be done if USE_X_TOOLKIT.
436 I suspect it's because the toolkit version does this elsewhere. */
f3a0bf5c 437 XrmInitialize ();
082dc211 438#endif
f3a0bf5c
JB
439 rdb = XrmGetStringDatabase ("");
440
4da4f201
GM
441 /* Add some font defaults. If the font `helv' doesn't exist, widgets
442 will use some other default font. */
443#ifdef USE_MOTIF
427ec082 444
cf9b4b0b 445 sprintf (line, "%s.pane.background: grey75", myclass);
06bbf618 446 XrmPutLineResource (&rdb, line);
cf9b4b0b 447 sprintf (line, "%s*fontList: %s", myclass, helv);
4da4f201 448 XrmPutLineResource (&rdb, line);
cf9b4b0b 449 sprintf (line, "%s*menu*background: grey75", myclass);
4da4f201 450 XrmPutLineResource (&rdb, line);
b6a15240 451 sprintf (line, "%s*menubar*background: grey75", myclass);
4da4f201 452 XrmPutLineResource (&rdb, line);
cf9b4b0b 453 sprintf (line, "%s*verticalScrollBar.background: grey75", myclass);
4da4f201 454 XrmPutLineResource (&rdb, line);
cf9b4b0b 455 sprintf (line, "%s*verticalScrollBar.troughColor: grey75", myclass);
06bbf618 456 XrmPutLineResource (&rdb, line);
cf9b4b0b 457 sprintf (line, "%s.dialog*.background: grey75", myclass);
4da4f201 458 XrmPutLineResource (&rdb, line);
cf9b4b0b 459 sprintf (line, "%s*fsb.Text.background: white", myclass);
4da4f201 460 XrmPutLineResource (&rdb, line);
cf9b4b0b 461 sprintf (line, "%s*fsb.FilterText.background: white", myclass);
4da4f201 462 XrmPutLineResource (&rdb, line);
cf9b4b0b 463 sprintf (line, "%s*fsb*DirList.background: white", myclass);
4da4f201 464 XrmPutLineResource (&rdb, line);
cf9b4b0b 465 sprintf (line, "%s*fsb*ItemsList.background: white", myclass);
4da4f201 466 XrmPutLineResource (&rdb, line);
cf9b4b0b 467 sprintf (line, "%s*fsb*background: grey75", myclass);
4da4f201 468 XrmPutLineResource (&rdb, line);
cf9b4b0b 469 sprintf (line, "%s*fsb.Text.fontList: %s", myclass, courier);
4da4f201 470 XrmPutLineResource (&rdb, line);
cf9b4b0b 471 sprintf (line, "%s*fsb.FilterText.fontList: %s", myclass, courier);
4da4f201 472 XrmPutLineResource (&rdb, line);
cf9b4b0b 473 sprintf (line, "%s*fsb*ItemsList.fontList: %s", myclass, courier);
4da4f201 474 XrmPutLineResource (&rdb, line);
cf9b4b0b 475 sprintf (line, "%s*fsb*DirList.fontList: %s", myclass, courier);
4da4f201
GM
476 XrmPutLineResource (&rdb, line);
477
478 /* Set double click time of list boxes in the file selection
479 dialog from `double-click-time'. */
480 if (INTEGERP (Vdouble_click_time) && XINT (Vdouble_click_time) > 0)
481 {
c2982e87 482 sprintf (line, "%s*fsb*DirList.doubleClickInterval: %"pI"d",
cf9b4b0b 483 myclass, XFASTINT (Vdouble_click_time));
4da4f201 484 XrmPutLineResource (&rdb, line);
c2982e87 485 sprintf (line, "%s*fsb*ItemsList.doubleClickInterval: %"pI"d",
cf9b4b0b 486 myclass, XFASTINT (Vdouble_click_time));
4da4f201
GM
487 XrmPutLineResource (&rdb, line);
488 }
489
490#else /* not USE_MOTIF */
427ec082 491
fc6c5dfe 492 sprintf (line, "Emacs.dialog*.background: grey75");
4da4f201 493 XrmPutLineResource (&rdb, line);
3928f2b6
JD
494#if !defined (HAVE_XFT) || !defined (USE_LUCID)
495 sprintf (line, "Emacs.dialog*.font: %s", helv);
496 XrmPutLineResource (&rdb, line);
fc6c5dfe 497 sprintf (line, "*XlwMenu*font: %s", helv);
4da4f201 498 XrmPutLineResource (&rdb, line);
3928f2b6 499#endif
fc6c5dfe 500 sprintf (line, "*XlwMenu*background: grey75");
4da4f201 501 XrmPutLineResource (&rdb, line);
fc6c5dfe 502 sprintf (line, "Emacs*verticalScrollBar.background: grey75");
4da4f201 503 XrmPutLineResource (&rdb, line);
427ec082 504
4da4f201
GM
505#endif /* not USE_MOTIF */
506
837255fb
JB
507 user_database = get_user_db (display);
508
509 /* Figure out what the "customization string" is, so we can use it
510 to decode paths. */
1b6d8cf0 511 xfree (x_customization_string);
837255fb
JB
512 x_customization_string
513 = x_get_customization_string (user_database, myname, myclass);
514
f3a0bf5c
JB
515 /* Get application system defaults */
516 db = get_system_app (myclass);
517 if (db != NULL)
518 XrmMergeDatabases (db, &rdb);
519
520 /* Get Fallback resources */
521 db = get_fallback (display);
522 if (db != NULL)
523 XrmMergeDatabases (db, &rdb);
524
525 /* Get application user defaults */
526 db = get_user_app (myclass);
527 if (db != NULL)
528 XrmMergeDatabases (db, &rdb);
529
530 /* get User defaults */
837255fb
JB
531 if (user_database != NULL)
532 XrmMergeDatabases (user_database, &rdb);
f3a0bf5c
JB
533
534 /* Get Environment defaults. */
535 db = get_environ_db ();
536 if (db != NULL)
537 XrmMergeDatabases (db, &rdb);
427ec082 538
f3a0bf5c
JB
539 /* Last, merge in any specification from the command line. */
540 if (xrm_string != NULL)
541 {
542 db = XrmGetStringDatabase (xrm_string);
543 if (db != NULL)
544 XrmMergeDatabases (db, &rdb);
545 }
546
547 return rdb;
548}
549
837255fb 550
f3a0bf5c
JB
551/* Retrieve the value of the resource specified by NAME with class CLASS
552 and of type TYPE from database RDB. The value is returned in RET_VALUE. */
553
2f7c71a1
AS
554static int
555x_get_resource (XrmDatabase rdb, const char *name, const char *class,
556 XrmRepresentation expected_type, XrmValue *ret_value)
f3a0bf5c
JB
557{
558 XrmValue value;
559 XrmName namelist[100];
560 XrmClass classlist[100];
561 XrmRepresentation type;
562
5e617bc2
JB
563 XrmStringToNameList (name, namelist);
564 XrmStringToClassList (class, classlist);
f3a0bf5c
JB
565
566 if (XrmQGetResource (rdb, namelist, classlist, &type, &value) == True
567 && (type == expected_type))
568 {
569 if (type == x_rm_string)
41ab0754 570 ret_value->addr = (char *) value.addr;
f3a0bf5c 571 else
72af86bd 572 memcpy (ret_value->addr, value.addr, ret_value->size);
f3a0bf5c
JB
573
574 return value.size;
575 }
576
577 return 0;
578}
579
580/* Retrieve the string resource specified by NAME with CLASS from
581 database RDB. */
582
583char *
eec47d6b 584x_get_string_resource (XrmDatabase rdb, const char *name, const char *class)
f3a0bf5c
JB
585{
586 XrmValue value;
587
8686ac71
JB
588 if (inhibit_x_resources)
589 /* --quick was passed, so this is a no-op. */
590 return NULL;
591
f3a0bf5c
JB
592 if (x_get_resource (rdb, name, class, x_rm_string, &value))
593 return (char *) value.addr;
594
7d652d97 595 return 0;
f3a0bf5c
JB
596}
597\f
837255fb
JB
598/* Stand-alone test facilities. */
599
f3a0bf5c 600#ifdef TESTRM
837255fb
JB
601
602typedef char **List;
603#define arg_listify(len, list) (list)
604#define car(list) (*(list))
605#define cdr(list) (list + 1)
606#define NIL(list) (! *(list))
607#define free_arglist(list)
608
609static List
1dae0f0a 610member (char *elt, List list)
837255fb
JB
611{
612 List p;
613
614 for (p = list; ! NIL (p); p = cdr (p))
615 if (! strcmp (elt, car (p)))
616 return p;
617
618 return p;
619}
f3a0bf5c
JB
620
621static void
1dae0f0a 622fatal (char *msg, char *prog)
f3a0bf5c 623{
4ebbdd67 624 fprintf (stderr, msg, prog);
1dae0f0a 625 exit (1);
f3a0bf5c
JB
626}
627
1dae0f0a
AS
628int
629main (int argc, char **argv)
f3a0bf5c
JB
630{
631 Display *display;
837255fb 632 char *displayname, *resource_string, *class, *name;
f3a0bf5c 633 XrmDatabase xdb;
837255fb 634 List arg_list, lp;
f3a0bf5c
JB
635
636 arg_list = arg_listify (argc, argv);
637
638 lp = member ("-d", arg_list);
639 if (!NIL (lp))
640 displayname = car (cdr (lp));
641 else
642 displayname = "localhost:0.0";
643
644 lp = member ("-xrm", arg_list);
7d652d97 645 resource_string = NIL (lp) ? 0 : car (cdr (lp));
f3a0bf5c
JB
646
647 lp = member ("-c", arg_list);
648 if (! NIL (lp))
649 class = car (cdr (lp));
650 else
651 class = "Emacs";
652
837255fb
JB
653 lp = member ("-n", arg_list);
654 if (! NIL (lp))
655 name = car (cdr (lp));
656 else
657 name = "emacs";
f3a0bf5c 658
837255fb 659 free_arglist (arg_list);
f3a0bf5c
JB
660
661 if (!(display = XOpenDisplay (displayname)))
662 fatal ("Can't open display '%s'\n", XDisplayName (displayname));
663
837255fb 664 xdb = x_load_resources (display, resource_string, name, class);
f3a0bf5c 665
f3a0bf5c
JB
666 /* In a real program, you'd want to also do this: */
667 display->db = xdb;
f3a0bf5c
JB
668
669 while (1)
670 {
837255fb
JB
671 char query_name[90];
672 char query_class[90];
673
674 printf ("Name: ");
675 gets (query_name);
f3a0bf5c 676
837255fb 677 if (strlen (query_name))
f3a0bf5c 678 {
837255fb
JB
679 char *value;
680
681 printf ("Class: ");
682 gets (query_class);
683
684 value = x_get_string_resource (xdb, query_name, query_class);
f3a0bf5c
JB
685
686 if (value != NULL)
837255fb 687 printf ("\t%s(%s): %s\n\n", query_name, query_class, value);
f3a0bf5c
JB
688 else
689 printf ("\tNo Value.\n\n");
690 }
691 else
692 break;
693 }
694 printf ("\tExit.\n\n");
695
696 XCloseDisplay (display);
1dae0f0a
AS
697
698 return 0;
f3a0bf5c
JB
699}
700#endif /* TESTRM */