]> git.lyx.org Git - lyx.git/blobdiff - src/LyX.h
Make the fake sequence for braces highly unlikely (addressing #6478).
[lyx.git] / src / LyX.h
index a57ae481df8c960b5d94ba73f017763656afafc0..8c1fe648a22a8412b5b0352589ca07bb676c008a 100644 (file)
--- a/src/LyX.h
+++ b/src/LyX.h
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  * \author Jean-Marc Lasgouttes
  * \author John Levon
  *
@@ -21,6 +21,7 @@ namespace lyx {
 class BufferList;
 class CmdDef;
 class Converters;
+class DispatchResult;
 class ErrorItem;
 class FuncRequest;
 class FuncStatus;
@@ -32,6 +33,7 @@ class Movers;
 class Server;
 class ServerSocket;
 class Session;
+class SpellChecker;
 
 extern bool use_gui;
 
@@ -120,6 +122,7 @@ private:
 
        friend FuncStatus getStatus(FuncRequest const & action);
        friend void dispatch(FuncRequest const & action);
+       friend void dispatch(FuncRequest const & action, DispatchResult & dr);
        friend BufferList & theBufferList();
        friend LyXFunc & theLyXFunc();
        friend Server & theServer();
@@ -137,18 +140,27 @@ private:
        friend graphics::Previews & thePreviews();
        friend Session & theSession();
        friend CmdDef & theTopLevelCmdDef();
-       /// Set the language defined by the user.
+       friend SpellChecker * theSpellChecker();
+       friend void setSpellChecker();
        friend void setRcGuiLanguage();
-       /// in the case of failure
        friend void emergencyCleanup();
-       /// Execute batch commands if available.
        friend void execBatchCommands();
-       /// Try to exit LyX properly.
-       /// \p exit_code is 0 by default, if a non zero value is passed,
-       /// emergencyCleanup() will be called before exiting.
-       friend void lyx_exit(int exit_code = 0);
+       friend void lyx_exit(int exit_code);
 };
 
+
+/// in the case of failure
+void emergencyCleanup();
+/// Try to exit LyX properly.
+/// \p exit_code is 0 by default, if a non zero value is passed,
+/// emergencyCleanup() will be called before exiting.
+void lyx_exit(int exit_code);
+/// Set the language defined by the user.
+void setRcGuiLanguage();
+/// Execute batch commands if available.
+void execBatchCommands();
+
 } // namespace lyx
 
 #endif // LYX_H
+