]> git.lyx.org Git - lyx.git/blob - src/support/Messages.h
Account for old versions of Pygments
[lyx.git] / src / support / Messages.h
1 // -*- C++ -*-
2 /* \file Messages.h
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #ifndef MESSAGES_H
12 #define MESSAGES_H
13
14 #include "support/docstring.h"
15
16 #include <map>
17 #include <string>
18
19 namespace lyx {
20
21 ///
22 class Messages {
23 public:
24         /// dummy instantiation: no translation is done
25         Messages() {}
26         /// messages in the language \p l.
27         Messages(std::string const & l);
28         ///
29         docstring const get(std::string const & msg) const;
30         /// What is the language associated with this translation?
31         std::string language() const;
32         /// Is an (at least partial) translation of language with code \p c available?
33         static bool available(std::string const & c);
34         ///
35         static void guiLanguage(std::string const & l) { gui_lang_ = l; }
36         ///
37         static std::string const & guiLanguage() { return gui_lang_; }
38
39 private:
40         /// Read the strings from the .mo file. Returns true on success.
41         bool readMoFile();
42         ///
43         std::string lang_;
44         ///
45         typedef std::map<std::string, docstring> TranslationMap;
46         TranslationMap trans_map_;
47         /// The language used by the Gui
48         static std::string gui_lang_;
49 };
50
51 /// Access to the unique Messages object for the passed \p language.
52 /// Implementation is in LyX.cpp.
53 extern Messages const & getMessages(std::string const & language);
54 /// Access to the unique Messages object used for GUI element.
55 /// Implementation is in LyX.cpp.
56 extern Messages const & getGuiMessages();
57
58 /// Remove the context suffix from \p trans
59 extern void cleanTranslation(docstring & trans);
60
61 } // namespace lyx
62
63 #endif