]> git.lyx.org Git - lyx.git/blob - src/support/os.h
Remove traces of Q_CYGWIN_WIN
[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 "support/strfwd.h"
18 #include <cstddef>
19
20
21 namespace lyx {
22 namespace support {
23 namespace os {
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
33 /// Returns the name of the NULL device (/dev/null, null).
34 std::string const & nulldev();
35
36 /// Returns "/" on *nix, "C:/", etc on Windows.
37 std::string current_root();
38
39 ///
40 shell_type shell();
41
42 /// Name of the python interpreter
43 std::string const python();
44
45 ///
46 bool isFilesystemCaseSensitive();
47
48 /// Extract the path common to both @c p1 and @c p2. DBCS aware!
49 /// \p p1, \p p2 and the return value are encoded in utf8.
50 std::size_t common_path(docstring const & p1, docstring const & p2);
51
52 /// Converts a unix style path to host OS style.
53 /// \p p and the return value are encoded in utf8.
54 std::string external_path(std::string const & p);
55
56 /// Converts a host OS style path to unix style.
57 /// \p p and the return value are encoded in utf8.
58 std::string internal_path(std::string const & p);
59
60 /// Converts a unix style path list to host OS style.
61 /// \p p and the return value are encoded in utf8.
62 std::string external_path_list(std::string const & p);
63
64 /// Converts a host OS style path list to unix style.
65 /// \p p and the return value are encoded in utf8.
66 std::string internal_path_list(std::string const & p);
67
68 /**
69  * Converts a unix style path into a form suitable for inclusion in a LaTeX
70  * document.
71  * \p p is encoded in utf8.
72  * Caution: This function handles only the OS specific part of that task.
73  * Never use it directly, use lyx::support::latex_path instead.
74  */
75 std::string latex_path(std::string const & p);
76
77 /** Returns a string suitable to be passed to popen when
78  *  reading a file.
79  */
80 char const * popen_read_mode();
81
82 /** The character used to separate paths returned by the
83  *  PATH environment variable.
84  */
85 char path_separator();
86
87 /** If @c use_windows_paths is true, LyX will output Windows-style paths to
88  *  latex files rather than posix ones. Obviously, this option is used only
89  *  under Windows.
90  */
91 void windows_style_tex_paths(bool use_windows_paths);
92
93 enum auto_open_mode {
94         VIEW,
95         EDIT
96 };
97
98 /** Check whether or not a file can be opened by a default viewer or editor.
99  *  \param extension (without leading .)
100  *  \param mode can be opened in VIEW or EDIT mode
101  *  \returns whether or not the format can be opened according to \p mode
102  */
103 bool canAutoOpenFile(std::string const & ext, auto_open_mode const mode = VIEW);
104
105 /** View or edit a file with the default viewer or editor.
106  *  \param filename file to open (encoded in utf8)
107  *  \param mode open in VIEW or EDIT mode
108  *  \returns whether or not the file is viewed (or edited) successfully.
109  */
110 bool autoOpenFile(std::string const & filename, auto_open_mode const mode = VIEW);
111
112 } // namespace os
113 } // namespace support
114 } // namespace lyx
115
116 #endif