1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
13 //#pragma implementation "utils.h"
17 #include "wx/string.h"
24 #include <sys/systeminfo.h>
27 #include "gdk/gdkx.h" // GDK_DISPLAY
28 #include "gdk/gdkprivate.h" // gdk_progclass
31 #include <X11/Xutil.h>
32 #include <X11/Xresource.h>
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 // Yuck this is really BOTH site and platform dependent
41 // so we should use some other strategy!
43 #define DEFAULT_XRESOURCE_DIR "/usr/openwin/lib/app-defaults"
45 #define DEFAULT_XRESOURCE_DIR "/usr/lib/X11/app-defaults"
48 //-----------------------------------------------------------------------------
49 // glabal data (data.cpp)
50 //-----------------------------------------------------------------------------
52 extern wxResourceCache
*wxTheResourceCache
;
53 extern XrmDatabase wxResourceDatabase
;
55 //-----------------------------------------------------------------------------
56 // utility functions for get/write resources
57 //-----------------------------------------------------------------------------
59 static char *GetResourcePath(char *buf
, char *name
, bool create
)
61 if (create
&& FileExists(name
)) {
63 return buf
; // Exists so ...
68 // Put in standard place for resource files if not absolute
69 strcpy(buf
, DEFAULT_XRESOURCE_DIR
);
71 strcat(buf
, FileNameFromPath(name
));
74 // Touch the file to create it
75 FILE *fd
= fopen(buf
, "w");
81 // Read $HOME for what it says is home, if not
82 // read $USER or $LOGNAME for user name else determine
83 // the Real User, then determine the Real home dir.
84 static char *GetIniFile(char *dest
, const char *filename
)
86 char *home
= (char *) NULL
;
87 if (filename
&& wxIsAbsolutePath(filename
))
89 strcpy(dest
, filename
);
93 if ((home
= wxGetUserHome(wxString())) != NULL
)
96 if (dest
[strlen(dest
) - 1] != '/') strcat(dest
, "/");
99 if ((filename
= getenv("XENVIRONMENT")) == NULL
) filename
= ".Xdefaults";
102 if (*filename
!= '.') strcat(dest
, ".");
103 strcat(dest
, filename
);
113 static void wxXMergeDatabases(void)
115 XrmDatabase homeDB
, serverDB
, applicationDB
;
116 char filenamebuf
[1024];
118 char *filename
= &filenamebuf
[0];
120 char *classname
= gdk_progclass
; // Robert Roebling ??
122 (void)strcpy(name
, "/usr/lib/X11/app-defaults/");
123 (void)strcat(name
, classname
? classname
: "wxWindows");
125 // Get application defaults file, if any
126 if ((applicationDB
= XrmGetFileDatabase(name
)))
127 (void)XrmMergeDatabases(applicationDB
, &wxResourceDatabase
);
129 // Merge server defaults, created by xrdb, loaded as a property of the root
130 // window when the server initializes and loaded into the display
131 // structure on XOpenDisplay;
132 // if not defined, use .Xdefaults
133 if (XResourceManagerString(GDK_DISPLAY()) != NULL
) {
134 serverDB
= XrmGetStringDatabase(XResourceManagerString(GDK_DISPLAY()));
136 (void)GetIniFile(filename
, (char *) NULL
);
137 serverDB
= XrmGetFileDatabase(filename
);
140 XrmMergeDatabases(serverDB
, &wxResourceDatabase
);
142 // Open XENVIRONMENT file, or if not defined, the .Xdefaults,
143 // and merge into existing database
145 if ((environment
= getenv("XENVIRONMENT")) == NULL
) {
147 environment
= GetIniFile(filename
, (const char *) NULL
);
148 len
= strlen(environment
);
149 #if !defined(SVR4) || defined(__sgi)
150 (void)gethostname(environment
+ len
, 1024 - len
);
152 (void)sysinfo(SI_HOSTNAME
, environment
+ len
, 1024 - len
);
155 if ((homeDB
= XrmGetFileDatabase(environment
)))
156 XrmMergeDatabases(homeDB
, &wxResourceDatabase
);
159 //-----------------------------------------------------------------------------
160 // called on application exit
161 //-----------------------------------------------------------------------------
163 void wxFlushResources(void)
165 char nameBuffer
[512];
167 wxNode
*node
= wxTheResourceCache
->First();
169 char *file
= node
->key
.string
;
170 // If file doesn't exist, create it first.
171 (void)GetResourcePath(nameBuffer
, file
, TRUE
);
173 XrmDatabase database
= (XrmDatabase
)node
->Data();
174 XrmPutFileDatabase(database
, nameBuffer
);
175 XrmDestroyDatabase(database
);
176 wxNode
*next
= node
->Next();
182 void wxDeleteResources(const char *file
)
184 wxLogTrace(wxTraceResAlloc
, "Delete: Number = %d", wxTheResourceCache
->Number());
186 (void)GetIniFile(buffer
, file
);
188 wxNode
*node
= wxTheResourceCache
->Find(buffer
);
190 XrmDatabase database
= (XrmDatabase
)node
->Data();
191 XrmDestroyDatabase(database
);
196 //-----------------------------------------------------------------------------
197 // resource functions
198 //-----------------------------------------------------------------------------
200 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, const wxString
& value
, const wxString
& file
)
204 if (!entry
) return FALSE
;
206 (void)GetIniFile(buffer
, file
);
208 XrmDatabase database
;
209 wxNode
*node
= wxTheResourceCache
->Find(buffer
);
211 database
= (XrmDatabase
)node
->Data();
213 database
= XrmGetFileDatabase(buffer
);
214 wxLogTrace(wxTraceResAlloc
, "Write: Number = %d", wxTheResourceCache
->Number());
215 wxTheResourceCache
->Append(buffer
, (wxObject
*)database
);
218 strcpy(resName
, !section
.IsNull() ? WXSTRINGCAST section
: "wxWindows");
219 strcat(resName
, ".");
220 strcat(resName
, entry
);
221 XrmPutStringResource(&database
, resName
, value
);
225 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, float value
, const wxString
& file
)
228 sprintf(buf
, "%.4f", value
);
229 return wxWriteResource(section
, entry
, buf
, file
);
232 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, long value
, const wxString
& file
)
235 sprintf(buf
, "%ld", value
);
236 return wxWriteResource(section
, entry
, buf
, file
);
239 bool wxWriteResource(const wxString
& section
, const wxString
& entry
, int value
, const wxString
& file
)
242 sprintf(buf
, "%d", value
);
243 return wxWriteResource(section
, entry
, buf
, file
);
246 bool wxGetResource(const wxString
& section
, const wxString
& entry
, char **value
, const wxString
& file
)
248 if (!wxResourceDatabase
)
251 XrmDatabase database
;
254 // Is this right? Trying to get it to look in the user's
255 // home directory instead of current directory -- JACS
256 (void)GetIniFile(buffer
, file
);
258 wxNode
*node
= wxTheResourceCache
->Find(buffer
);
260 database
= (XrmDatabase
)node
->Data();
262 database
= XrmGetFileDatabase(buffer
);
263 wxLogTrace(wxTraceResAlloc
, "Get: Number = %d", wxTheResourceCache
->Number());
264 wxTheResourceCache
->Append(buffer
, (wxObject
*)database
);
267 database
= wxResourceDatabase
;
272 strcpy(buf
, section
);
276 bool success
= XrmGetResource(database
, buf
, "*", str_type
, &xvalue
);
277 // Try different combinations of upper/lower case, just in case...
279 buf
[0] = (isupper(buf
[0]) ? tolower(buf
[0]) : toupper(buf
[0]));
280 success
= XrmGetResource(database
, buf
, "*", str_type
, &xvalue
);
285 *value
= new char[xvalue
.size
+ 1];
286 strncpy(*value
, xvalue
.addr
, (int)xvalue
.size
);
292 bool wxGetResource(const wxString
& section
, const wxString
& entry
, float *value
, const wxString
& file
)
294 char *s
= (char *) NULL
;
295 bool succ
= wxGetResource(section
, entry
, &s
, file
);
297 *value
= (float)strtod(s
, (char **) NULL
);
304 bool wxGetResource(const wxString
& section
, const wxString
& entry
, long *value
, const wxString
& file
)
306 char *s
= (char *) NULL
;
307 bool succ
= wxGetResource(section
, entry
, &s
, file
);
309 *value
= strtol(s
, (char **) NULL
, 10);
316 bool wxGetResource(const wxString
& section
, const wxString
& entry
, int *value
, const wxString
& file
)
318 char *s
= (char *) NULL
;
319 bool succ
= wxGetResource(section
, entry
, &s
, file
);
321 // Handle True, False here
322 // True, Yes, Enables, Set or Activated
323 if (*s
== 'T' || *s
== 'Y' || *s
== 'E' || *s
== 'S' || *s
== 'A')
325 // False, No, Disabled, Reset, Cleared, Deactivated
326 else if (*s
== 'F' || *s
== 'N' || *s
== 'D' || *s
== 'R' || *s
== 'C')
330 *value
= (int)strtol(s
, (char **) NULL
, 10);