]> git.lyx.org Git - lyx.git/blob - src/support/os.h
small changes read changelog
[lyx.git] / src / support / os.h
1 // os.h copyright "Ruurd A. Reitsma" <R.A.Reitsma@wbmt.tudelft.nl>
2
3 #ifndef OS_H
4 #define OS_H
5
6 #ifdef __GNUG__
7 #pragma interface
8 #endif
9
10 #include "LString.h"
11
12 /// Do we need a base class for this?
13 class os {
14 public:
15         //
16         enum shell_type {
17                 UNIX,   // Do we have to distinguish sh and csh?
18                 CMD_EXE
19         };
20
21         // 
22         static void init(int * argc, char ** argv[]);
23
24         // 
25         static string binpath() {return binpath_;};
26
27         // 
28         static string binname() {return binname_;};
29
30         // system_tempdir actually doesn't belong here.
31         // I put it here only to avoid a global variable.
32         static void setTmpDir(string p) {tmpdir_ = p;};
33
34         // 
35         static string getTmpDir() {return tmpdir_;};
36
37         // 
38         static string current_root();
39
40         // 
41         static os::shell_type shell() {return _shell;};
42
43         // DBCS aware!
44         static string::size_type common_path(string const &p1, string const &p2);
45
46         // no-op on UNIX, '\\'->'/' on OS/2 and Win32, ':'->'/' on MacOS, etc.
47         static string slashify_path(string p);
48         static string external_path(string p);
49         static void warn(string mesg);
50 private:
51         static string binpath_;
52         static string binname_;
53         static string tmpdir_;
54         static os::shell_type _shell;
55         static unsigned long cp_;       // Used only on OS/2 to determine file system encoding.
56
57         // Never initialize static variables in the header!
58         // Anyway I bet this class will never be constructed.
59         os() {};
60
61         // Ignore warning!
62         ~os() {};
63
64 };
65
66 #endif