]> git.lyx.org Git - lyx.git/blob - src/support/os.h
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / os.h
1 // -*- C++ -*-
2 /**
3  * \file os.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Ruurd A. Reitsma
8  *
9  * Full author contact details are available in file CREDITS.
10  *
11  * wrap OS specific stuff
12  */
13
14 #ifndef OS_H
15 #define OS_H
16
17 #include <string>
18
19
20 namespace lyx {
21 namespace support {
22 namespace os {
23
24 //
25 enum shell_type {
26         UNIX,   // Do we have to distinguish sh and csh?
27         CMD_EXE
28 };
29
30 // do some work just once
31 void init(int * argc, char ** argv[]);
32 // returns path of LyX binary
33 std::string binpath();
34 // returns name of LyX binary
35 std::string binname();
36 //
37 void setTmpDir(std::string const & p);
38 //
39 std::string getTmpDir();
40 //
41 std::string current_root();
42 //
43 shell_type shell();
44 // DBCS aware!
45 std::string::size_type common_path(std::string const & p1, std::string const & p2);
46 // no-op on UNIX, '\\'->'/' on OS/2 and Win32, ':'->'/' on MacOS, etc.
47 std::string slashify_path(std::string const & p);
48 // converts a host OS path to unix style
49 std::string external_path(std::string const & p);
50 // converts a unix path to host OS style
51 std::string internal_path(std::string const & p);
52 // is path absolute?
53 bool is_absolute_path(std::string const & p);
54 // returns a string suitable to be passed to popen when
55 // same for popen().
56         char const * popen_read_mode();
57 //
58 void warn(std::string const & mesg);
59
60 } // namespace os
61 } // namespace support
62 } // namespace lyx
63
64 #endif