diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/misc.cc | 17 | ||||
-rw-r--r-- | src/misc.hh | 1 |
2 files changed, 18 insertions, 0 deletions
diff --git a/src/misc.cc b/src/misc.cc index 728c5ae..809dc24 100644 --- a/src/misc.cc +++ b/src/misc.cc | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <stdio.h> | 27 | #include <stdio.h> |
28 | #include <iostream> | 28 | #include <iostream> |
29 | #include <X11/Xutil.h> | 29 | #include <X11/Xutil.h> |
30 | |||
30 | using namespace std; | 31 | using namespace std; |
31 | 32 | ||
32 | //------- strdup ------------------------ | 33 | //------- strdup ------------------------ |
@@ -39,6 +40,22 @@ char *Misc::strdup(const char *s) { | |||
39 | return n; | 40 | return n; |
40 | } | 41 | } |
41 | 42 | ||
43 | //------------- expandFilename ---------------------- | ||
44 | // if ~ then expand it to home of user | ||
45 | // returns expanded filename | ||
46 | // (note: the function creates new memory for the string) | ||
47 | //--------------------------------------------------- | ||
48 | char *Misc::expandFilename(const char *filename) { | ||
49 | char retval[strlen(filename)+strlen(getenv("HOME"))+2]; //2 extra byte just to be safe | ||
50 | retval[0]=0; //mark end | ||
51 | if (filename[0]=='~') { | ||
52 | strcat(retval, getenv("HOME")); | ||
53 | strcat(retval, &filename[1]); | ||
54 | } else | ||
55 | return Misc::strdup(filename); //return unmodified value | ||
56 | |||
57 | return Misc::strdup(retval); //return modified value | ||
58 | } | ||
42 | 59 | ||
43 | // ---------------------------------------------------------------------- | 60 | // ---------------------------------------------------------------------- |
44 | // xvertext, Copyright (c) 1992 Alan Richardson (mppa3@uk.ac.sussex.syma) | 61 | // xvertext, Copyright (c) 1992 Alan Richardson (mppa3@uk.ac.sussex.syma) |
diff --git a/src/misc.hh b/src/misc.hh index b0593da..6d3a66c 100644 --- a/src/misc.hh +++ b/src/misc.hh | |||
@@ -43,6 +43,7 @@ public: | |||
43 | } Font; | 43 | } Font; |
44 | 44 | ||
45 | static char *strdup(const char *); | 45 | static char *strdup(const char *); |
46 | static char *expandFilename(const char *filename); | ||
46 | 47 | ||
47 | static void DrawString(Display *display, Window w, GC gc, Misc::Font *font, | 48 | static void DrawString(Display *display, Window w, GC gc, Misc::Font *font, |
48 | unsigned int text_w, unsigned int size_w, | 49 | unsigned int text_w, unsigned int size_w, |