X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fguiapi.h;h=0855154262f4d364354e996f7f8cc60485c935b3;hb=558e849e692cc72ea74ac3859405b85e54c6e315;hp=e7abe929500b5cda6140772eb4659aedb7a67833;hpb=f1c24d100985c6df2eb5ec390017b69c78fe49c7;p=lyx.git diff --git a/src/frontends/guiapi.h b/src/frontends/guiapi.h index e7abe92950..0855154262 100644 --- a/src/frontends/guiapi.h +++ b/src/frontends/guiapi.h @@ -1,66 +1,23 @@ // -*- 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. + */ -#include "LString.h" +#ifndef GUIAPI_H +#define GUIAPI_H -class LyXView; class Dialogs; -class InsetCommand; -class InsetError; -class InsetERT; -class InsetExternal; -class InsetFloat; -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(string const &, 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_ShowSpellcheckerPreferences(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_show_dialog(Dialogs *, char const * name, char const * data); } // extern "C" + +#endif // GUIAPI_H