]> git.lyx.org Git - lyx.git/blob - src/LyX.h
25529e55d57fce8879a8bca7e09d8b49cbb97b62
[lyx.git] / src / LyX.h
1 // -*- C++ -*-
2 /**
3  * \file LyX.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author John Levon
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef LYX_H
15 #define LYX_H
16
17 #include "support/strfwd.h"
18
19 namespace lyx {
20
21 namespace support {
22 class FileName;
23 }
24
25 class Buffer;
26 class BufferList;
27 class Converters;
28 class ErrorItem;
29 class Inset;
30 class LyXFunc;
31 class Server;
32 class ServerSocket;
33 class Messages;
34 class Mover;
35 class Movers;
36 class Session;
37 class KeyMap;
38 class CmdDef;
39
40 extern bool use_gui;
41
42 namespace frontend {
43 class Application;
44 class LyXView;
45 }
46
47 /// initial startup
48 class LyX {
49 public:
50
51         LyX();
52         ~LyX();
53
54         /// Execute LyX.
55         int exec(int & argc, char * argv[]);
56
57         static LyX & ref();
58         static LyX const & cref();
59
60         /// in the case of failure
61         void emergencyCleanup() const;
62
63         ///
64         BufferList & bufferList();
65         BufferList const & bufferList() const;
66         ///
67         Session & session();
68         Session const & session() const;
69         ///
70         LyXFunc & lyxFunc();
71         LyXFunc const & lyxFunc() const;
72         ///
73         Server & server();
74         Server const & server() const;
75         ///
76         ServerSocket & socket();
77         ServerSocket const & socket() const;
78
79         ///
80         frontend::Application & application();
81         frontend::Application const & application() const;
82
83         ///
84         KeyMap & topLevelKeymap();
85         KeyMap const & topLevelKeymap() const;
86
87         ///
88         CmdDef & topLevelCmdDef();
89
90         ///
91         Converters & converters();
92         Converters & systemConverters();
93
94         ///
95         Messages & getMessages(std::string const & language);
96         ///
97         Messages & getGuiMessages();
98         ///
99         void setGuiLanguage(std::string const & language);
100
101         ///
102         frontend::LyXView * newLyXView();
103
104         /// Execute batch commands if available.
105         void execBatchCommands();
106
107         ///
108         void addFileToLoad(support::FileName const &);
109
110 private:
111         /// noncopyable
112         LyX(LyX const &);
113         void operator=(LyX const &);
114
115         /// Do some cleanup in preparation of an exit.
116         void prepareExit();
117
118         /// Early exit during the initialisation process.
119         void earlyExit(int status);
120
121         /// Initialise LyX and fills-in the vector of files to be loaded.
122         /**
123         \return exit code failure if any.
124         */
125         int init(int & argc, char * argv[]);
126
127         /// Load files passed at command-line.
128         /**
129         This method is used only in non-GUI mode.
130         */
131         void loadFiles();
132
133         /// Create a View, load files and restore GUI Session.
134         void restoreGuiSession();
135
136         /// Initialize RC font for the GUI.
137         void initGuiFont();
138
139         /// initial LyX set up
140         bool init();
141         /// set up the default dead key bindings if requested
142         void deadKeyBindings(KeyMap * kbmap);
143         /** Check for the existence of the user's support directory and,
144          *  if not present, create it. Exits the program if the directory
145          *  cannot be created.
146          *  \returns true if the user-side configuration script
147          *  (lib/configure) should be re-run in this directory.
148          */
149         bool queryUserLyXDir(bool explicit_userdir);
150         /// read lyxrc/preferences
151         bool readRcFile(std::string const & name);
152         /// read the given ui (menu/toolbar) file
153         bool readUIFile(std::string const & name, bool include = false);
154         /// read the given languages file
155         bool readLanguagesFile(std::string const & name);
156         /// read the encodings.
157         /// \param enc_name encodings definition file
158         /// \param symbols_name unicode->LaTeX mapping file
159         bool readEncodingsFile(std::string const & enc_name,
160                                std::string const & symbols_name);
161         /// parsing of non-gui LyX options.
162         void easyParse(int & argc, char * argv[]);
163         /// shows up a parsing error on screen
164         void printError(ErrorItem const &);
165
166         /// Use the Pimpl idiom to hide the internals.
167         // Mostly used for singletons.
168         struct Impl;
169         Impl * pimpl_;
170
171         /// has this user started lyx for the first time?
172         bool first_start;
173
174         friend Movers & theMovers();
175         friend Mover const & getMover(std::string  const & fmt);
176         friend void setMover(std::string const & fmt, std::string const & command);
177         friend Movers & theSystemMovers();
178         friend frontend::Application * theApp();
179 };
180
181 } // namespace lyx
182
183 #endif // LYX_H