]> git.lyx.org Git - lyx.git/blob - src/support/os.h
dffedb5fa5d101ee326281470cd2c97d38248e5b
[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/docstring.h"
18
19 #include <string>
20
21
22 namespace lyx {
23 namespace support {
24 namespace os {
25
26 enum shell_type {
27         UNIX,   // Do we have to distinguish sh and csh?
28         CMD_EXE
29 };
30
31 /// Do some work just once.
32 void init(int argc, char * argv[]);
33
34 /// Returns the name of the NULL device (/dev/null, null).
35 std::string const & nulldev();
36
37 /// Returns "/" on *nix, "C:/", etc on Windows.
38 std::string current_root();
39
40 ///
41 shell_type shell();
42
43 /// Name of the python interpreter
44 std::string const python();
45
46 /// Extract the path common to both @c p1 and @c p2. DBCS aware!
47 std::string::size_type common_path(std::string const & p1, std::string const & p2);
48
49 /// Converts a unix style path to host OS style.
50 std::string external_path(std::string const & p);
51
52 /// Converts a host OS style path to unix style.
53 std::string internal_path(std::string const & p);
54
55 /// Converts a host OS style path to unix style.
56 docstring internal_path(docstring const & p);
57
58 /// Converts a unix style path list to host OS style.
59 std::string external_path_list(std::string const & p);
60
61 /// Converts a host OS style path list to unix style.
62 std::string internal_path_list(std::string const & p);
63
64 /**
65  * Converts a unix style path into a form suitable for inclusion in a LaTeX
66  * document.
67  * Caution: This function handles only the OS specific part of that task.
68  * Never use it directly, use lyx::support::latex_path instead.
69  */
70 std::string latex_path(std::string const & p);
71
72 /// Is the path absolute?
73 bool is_absolute_path(std::string const & p);
74
75 /** Returns a string suitable to be passed to popen when
76  *  reading a file.
77  */
78 char const * popen_read_mode();
79
80 /** The character used to separate paths returned by the
81  *  PATH environment variable.
82  */
83 char path_separator();
84
85 /** If @c use_windows_paths is true, LyX will output Windows-style paths to
86  *  latex files rather than posix ones. Obviously, this option is used only
87  *  under Windows.
88  */
89 void windows_style_tex_paths(bool use_windows_paths);
90
91 enum auto_open_mode {
92         VIEW,
93         EDIT
94 };
95
96 /** Check whether or not a file can be opened by a default viewer or editor.
97  *  \param extension (without leading .)
98  *  \param mode can be opened in VIEW or EDIT mode
99  *  \returns whether or not the format can be opened according to \p mode
100  */
101 bool canAutoOpenFile(std::string const & ext, auto_open_mode const mode = VIEW);
102
103 /** View or edit a file with the default viewer or editor.
104  *  \param filename file to open
105  *  \param mode open in VIEW or EDIT mode
106  *  \returns whether or not the file is viewed (or edited) successfully.
107  */
108 bool autoOpenFile(std::string const & filename, auto_open_mode const mode = VIEW);
109
110 /** General font utilities.
111  *  FIXME: only MAC and WIN32 for now but it would be nice to convince
112  *  fontconfig to do the same for linux.
113  */
114
115 /// Add fonts to the font subsystem, must be called before Application
116 /// is initialized.
117 void addFontResources();
118
119 /// Restore original font resources, must be called after Application
120 /// is destroyed.
121 void restoreFontResources();
122
123 } // namespace os
124 } // namespace support
125 } // namespace lyx
126
127 #endif