]> git.lyx.org Git - lyx.git/blob - src/Format.h
#9130 Text in main work area isn't rendered with high resolution
[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                std::string const & m, 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         std::string const & mime() const { return mime_; }
87         ///
88         void setMime(std::string const & m) { mime_ = m; }
89         ///
90         bool documentFormat() const { return flags_ & document; }
91         ///
92         bool vectorFormat() const { return flags_ & vector; }
93         ///
94         void setFlags(int v) { flags_ = v; }
95         ///
96         bool inExportMenu() const { return flags_ & export_menu; }
97         ///
98         bool zippedNative() const { return flags_ & zipped_native; }
99         ///
100         static bool formatSorter(Format const * lhs, Format const * rhs);
101
102 private:
103         /// Internal name. Needs to be unique.
104         std::string name_;
105         /// Filename extensions, the first one being the default
106         std::vector<std::string> extension_list_;
107         /// Name presented to the user. Needs to be unique.
108         std::string prettyname_;
109         /// Keyboard shortcut for the View and Export menu.
110         std::string shortcut_;
111         /*!
112          * Viewer for this format. Needs to be in the PATH or an absolute
113          * filename.
114          * This format cannot be viewed if \c viewer_ is empty.
115          * If it is \c auto the default viewer of the OS for this format is
116          * used.
117          */
118         std::string viewer_;
119         /// Editor for this format. \sa viewer_.
120         std::string editor_;
121         /*!
122          * Full MIME type, e.g. "text/x-tex".
123          * Only types listed by the shared MIME database of freedesktop.org
124          * should be added.
125          * This field may be empty, but it must be unique across all formats
126          * if it is set.
127          */
128         std::string mime_;
129         ///
130         int flags_;
131 };
132
133
134 bool operator<(Format const & a, Format const & b);
135
136
137 ///
138 class Formats {
139 public:
140         ///
141         typedef std::vector<Format> FormatList;
142         ///
143         typedef FormatList::const_iterator const_iterator;
144         ///
145         Format const & get(FormatList::size_type i) const { return formatlist[i]; }
146         ///
147         Format & get(FormatList::size_type i) { return formatlist[i]; }
148         /// \returns format named \p name if it exists, otherwise 0
149         Format const * getFormat(std::string const & name) const;
150         /*!
151          * Get the format of \p filename from file contents or, if this
152          * fails, from file extension.
153          * \returns file format if it could be found, otherwise an empty
154          * string.
155          */
156         std::string getFormatFromFile(support::FileName const & filename) const;
157         /// Finds a format from a file extension. Returns string() if not found.
158         std::string getFormatFromExtension(std::string const & ext) const;
159         /** Returns true if the file referenced by \p filename is zipped and
160          ** needs to be unzipped for being handled
161          ** @note For natively zipped formats, such as dia/odg, this returns false.
162          **/
163         bool isZippedFile(support::FileName const & filename) const;
164         /// check for zipped file format
165         static bool isZippedFileFormat(std::string const & format);
166         /// check for PostScript file format
167         static bool isPostScriptFileFormat(std::string const & format);
168         /// Set editor and/or viewer to "auto" for formats that can be
169         /// opened by the OS.
170         void setAutoOpen();
171         ///
172         int getNumber(std::string const & name) const;
173         ///
174         void add(std::string const & name);
175         ///
176         void add(std::string const & name, std::string const & extensions,
177                  std::string const & prettyname, std::string const & shortcut,
178                  std::string const & viewer, std::string const & editor,
179                  std::string const & mime, int flags);
180         ///
181         void erase(std::string const & name);
182         ///
183         void sort();
184         ///
185         void setViewer(std::string const & name, std::string const & command);
186         ///
187         void setEditor(std::string const & name, std::string const & command);
188         /// View the given file. Buffer used for DVI's paper orientation.
189         bool view(Buffer const & buffer, support::FileName const & filename,
190                   std::string const & format_name) const;
191         ///
192         bool edit(Buffer const & buffer, support::FileName const & filename,
193                   std::string const & format_name) const;
194         ///
195         docstring const prettyName(std::string const & name) const;
196         ///
197         std::string const extension(std::string const & name) const;
198         ///
199         std::string const extensions(std::string const & name) const;
200         ///
201         const_iterator begin() const { return formatlist.begin(); }
202         ///
203         const_iterator end() const { return formatlist.end(); }
204         ///
205         bool empty() const { return formatlist.empty(); }
206         ///
207         FormatList::size_type size() const { return formatlist.size(); }
208 private:
209         ///
210         FormatList formatlist;
211 };
212
213 ///
214 std::string flavor2format(OutputParams::FLAVOR flavor);
215 // Not currently used.
216 // OutputParams::FLAVOR format2flavor(std::string fmt);
217
218 extern Formats formats;
219
220 extern Formats system_formats;
221
222
223 } // namespace lyx
224
225 #endif //FORMAT_H