]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/guiapi.h
include sys/time.h
[lyx.git] / src / frontends / guiapi.h
index 692d0da83658cdb108a479ac78ccc25871499386..a42ff8cfe05543e2dc19d7da2b810ae9cf753ad1 100644 (file)
@@ -1,65 +1,79 @@
 // -*- C++ -*-
+/**
+ * \file guiapi.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
+
+#ifndef GUIAPI_H
+#define GUIAPI_H
+
 
 #include "LString.h"
 
-class LyXView;
 class Dialogs;
 class InsetCommand;
 class InsetError;
 class InsetERT;
 class InsetExternal;
 class InsetFloat;
+class InsetWrap;
 class InsetGraphics;
 class InsetInclude;
-class InsetInfo;
 class InsetMinipage;
 class InsetTabular;
 
 extern "C" {
 
-       void gui_ShowAboutlyx(LyXView &, Dialogs &);
-       void gui_ShowBibitem(InsetCommand * ic, LyXView & lv, Dialogs & d);
-       void gui_ShowBibtex(InsetCommand * ic, LyXView & lv, Dialogs & d);
-       void gui_ShowCharacter(LyXView & lv, Dialogs & d);
-       void gui_SetUserFreeFont(LyXView & lv, Dialogs & d);
-       void gui_ShowCitation(InsetCommand * ic, LyXView & lv, Dialogs & d);
-       void gui_CreateCitation(string const &, LyXView & lv, Dialogs & d);
-       void gui_ShowDocument(LyXView & lv, Dialogs & d);
-       void gui_ShowError(InsetError * ie, LyXView & lv, Dialogs & d);
-       void gui_ShowERT(InsetERT * ie, LyXView & lv, Dialogs & d);
-       void gui_UpdateERT(InsetERT * ie, LyXView & lv, Dialogs & d);
-       void gui_ShowExternal(InsetExternal * ie, LyXView & lv, Dialogs & d);
-       void gui_ShowFile(string const & f, LyXView & lv, Dialogs & d);
-       void gui_ShowFloat(InsetFloat *, LyXView & lv, Dialogs &);
-       void gui_ShowForks(LyXView & lv, Dialogs & d);
-       void gui_ShowGraphics(InsetGraphics *, LyXView & lv, Dialogs & d);
-       void gui_ShowInclude(InsetInclude *, LyXView & lv, Dialogs & d);
-       void gui_ShowIndex(InsetCommand *, LyXView & lv, Dialogs & d);
-       void gui_CreateIndex(LyXView & lv, Dialogs & d);
-       void gui_ShowInfo(InsetInfo *, LyXView & lv, Dialogs & d);
-       void gui_ShowLogFile(LyXView & lv, Dialogs & d);
-       void gui_ShowMathPanel(LyXView & lv, Dialogs & d);
-       void gui_ShowMinipage(InsetMinipage *, LyXView & lv, Dialogs & d);
-       void gui_UpdateMinipage(InsetMinipage *, LyXView & lv, Dialogs & d);
-       void gui_ShowParagraph(LyXView & lv, Dialogs & d);
-       void gui_UpdateParagraph(LyXView & lv, Dialogs & d);
-       void gui_ShowPreamble(LyXView & lv, Dialogs & d);
-       void gui_ShowPreferences(LyXView & lv, Dialogs & d);
-       void gui_ShowPrint(LyXView & lv, Dialogs & d);
-       void gui_ShowRef(InsetCommand *, LyXView &, Dialogs &);
-       void gui_CreateRef(string const &, LyXView &, Dialogs &);
-       void gui_ShowSearch(LyXView & lv, Dialogs & d);
-       void gui_ShowSendto(LyXView & lv, Dialogs & d);
-       void gui_ShowSpellchecker(LyXView & lv, Dialogs & d);
-       void gui_ShowTabular(InsetTabular *, LyXView &, Dialogs &);
-       void gui_UpdateTabular(InsetTabular *, LyXView &, Dialogs &);
-       void gui_ShowTabularCreate(LyXView & lv, Dialogs & d);
-       void gui_ShowTexinfo(LyXView & lv, Dialogs & d);
-       void gui_ShowThesaurus(string const &, LyXView &, Dialogs &);
-       void gui_ShowTOC(InsetCommand *, LyXView &, Dialogs &);
-       void gui_CreateTOC(string const &, LyXView &, Dialogs &);
-       void gui_ShowUrl(InsetCommand *, LyXView &, Dialogs &);
-       void gui_CreateUrl(string const &, LyXView &, Dialogs &);
-       void gui_ShowVCLogFile(LyXView & lv, Dialogs & d);
+       void gui_ShowAboutlyx(Dialogs &);
+       void gui_ShowBibitem(InsetCommand *, Dialogs &);
+       void gui_ShowBibtex(InsetCommand *, Dialogs &);
+       void gui_ShowCharacter(Dialogs &);
+       void gui_SetUserFreeFont(Dialogs &);
+       void gui_ShowCitation(InsetCommand *, Dialogs &);
+       void gui_CreateCitation(string const &, Dialogs &);
+       void gui_ShowDocument(Dialogs &);
+       void gui_ShowError(InsetError *, Dialogs &);
+       void gui_ShowERT(InsetERT *, Dialogs &);
+       void gui_UpdateERT(InsetERT *, Dialogs &);
+       void gui_ShowExternal(InsetExternal *, Dialogs &);
+       void gui_ShowFile(string const &, Dialogs &);
+       void gui_ShowFloat(InsetFloat *, Dialogs &);
+       void gui_ShowWrap(InsetWrap *, Dialogs &);
+       void gui_ShowForks(Dialogs &);
+       void gui_ShowGraphics(InsetGraphics *, Dialogs &);
+       void gui_ShowInclude(InsetInclude *, Dialogs &);
+       void gui_ShowIndex(InsetCommand *, Dialogs &);
+       void gui_CreateIndex(Dialogs &);
+       void gui_ShowLogFile(Dialogs &);
+       void gui_ShowMathPanel(Dialogs &);
+       void gui_ShowMinipage(InsetMinipage *, Dialogs &);
+       void gui_UpdateMinipage(InsetMinipage *, Dialogs &);
+       void gui_ShowParagraph(Dialogs &);
+       void gui_UpdateParagraph(Dialogs &);
+       void gui_ShowPreamble(Dialogs &);
+       void gui_ShowPreferences(Dialogs &);
+       void gui_ShowPrint(Dialogs &);
+       void gui_ShowRef(InsetCommand *, Dialogs &);
+       void gui_CreateRef(string const &, Dialogs &);
+       void gui_ShowSearch(Dialogs &);
+       void gui_ShowSendto(Dialogs &);
+       void gui_ShowSpellchecker(Dialogs &);
+       void gui_ShowTabular(InsetTabular *, Dialogs &);
+       void gui_UpdateTabular(InsetTabular *, Dialogs &);
+       void gui_ShowTabularCreate(Dialogs &);
+       void gui_ShowTexinfo(Dialogs &);
+       void gui_ShowThesaurus(string const &, Dialogs &);
+       void gui_ShowTOC(InsetCommand *, Dialogs &);
+       void gui_CreateTOC(string const &, Dialogs &);
+       void gui_ShowUrl(InsetCommand *, Dialogs &);
+       void gui_CreateUrl(string const &, Dialogs &);
+       void gui_ShowVCLogFile(Dialogs &);
 
 } // extern "C"
+
+#endif // GUIAPI_H