2002-06-18 15:44:30 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-08-15 17:48:53 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file guiapi.h
|
2002-09-05 15:14:23 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-08-15 17:48:53 +00:00
|
|
|
|
*
|
2002-12-01 22:59:25 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2002-09-05 14:10:50 +00:00
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS
|
2002-08-15 17:48:53 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef GUIAPI_H
|
|
|
|
|
#define GUIAPI_H
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
|
|
|
|
|
|
#include "LString.h"
|
|
|
|
|
|
|
|
|
|
class Dialogs;
|
|
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
|
void gui_show_dialog(Dialogs *, char const * name, char const * data);
|
|
|
|
|
|
2003-02-25 13:20:34 +00:00
|
|
|
|
void gui_ShowDocument(Dialogs &);
|
|
|
|
|
void gui_ShowFile(string const &, Dialogs &);
|
|
|
|
|
void gui_ShowForks(Dialogs &);
|
|
|
|
|
void gui_ShowLogFile(Dialogs &);
|
|
|
|
|
void gui_ShowMathPanel(Dialogs &);
|
|
|
|
|
void gui_ShowParagraph(Dialogs &);
|
|
|
|
|
void gui_UpdateParagraph(Dialogs &);
|
|
|
|
|
void gui_ShowPreamble(Dialogs &);
|
|
|
|
|
void gui_ShowPreferences(Dialogs &);
|
|
|
|
|
void gui_ShowPrint(Dialogs &);
|
|
|
|
|
void gui_ShowSearch(Dialogs &);
|
|
|
|
|
void gui_ShowSendto(Dialogs &);
|
|
|
|
|
void gui_ShowSpellchecker(Dialogs &);
|
|
|
|
|
void gui_ShowTexinfo(Dialogs &);
|
|
|
|
|
void gui_ShowThesaurus(string const &, Dialogs &);
|
|
|
|
|
void gui_ShowVCLogFile(Dialogs &);
|
2002-06-18 15:44:30 +00:00
|
|
|
|
|
|
|
|
|
} // extern "C"
|
2002-08-15 17:48:53 +00:00
|
|
|
|
|
|
|
|
|
#endif // GUIAPI_H
|