]> git.lyx.org Git - lyx.git/blob - src/Format.h
Pass the encoding to the japanese pLaTeX processor (#4697).
[lyx.git] / src / Format.h
1 // -*- C++ -*-
2 /**
3  * \file Format.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Dekel Tsur
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef FORMAT_H
13 #define FORMAT_H
14
15 #include "support/docstring.h"
16
17 #include "OutputParams.h"
18
19 #include <vector>
20
21 namespace lyx {
22
23 namespace support { class FileName; }
24
25 class Buffer;
26
27 class Format {
28 public:
29         /// Flags for some format properties
30         enum Flags {
31                 none = 0,
32                 /// Set if this format is a document format (as opposed to
33                 /// e.g. image formats).
34                 /// Some formats are both (e.g. pdf), they have this flag set.
35                 document = 1,
36                 /// Set if this format can contain vector graphics.
37                 vector = 2,
38                 /// This format should  appear in the File > Export menu
39                 export_menu = 4,
40                 /// This may be a compressed file but doesn't need decompression
41                 zipped_native = 8
42         };
43         ///
44         Format(std::string const & n, std::string const & e, std::string const & p,
45                std::string const & s, std::string const & v, std::string const & ed,
46                int);
47         ///
48         bool dummy() const;
49         /// Is \p ext a valid filename extension for this format?
50         bool hasExtension(std::string const & ext) const;
51         /// Tell whether this format is a child format.
52         /// Child formats inherit settings like the viewer from their parent.
53         bool isChildFormat() const;
54         /// Name fo the parent format
55         std::string const parentFormat() const;
56         ///
57         std::string const & name() const { return name_; }
58         ///
59         void setName(std::string const & v) { name_ = v; }
60         ///
61         std::string const & extension() const
62         {
63                 return extension_list_.empty() ? empty_string() : extension_list_[0];
64         }
65         ///
66         std::string const extensions() const;
67         ///
68         void setExtensions(std::string const & v);
69         ///
70         std::string const & prettyname() const { return prettyname_; }
71         ///
72         void setPrettyname(std::string const & v) { prettyname_ = v; }
73         ///
74         std::string const & shortcut() const { return shortcut_; }
75         ///
76         void setShortcut(std::string const & v) { shortcut_ = v; }
77         ///
78         std::string const & viewer() const { return viewer_; }
79         ///
80         void setViewer(std::string const & v) { viewer_ = v; }
81         ///
82         std::string const & editor() const { return editor_; }
83         ///
84         void setEditor(std::string const & v) { editor_ = v; }
85         ///
86         bool documentFormat() const { return flags_ & document; }
87         ///
88         bool vectorFormat() const { return flags_ & vector; }
89         ///
90         void setFlags(int v) { flags_ = v; }
91         ///
92         bool inExportMenu() const { return flags_ & export_menu; }
93         ///
94         bool zippedNative() const { return flags_ & zipped_native; }
95 private:
96         /// Internal name. Needs to be unique.
97         std::string name_;
98         /// Filename extensions, the first one being the default
99         std::vector<std::string> extension_list_;
100         /// Name presented to the user. Needs to be unique.
101         std::string prettyname_;
102         /// Keyboard shortcut for the View and Export menu.
103         std::string shortcut_;
104         /*!
105          * Viewer for this format. Needs to be in the PATH or an absolute
106          * filename.
107          * This format cannot be viewed if \c viewer_ is empty.
108          * If it is \c auto the default viewer of the OS for this format is
109          * used.
110          */
111         std::string viewer_;
112         /// Editor for this format. \sa viewer_.
113         std::string editor_;
114         ///
115         int flags_;
116 };
117
118
119 bool operator<(Format const & a, Format const & b);
120
121
122 ///
123 class Formats {
124 public:
125         ///
126         typedef std::vector<Format> FormatList;
127         ///
128         typedef FormatList::const_iterator const_iterator;
129         ///
130         Format const & get(FormatList::size_type i) const { return formatlist[i]; }
131         ///
132         Format & get(FormatList::size_type i) { return formatlist[i]; }
133         /// \returns format named \p name if it exists, otherwise 0
134         Format const * getFormat(std::string const & name) const;
135         /*!
136          * Get the format of \p filename from file contents or, if this
137          * fails, from file extension.
138          * \returns file format if it could be found, otherwise an empty
139          * string.
140          */
141         std::string getFormatFromFile(support::FileName const & filename) const;
142         /// Finds a format from a file extension. Returns string() if not found.
143         std::string getFormatFromExtension(std::string const & ext) const;
144         /// Finds a format by pretty name. Returns string() if not found.
145         std::string getFormatFromPrettyName(std::string const & prettyname) const;
146         /** Returns true if the file referenced by \p filename is zipped and
147          ** needs to be unzipped for being handled
148          ** @note For natively zipped formats, such as dia/odg, this returns false.
149          **/
150         bool isZippedFile(support::FileName const & filename) const;
151         /// Set editor and/or viewer to "auto" for formats that can be
152         /// opened by the OS.
153         void setAutoOpen();
154         ///
155         int getNumber(std::string const & name) const;
156         ///
157         void add(std::string const & name);
158         ///
159         void add(std::string const & name, std::string const & extensions,
160                  std::string const & prettyname, std::string const & shortcut,
161                  std::string const & viewer, std::string const & editor,
162                  int flags);
163         ///
164         void erase(std::string const & name);
165         ///
166         void sort();
167         ///
168         void setViewer(std::string const & name, std::string const & command);
169         ///
170         void setEditor(std::string const & name, std::string const & command);
171         /// View the given file. Buffer used for DVI's paper orientation.
172         bool view(Buffer const & buffer, support::FileName const & filename,
173                   std::string const & format_name) const;
174         ///
175         bool edit(Buffer const & buffer, support::FileName const & filename,
176                   std::string const & format_name) const;
177         ///
178         docstring const prettyName(std::string const & name) const;
179         ///
180         std::string const extension(std::string const & name) const;
181         ///
182         std::string const extensions(std::string const & name) const;
183         ///
184         const_iterator begin() const { return formatlist.begin(); }
185         ///
186         const_iterator end() const { return formatlist.end(); }
187         ///
188         FormatList::size_type size() const { return formatlist.size(); }
189 private:
190         ///
191         FormatList formatlist;
192 };
193
194 ///
195 std::string flavor2format(OutputParams::FLAVOR flavor);
196 // Not currently used.
197 // OutputParams::FLAVOR format2flavor(std::string fmt);
198
199 extern Formats formats;
200
201 extern Formats system_formats;
202
203
204 } // namespace lyx
205
206 #endif //FORMAT_H